       :root {
            --bg-black: #000000;
            --text-white: #ffffff;
            --border-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-black);
            color: #facee2;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }

        /* Navigation - Minimal & Wide */
        nav {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 20px 4%;
            border-bottom: 1px solid var(--border-gray);
            position: fixed;
            top: 0;
            background: rgba(0,0,0,0.8);
            z-index: 100;
            backdrop-filter: blur(5px);
        }

        .logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.2rem;
            letter-spacing: -1px;
            
        }

        .nav-links a {
            color: #facee2;
            text-decoration: none;
            font-size: 0.7rem;
            margin-left: 30px;
            letter-spacing: 2px;
            font-weight: 900;
        }

        /* Hero - Heavy Typography */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 4%;
            border-bottom: 1px solid var(--border-gray);
            
        }

        /* Logic to disable animation on Safari */
        body.is-safari .hero {
            animation: none !important;
        }

        body.is-safari .hero h1 {
            text-shadow: none !important;
        }

        .hero h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(4rem, 15vw, 12rem);
            line-height: 0.85;
            letter-spacing: -4px;
            margin-bottom: 20px;
        }

        

        .hero-sub {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .tagline {
            font-size: 0.9rem;
            max-width: 400px;
            line-height: 1.4;
            letter-spacing: 1px;
        }

        /* Updated Button - Pink Ombre Gradient */
        .cta-btn {
            background: linear-gradient(90deg, #facee2 0%, #f3a6c9 50%, #e41e81 100%);
            background-size: 200% auto; 
            color: black;
            padding: 20px 40px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1rem;
            transition: 0.5s ease;
            border: none;
            display: inline-block;
        }

        .cta-btn:hover {
            background-position: right center; 
            color: white;
            box-shadow: 0 0 20px rgba(228, 30, 129, 0.4);
            transform: scale(1.02);
        }

        

        /* Original Ticker Style */
        .ticker {
            width: 100%;
            background: white;
            color: black;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            position: fixed;
            bottom: 0;
            z-index: 101;
        }

        .ticker-wrap {
            display: inline-block;
            animation: ticker 30s linear infinite;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Mobile specific adjustments */
        @media (max-width: 768px) {
            .hero h1 { font-size: 5rem; letter-spacing: -2px; }
            .hero-sub { flex-direction: column; align-items: flex-start; gap: 20px; }
        }
        .copyright-footer {
            display: flex;
            justify-content: space-between;
            padding: 20px 4% 80px 4%; 
            font-size: 0.6rem;
            letter-spacing: 2px;
            color: var(--border-gray);
            border-top: 1px solid var(--border-gray);
            background-color: var(--bg-black);
        }

        @media (max-width: 768px) {
            .copyright-footer {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        /* Navbar Gradient Hover Effect */
        .nav-links a {
            color: #facee2;
            text-decoration: none;
            font-size: 0.7rem;
            margin-left: 30px;
            letter-spacing: 2px;
            font-weight: 900;
            transition: all 0.4s ease; 
            display: inline-block;
        }

        .nav-links a:hover {
            background: linear-gradient(90deg, #facee2 0%, #f3a6c9 50%, #e41e81 100%);
            transform: translateY(-1px);
            background-clip: text; 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent;
            color: transparent; 
            display: inline-block; 
            text-shadow: none; 
        }

/* Mobile Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #facee2;
    transition: 0.3s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Overlay Styles */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-overlay.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.mobile-nav-links a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: #facee2;
    text-decoration: none;
    letter-spacing: -2px;
}

/* Gradient Effect on Hover */
.mobile-nav-links a:hover {
    background: linear-gradient(90deg, #facee2 0%, #f3a6c9 50%, #e41e81 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation to 'X' */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background: #e41e81; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); background: #e41e81; }

/* Show toggle on mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
}
 
.menu-toggle {
    position: relative;
    z-index: 2000; 
}

.menu-toggle.active span:nth-child(1) { 
    transform: rotate(45deg) translate(5px, 6px); 
    background: #e41e81; 
}

.menu-toggle.active span:nth-child(2) { 
    opacity: 0; 
}

.menu-toggle.active span:nth-child(3) { 
    transform: rotate(-45deg) translate(5px, -7px); 
    background: #e41e81; 
}
.close-menu {
    position: absolute;
    top: 25px;
    right: 4%;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #facee2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #e41e81;
    transform: scale(1.1);
}


.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}
      /* ---  FOUNDER SECTION --- */
.founder-section {
    padding: 120px 4%;
    background: #000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.magazine-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes more weight */
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
}


.magazine-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* Classic magazine ratio */
    background: #111;
    border: 1px solid var(--border-gray);
    overflow: visible; /* To allow leaks to float outside */
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.magazine-cover:hover {
    transform: scale(1.02);
}

.cover-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}



  .masthead {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bodoni Moda', serif;
    font-weight: 900; 
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: #008080;
    z-index: 2;
    text-align: center;
    line-height: 0.8;
    letter-spacing: -0.05em; 
    pointer-events: none;
    width: 100%;
    text-transform: none;

}

.cover-date {
    position: absolute;
        
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: #facee2;
    z-index: 3; 
  
    padding: 2px 5px;
    top: auto;
    bottom: 20px;     
    right: 15px;
    background: transparent;
    border-right: 2px solid #e41e81;
    padding-right: 8px;

}

/* Mobile Specific Fix for the Clashing */
@media (max-width: 600px) {
    .cover-date {
        top: auto;
        bottom: 20px; /* Move it to the bottom on small screens */
        right: 15px;
        background: transparent;
        border-right: 2px solid #e41e81;
        padding-right: 8px;
    }

    .masthead {
        top: 5%; 
        font-size: clamp(2rem, 1vw, 2rem);
    }

    /* Adjust leaks so they don't fly off-screen on narrow phones */
    .l1 { right: 5px; top: 40%; }
    .l2 { left: 5px; bottom: 20%; }
}
/* LEAKS ??*/
.leak {
    position: absolute;
    font-family: monospace;
    font-size: 0.75rem;
    color: #e41e81;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    pointer-events: none;
}

.magazine-cover:hover .leak { opacity: 1; }
.l1 { top: 20%; right: -30px; transform: rotate(5deg); }
.l2 { bottom: 30%; left: -40px; transform: rotate(-90deg); }
.l3 { bottom: -20px; right: 20px; }

/* TEXT CONTENT */
.editorial-header {
    border-left: none;
    padding-left: 30px;
}

.editorial-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.9;
    margin-bottom: 30px;
    color: #facee2;
}

.manifesto-snippet {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-transform: none;
    color: #ffffff;
    max-width: 450px;
}

.signature {
    font-family: 'Reenie Beanie', cursive;
    font-size: 2.5rem;
    color: #facee2;
    text-transform: none;
}
.founder-stats {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #e41e81;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .magazine-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .magazine-cover {
        max-width: 500px;
        margin: 0 auto;
    }
    .editorial-header {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    .manifesto-snippet {
        margin: 0 auto 30px auto;
    }
}
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    opacity: 0.4; 
    pointer-events: none;
}
.hero h1, .hero-sub, .hero p {
    position: relative;
    z-index: 2; 
}
