/* ===== CSS Variables ===== */
/* Color palette: Banana (yellow, cream) + Mars Bar (deep red, gold, caramel brown, dark chocolate) */
:root {
    --primary: #C8102E;          /* Mars bar red */
    --primary-dark: #9B0A1E;     /* Darker Mars red */
    --secondary: #FFD700;        /* Banana / Mars gold */
    --accent: #D4A843;           /* Caramel gold */
    --banana-light: #FFF9C4;     /* Light banana cream */
    --banana: #FFE135;           /* Bright banana yellow */
    --mars-brown: #3D1C02;       /* Dark chocolate brown */
    --dark: #1A0A00;             /* Near-black chocolate */
    --dark-light: #2D1506;       /* Lighter dark brown */
    --gray: #8B7355;             /* Warm gray-brown */
    --gray-light: #BFA882;       /* Light warm gray */
    --light: #FFF8E7;            /* Warm cream */
    --white: #FFFDF5;            /* Off-white warm */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-warm: linear-gradient(135deg, #FFE135 0%, #C8102E 100%);
    --shadow: 0 4px 6px -1px rgba(26, 10, 0, 0.15), 0 2px 4px -1px rgba(26, 10, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(26, 10, 0, 0.15), 0 4px 6px -2px rgba(26, 10, 0, 0.1);
    --radius: 0px;
    --transition: all 0.3s ease;
    --bevel-light: rgba(255, 249, 196, 0.4);
    --bevel-dark: rgba(26, 10, 0, 0.6);
    --win95-border: inset -2px -2px 0 var(--bevel-dark), inset 2px 2px 0 var(--bevel-light);
    --win95-border-inset: inset 2px 2px 0 var(--bevel-dark), inset -2px -2px 0 var(--bevel-light);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    text-transform: lowercase;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><rect width="12" height="12" fill="%23FFD700" stroke="%231A0A00" stroke-width="2"/></svg>') 0 0, auto;
    image-rendering: pixelated;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

}

/* ===== Global Chaos Shapes Layer ===== */
.global-chaos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.chaos-shape {
    position: absolute;
    mix-blend-mode: screen;
    will-change: transform, border-radius, opacity, top, left;
    contain: layout style;
}

.cs-1 {
    width: 300px; height: 300px;
    background: var(--gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%; left: 5%;
    animation: morph1 2s ease-in-out infinite, pulse1 1.5s ease-in-out infinite;
    opacity: 0.5;
    filter: blur(2px);
}
.cs-2 {
    width: 220px; height: 220px;
    background: var(--gradient-gold);
    border-radius: 70% 30% 30% 70%;
    top: 30%; right: 8%;
    animation: morph2 1.7s ease-in-out infinite, spin1 6s linear infinite;
    opacity: 0.4;
    filter: blur(3px);
}
.cs-3 {
    width: 160px; height: 160px;
    background: linear-gradient(135deg, #FFE135 0%, #FF6B35 50%, #C8102E 100%);
    border-radius: 50%;
    top: 55%; left: 15%;
    animation: morph3 1.3s ease-in-out infinite, orbit1 4s linear infinite;
    opacity: 0.45;
    filter: blur(4px);
}
.cs-4 {
    width: 100px; height: 100px;
    background: conic-gradient(#C8102E, #FFD700, #FF6B35, #FFE135, #C8102E);
    border-radius: 50% 20% 50% 20%;
    top: 70%; right: 20%;
    animation: morph4 1s ease-in-out infinite, orbit2 3s linear infinite reverse;
    opacity: 0.55;
    filter: blur(1px);
}
.cs-5 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.6) 0%, rgba(200,16,46,0.3) 50%, transparent 70%);
    border-radius: 50%;
    top: 80%; left: 60%;
    animation: pulse3 1.4s ease-in-out infinite, orbit2 8s linear infinite;
    opacity: 0.3;
}
.cs-6 {
    width: 80px; height: 80px;
    background: linear-gradient(270deg, #FFD700, #FF1744, #FF6D00);
    border-radius: 50%;
    top: 20%; left: 50%;
    animation: morph2 0.9s ease-in-out infinite, orbit1 2.5s linear infinite reverse, hueShift1 1.5s linear infinite;
    opacity: 0.65;
}
.cs-7 {
    width: 180px; height: 180px;
    background: var(--gradient-warm);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 45%; right: 40%;
    animation: morph1 1.1s ease-in-out infinite reverse, pulse2 0.8s ease-in-out infinite;
    opacity: 0.35;
    filter: blur(5px);
}
.cs-8 {
    width: 50px; height: 50px;
    background: #FFE135;
    border-radius: 50%;
    top: 90%; left: 30%;
    animation: morph4 0.7s ease-in-out infinite, orbit1 1.8s linear infinite, hueShift2 1s linear infinite;
    opacity: 0.7;
    box-shadow: 0 0 30px #FFD700, 0 0 60px #C8102E;
}
.cs-9 {
    width: 200px; height: 200px;
    background: linear-gradient(45deg, #C8102E, #FFD700);
    border-radius: 40% 60% 70% 30%;
    top: 5%; right: 30%;
    animation: morph3 1.5s ease-in-out infinite, spin1 4s linear infinite reverse;
    opacity: 0.4;
    filter: blur(3px);
}
.cs-10 {
    width: 130px; height: 130px;
    background: radial-gradient(#FF6B35, #FFD700, transparent);
    border-radius: 50%;
    top: 65%; left: 80%;
    animation: pulse1 1.2s ease-in-out infinite, orbit2 5s linear infinite;
    opacity: 0.5;
    filter: blur(2px);
}
.cs-11 {
    width: 170px; height: 170px;
    background: conic-gradient(from 90deg, #FFD700, #C8102E, #FF6D00, #FFE135, #FFD700);
    border-radius: 50%;
    top: 40%; left: 70%;
    animation: morph2 1.4s ease-in-out infinite, hueShift1 2s linear infinite, orbit1 6s linear infinite;
    opacity: 0.3;
    filter: blur(4px);
}
.cs-12 {
    width: 90px; height: 90px;
    background: linear-gradient(180deg, #FF1744, #FFAB00);
    border-radius: 20% 80% 60% 40%;
    top: 15%; left: 85%;
    animation: morph1 0.8s ease-in-out infinite, pulse3 1s ease-in-out infinite;
    opacity: 0.6;
}

.global-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Press Start 2P', 'VT323', monospace;
    font-weight: 700;
    line-height: 1.4;
}

.gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'VT323', monospace;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    box-shadow: var(--win95-border);
    text-transform: lowercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--banana-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--win95-border-inset);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: var(--win95-border);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: var(--win95-border-inset);
}

.btn-full {
    width: 100%;
}

/* ===== Z-index: content above global chaos ===== */
section, .header, .footer, main {
    position: relative;
    z-index: 1;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    backdrop-filter: none;
    box-shadow: var(--win95-border);
    border-bottom: 2px solid var(--secondary);
}

.navbar {
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--banana-light);
    font-family: 'Press Start 2P', monospace;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--banana-light);
    font-weight: 700;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    border-radius: 0;
    box-shadow: var(--win95-border);
}

.logo-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
}

.win95-clock {
    font-family: 'VT323', monospace;
    color: var(--secondary);
    font-size: 18px;
    padding: 4px 12px;
    box-shadow: var(--win95-border-inset);
    background: var(--dark-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
    text-transform: lowercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'VT323', monospace;
    padding: 4px 8px;
    box-shadow: var(--win95-border);
    background: var(--dark-light);
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark);
    background: var(--secondary);
    box-shadow: var(--win95-border-inset);
}

.nav-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 0;
    transition: var(--transition);
}

/* ===== Win95 Window Chrome ===== */
.win95-window {
    background: var(--dark-light);
    box-shadow: var(--win95-border);
    border: 2px solid var(--gray);
}

.win95-titlebar {
    background: var(--gradient);
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--bevel-dark);
}

.win95-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: var(--banana-light);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.win95-controls {
    display: flex;
    gap: 2px;
}

.win95-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--dark-light);
    color: var(--banana-light);
    font-size: 12px;
    font-family: 'VT323', monospace;
    box-shadow: var(--win95-border);
    cursor: pointer;
    line-height: 1;
}

.win95-body {
    padding: 16px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(160deg, var(--dark) 0%, var(--mars-brown) 40%, #5C2D0E 70%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 225, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-family: 'VT323', monospace;
    text-transform: lowercase;
    letter-spacing: 4px;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--banana-light);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero-shape,
.hero-shape-2,
.hero-shape-3,
.hero-shape-4,
.hero-shape-5,
.hero-shape-6,
.hero-shape-7,
.hero-shape-8 {
    position: absolute;
    mix-blend-mode: screen;
    will-change: transform, border-radius, opacity;
    contain: layout style;
}

.hero-shape {
    width: 350px;
    height: 350px;
    background: var(--gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph1 2s ease-in-out infinite, pulse1 1.5s ease-in-out infinite, hueShift1 3s linear infinite;
    opacity: 0.75;
    filter: blur(1px);
}

.hero-shape-2 {
    width: 280px;
    height: 280px;
    background: var(--gradient-gold);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morph2 1.7s ease-in-out infinite, pulse2 1.2s ease-in-out infinite, spin1 6s linear infinite;
    opacity: 0.55;
    filter: blur(2px);
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #FFE135 0%, #FF6B35 50%, #C8102E 100%);
    border-radius: 50%;
    animation: morph3 1.3s ease-in-out infinite, orbit1 4s linear infinite, pulse3 2s ease-in-out infinite;
    opacity: 0.5;
    filter: blur(3px);
}

.hero-shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #C8102E, #FFD700, #FF6B35);
    border-radius: 30% 70% 50% 50%;
    animation: morph4 1s ease-in-out infinite, orbit2 3s linear infinite reverse, hueShift2 2s linear infinite;
    opacity: 0.6;
    filter: blur(1px);
}

.hero-shape-5 {
    width: 200px;
    height: 200px;
    background: conic-gradient(#C8102E, #FFD700, #FF6B35, #FFE135, #C8102E);
    border-radius: 50%;
    animation: morph1 1.1s ease-in-out infinite reverse, spin1 3s linear infinite reverse, pulse1 0.8s ease-in-out infinite;
    opacity: 0.35;
    filter: blur(4px);
}

.hero-shape-6 {
    width: 90px;
    height: 90px;
    background: linear-gradient(270deg, #FFD700, #FF1744, #FF6D00);
    border-radius: 50% 20% 50% 20%;
    animation: morph2 0.9s ease-in-out infinite, orbit1 2.5s linear infinite reverse, hueShift1 1.5s linear infinite;
    opacity: 0.7;
    filter: blur(0px);
}

.hero-shape-7 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.6) 0%, rgba(200,16,46,0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse3 1.4s ease-in-out infinite, orbit2 8s linear infinite, glitch 0.3s steps(2) infinite;
    opacity: 0.3;
}

.hero-shape-8 {
    width: 60px;
    height: 60px;
    background: #FFE135;
    border-radius: 50%;
    animation: morph4 0.7s ease-in-out infinite, orbit1 1.8s linear infinite, pulse2 0.5s ease-in-out infinite, hueShift2 1s linear infinite;
    opacity: 0.8;
    filter: blur(0px);
    box-shadow: 0 0 30px #FFD700, 0 0 60px #C8102E;
}

.particle-field {
    position: absolute;
    inset: -50px;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFly linear forwards;
}

@keyframes particleFly {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    50% { opacity: 0.8; }
    100% { opacity: 0; transform: translate(var(--px), var(--py)) scale(0); }
}

@keyframes glitch {
    0% { clip-path: inset(0 0 80% 0); transform: translate(-5px, 5px); }
    25% { clip-path: inset(20% 0 60% 0); transform: translate(5px, -3px); }
    50% { clip-path: inset(60% 0 0 0); transform: translate(-3px, -5px); }
    75% { clip-path: inset(40% 0 20% 0); transform: translate(3px, 3px); }
    100% { clip-path: inset(0 0 80% 0); transform: translate(-5px, 5px); }
}

@keyframes morph1 {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    14% { border-radius: 60% 40% 20% 80% / 50% 70% 30% 50%; }
    28% { border-radius: 20% 80% 60% 40% / 80% 20% 50% 50%; }
    42% { border-radius: 70% 30% 30% 70% / 40% 60% 70% 30%; }
    57% { border-radius: 40% 60% 80% 20% / 20% 80% 40% 60%; }
    71% { border-radius: 80% 20% 40% 60% / 60% 40% 20% 80%; }
    85% { border-radius: 50% 50% 50% 50% / 30% 70% 60% 40%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes morph2 {
    0% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    16% { border-radius: 30% 70% 60% 40% / 40% 60% 80% 20%; }
    33% { border-radius: 50% 50% 20% 80% / 60% 40% 50% 50%; }
    50% { border-radius: 80% 20% 70% 30% / 20% 80% 30% 70%; }
    66% { border-radius: 20% 80% 50% 50% / 70% 30% 60% 40%; }
    83% { border-radius: 60% 40% 30% 70% / 50% 50% 40% 60%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes morph3 {
    0% { border-radius: 50%; }
    20% { border-radius: 20% 80% 50% 50% / 60% 40% 70% 30%; }
    40% { border-radius: 70% 30% 80% 20% / 30% 70% 40% 60%; }
    60% { border-radius: 40% 60% 30% 70% / 80% 20% 50% 50%; }
    80% { border-radius: 80% 20% 60% 40% / 40% 60% 20% 80%; }
    100% { border-radius: 50%; }
}

@keyframes morph4 {
    0% { border-radius: 30% 70% 50% 50%; }
    25% { border-radius: 80% 20% 20% 80% / 50% 50% 80% 20%; }
    50% { border-radius: 20% 80% 80% 20% / 80% 20% 20% 80%; }
    75% { border-radius: 50% 50% 30% 70% / 20% 80% 60% 40%; }
    100% { border-radius: 30% 70% 50% 50%; }
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(0.85); }
    70% { transform: scale(1.2); }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    75% { transform: scale(0.7); }
}

@keyframes spin1 {
    from { rotate: 0deg; }
    to { rotate: 360deg; }
}

@keyframes orbit1 {
    0% { translate: 0 0; }
    25% { translate: 80px -60px; }
    50% { translate: -40px -100px; }
    75% { translate: -90px 40px; }
    100% { translate: 0 0; }
}

@keyframes orbit2 {
    0% { translate: 0 0; }
    20% { translate: -70px 80px; }
    40% { translate: 100px 30px; }
    60% { translate: 50px -90px; }
    80% { translate: -100px -40px; }
    100% { translate: 0 0; }
}

@keyframes hueShift1 {
    0% { filter: blur(1px) hue-rotate(0deg); }
    50% { filter: blur(3px) hue-rotate(40deg); }
    100% { filter: blur(1px) hue-rotate(0deg); }
}

@keyframes hueShift2 {
    0% { filter: blur(1px) hue-rotate(0deg); }
    33% { filter: blur(2px) hue-rotate(-30deg); }
    66% { filter: blur(0px) hue-rotate(50deg); }
    100% { filter: blur(1px) hue-rotate(0deg); }
}

/* ===== Sections ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    font-style: normal;
    font-family: 'VT323', monospace;
}

/* ===== About Section ===== */
.about {
    background: rgba(255, 253, 245, 0.85);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-quote {
    background: linear-gradient(135deg, var(--dark) 0%, var(--mars-brown) 100%);
    padding: 48px;
    border-radius: 0;
    position: relative;
    box-shadow: var(--win95-border);
    border: 2px solid var(--gray);
}

.about-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 0;
}

.about-quote blockquote {
    font-family: 'VT323', monospace;
    font-size: 28px;
    font-weight: 500;
    color: var(--banana-light);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-author {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== Daily Quote & Picture Section ===== */
.daily {
    background: linear-gradient(160deg, rgba(61, 28, 2, 0.88) 0%, rgba(26, 10, 0, 0.88) 100%);
    color: var(--banana-light);
}

.daily .section-title {
    color: var(--banana-light);
}

.daily .section-subtitle {
    color: var(--accent);
}

.daily-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.daily-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--win95-border-inset);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.daily-image-placeholder:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

.daily-image-placeholder span {
    font-size: 64px;
}

.daily-image-placeholder p {
    color: var(--gray-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.daily-image-caption {
    text-align: center;
    color: var(--gray-light);
    font-style: italic;
    margin-top: 16px;
    font-size: 14px;
}

.daily-quote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 0;
    padding: 48px;
    position: relative;
    box-shadow: var(--win95-border);
}

.daily-quote-mark {
    font-family: 'VT323', monospace;
    font-size: 80px;
    line-height: 1;
    color: var(--primary);
    opacity: 0.6;
    position: absolute;
    top: 20px;
    left: 32px;
}

.daily-quote-text {
    font-family: 'VT323', monospace;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--banana-light);
    font-style: italic;
    margin-top: 24px;
    margin-bottom: 32px;
}

.daily-quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 20px;
}

.daily-quote-author {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.daily-quote-date {
    color: var(--gray-light);
    font-size: 13px;
    font-style: italic;
}

@media (max-width: 768px) {
    .daily-grid {
        grid-template-columns: 1fr;
    }

    .daily-quote-text {
        font-size: 20px;
    }

    .daily-quote-card {
        padding: 32px;
    }
}

/* ===== Music Section ===== */
.music {
    background: rgba(255, 248, 231, 0.85);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.music-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gray);
    position: relative;
    overflow: hidden;
    box-shadow: var(--win95-border);
}

.music-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.music-card:hover {
    transform: none;
    box-shadow: var(--win95-border-inset);
    border-color: var(--secondary);
}

.music-card:hover::after {
    transform: scaleX(1);
}

.music-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.music-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--mars-brown);
}

.music-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Philosophy Section ===== */
.philosophy {
    background: linear-gradient(160deg, rgba(26, 10, 0, 0.88) 0%, rgba(61, 28, 2, 0.88) 100%);
    color: var(--banana-light);
}

.philosophy .section-title {
    color: var(--banana-light);
}

.philosophy .section-subtitle {
    color: var(--accent);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: var(--win95-border);
}

.philosophy-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    box-shadow: var(--win95-border-inset);
}

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.philosophy-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.philosophy-card p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Connect Section ===== */
.connect {
    background: rgba(26, 10, 0, 0.88);
    color: var(--banana-light);
}

.connect .section-title {
    color: var(--banana-light);
}

.connect .section-subtitle {
    color: var(--gray-light);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.connect-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.connect-icon {
    font-size: 24px;
}

.connect-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--secondary);
}

.connect-item p {
    color: var(--gray-light);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-light);
    border-radius: 0;
    color: var(--banana-light);
    font-weight: 500;
    font-size: 16px;
    font-family: 'VT323', monospace;
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--win95-border);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--win95-border-inset);
    transform: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    border: none;
    border-radius: var(--radius);
    background: var(--dark-light);
    color: var(--banana-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 16px 0;
    border-top: 2px solid var(--secondary);
    box-shadow: var(--win95-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--banana-light);
}

.footer-text {
    color: var(--gray);
    font-size: 16px;
    font-style: normal;
    font-family: 'VT323', monospace;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 16px;
    font-family: 'VT323', monospace;
    padding: 2px 8px;
    box-shadow: var(--win95-border);
    background: var(--dark-light);
}

.footer-links a:hover {
    color: var(--secondary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .music-grid,
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        box-shadow: var(--win95-border);
        border: 2px solid var(--secondary);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-shape {
        width: 250px;
        height: 250px;
    }
    
    .hero-shape-2 {
        width: 180px;
        height: 180px;
    }
    
    .about-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .music-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== CRT Scanline Overlay (lightweight) ===== */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(0, 0, 0, 0.015) 4px,
        rgba(0, 0, 0, 0.015) 8px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ===== Win95 Status Bar ===== */
.footer-content {
    font-family: 'VT323', monospace;
}

/* ===== Retro scrollbar ===== */
::-webkit-scrollbar {
    width: 18px;
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border: 2px outset var(--gray-light);
}

::-webkit-scrollbar-button {
    background: var(--light);
    border: 2px outset var(--gray-light);
    height: 18px;
}

::-webkit-scrollbar-track {
    background:
        repeating-linear-gradient(
            45deg,
            var(--light),
            var(--light) 2px,
            var(--white) 2px,
            var(--white) 4px
        );
}

/* ===== Win95 selection ===== */
::selection {
    background: var(--primary);
    color: var(--banana-light);
}

/* ===== Extra retro touches ===== */
section {
    border-bottom: 2px solid var(--gray);
}

.connect-info p {
    font-family: 'VT323', monospace;
    font-size: 20px;
}
