:root {
    --black: #000000;
    --hot-pink: #FF007F;
    --bubblegum: #FFC1CC;
    
    --bg: var(--black);
    --main-text: var(--hot-pink);
    --accent: var(--bubblegum);
    --card-bg: #0a0a0a;
}

.secret-mode {
    --bg: var(--hot-pink);
    --main-text: var(--black);
    --accent: var(--bubblegum);
    --card-bg: var(--bubblegum);
}

html {
    scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--main-text);
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 9000;
    padding: 20px 0;
    transition: background 0.4s ease;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-links a {
    color: var(--main-text);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 15px;
    border: 3px solid var(--main-text);
    font-size: 0.8rem;
    transition: 0.2s;
}

.nav-links a:hover {
    background: var(--main-text);
    color: var(--bg);
}

/* SECRET TICKER */
.ticker-wrap {
    display: none;
    width: 100%;
    background: var(--main-text);
    color: var(--bg);
    padding: 12px 0;
    font-family: 'Archivo Black', sans-serif;
    position: fixed;
    top: 0;
    z-index: 10000;
}

.secret-mode .ticker-wrap { display: block; }
.secret-mode nav { top: 48px; }

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    font-size: 1rem;
}

@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* LOGO */
header {
    padding: 60px 20px;
    text-align: center;
}

.main-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.5rem, 20vw, 16rem);
    line-height: 0.8;
    margin: 40px 0;
    letter-spacing: -6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line:last-child { color: var(--accent); }

#secret-trigger { cursor: pointer; }

/* LAYOUT */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 150px;
    scroll-margin-top: 100px;
}

.section-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    border-bottom: 10px solid var(--main-text);
    margin-bottom: 40px;
    display: inline-block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border: 6px solid var(--main-text);
    padding: 35px;
    box-shadow: 15px 15px 0px var(--main-text);
    transition: 0.3s;
}

.card:hover {
    transform: translate(-8px, -8px);
    box-shadow: 25px 25px 0px var(--accent);
}

.mini-btn {
    display: inline-block;
    margin-top: 25px;
    background: var(--main-text);
    color: var(--bg);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 900;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.photo-box {
    width: 100%;
    aspect-ratio: 1;
    background: var(--accent);
    border: 6px solid var(--main-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.sticker {
    background: var(--card-bg);
    border: 6px dashed var(--main-text);
    padding: 60px;
    border-radius: 50px;
}

footer {
    text-align: center;
    padding: 100px 20px;
    font-weight: 900;
}
/* HYPERPOP DONATE BUTTON */
.hyper-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    padding: 20px 40px;
    border: 4px solid #ffffff;
    border-radius: 0px; /* Kept sharp to match your agency style */
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.1s ease-in-out;
    text-shadow: 2px 2px #000;
    cursor: pointer;
}

.hyper-btn:hover {
    transform: scale(1.05) translate(-5px, -5px);
    box-shadow: 15px 15px 0px #000;
    filter: hue-rotate(90deg);
}

.hyper-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000;
}

/* Secret Mode adaptation for the donate section */
.secret-mode #donate {
    filter: invert(1) hue-rotate(180deg);
    background: #000 !important;
}

