/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Patrick Hand', cursive;
    color: #1A1A2E;
    line-height: 1.6;
    font-size: 18px;
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(110, 84, 255, 0.14), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(152, 187, 202, 0.14), transparent 28%),
        radial-gradient(circle at 60% 80%, rgba(110, 84, 255, 0.09), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 52%, #e7eef8 100%);
    background-size: 200% 200%;
    animation: siteBackgroundMove 20s ease-in-out infinite;
}

body::before {
    content:
        "HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  "
        "HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  "
        "HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  HARVARD  OBSERVE  OUTCOME  THEORY  RESULT  COMMUNITY  ";
    position: fixed;
    inset: -20%;
    font-family: 'Patrick Hand', cursive;
    font-size: 72px;
    line-height: 1.9;
    letter-spacing: 3px;
    color: rgba(110, 84, 255, 0.03);
    white-space: normal;
    transform: rotate(-18deg) translateY(var(--parallax-y-soft, 0px));
    pointer-events: none;
    z-index: 0;
    animation: watermarkFloat 28s linear infinite;
}


body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        url("../images/academic-pattern.svg") repeat,
        radial-gradient(circle at 12% 50%, rgba(110, 84, 255, 0.10), transparent 16%),
        radial-gradient(circle at 88% 48%, rgba(152, 187, 202, 0.10), transparent 16%),
        linear-gradient(rgba(110, 84, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 84, 255, 0.018) 1px, transparent 1px);
    background-size: 560px 560px, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
    background-position: 0 0, center center, center center, 0 0, 0 0;
    opacity: 0.34;
    transform: translateY(calc(var(--parallax-y-strong, 0px) * -1));
    animation: academicPatternMove 45s linear infinite;
}


@keyframes academicPatternMove {
    0% {
        background-position: 0 0, center center, center center, center center, center center;
    }
    100% {
        background-position: 160px 120px, center center, center center, center center, center center;
    }
}


section,
footer,
.container {
    position: relative;
    z-index: 1;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background:
        linear-gradient(180deg, rgba(10, 7, 25, 0.94) 0%, rgba(16, 11, 37, 0.78) 100%),
        url("../images/hero-room-bg.png") center top / cover no-repeat;
    border-bottom: 1px solid rgba(106, 236, 255, 0.38);
    box-shadow: 0 14px 34px rgba(4, 3, 12, 0.45);
    backdrop-filter: blur(14px) saturate(135%);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.header::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 74, 231, 0), rgba(255, 74, 231, 0.9), rgba(104, 240, 255, 0.95), rgba(255, 74, 231, 0));
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(108, 241, 255, 0.34);
    background: rgba(14, 10, 34, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 2px rgba(255, 87, 220, 0.12),
        0 14px 30px rgba(5, 4, 16, 0.32);
}

.logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: none;
    border-radius: 18px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.nav-link {
    text-decoration: none;
    color: #f4f7ff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 9px 16px;
    border: 1px solid rgba(113, 240, 255, 0.25);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(25, 18, 56, 0.9) 0%, rgba(14, 10, 33, 0.78) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 24px rgba(5, 4, 16, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: 'Kalam', cursive;
}

.nav-link:hover {
    color: #ffffff;
    border-color: rgba(255, 94, 232, 0.7);
    background: linear-gradient(180deg, rgba(53, 30, 95, 0.95) 0%, rgba(20, 14, 46, 0.88) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 94, 232, 0.18),
        0 14px 26px rgba(5, 4, 16, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 90px 0;
    border-bottom: 1px solid rgba(106, 236, 255, 0.24);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 7, 25, 0.82) 0%, rgba(15, 11, 32, 0.58) 42%, rgba(17, 12, 36, 0.18) 72%, rgba(17, 12, 36, 0.08) 100%),
        url("../images/hero-room-bg.png") center top / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 22%, rgba(252, 68, 255, 0.22), transparent 18%),
        radial-gradient(circle at 60% 12%, rgba(87, 240, 255, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(7, 4, 20, 0.05) 0%, rgba(7, 4, 20, 0.26) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    gap: 40px;
    align-items: end;
}

.hero-copy {
    display: flex;
    align-items: center;
    min-height: 100%;
}

.hero-copy-card {
    max-width: 560px;
    padding: 34px 32px;
    border: 4px solid rgba(166, 124, 255, 0.95);
    border-radius: 28px;
    background: rgba(15, 11, 34, 0.68);
    box-shadow: 0 24px 60px rgba(7, 6, 21, 0.35), 8px 8px 0px rgba(166, 124, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 2px solid rgba(121, 235, 255, 0.7);
    border-radius: 999px;
    background: rgba(121, 235, 255, 0.12);
    color: #abf8ff;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Kalam', cursive;
    font-size: clamp(3.5rem, 8vw, 5.8rem);
    line-height: 0.95;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-family: 'Kalam', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6E54FF;
    margin-bottom: 20px;
    transform: rotate(1deg);
}

.hero-tagline {
    max-width: 480px;
    font-size: 1.4rem;
    line-height: 1.55;
    margin-bottom: 32px;
    color: #efe8ff;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-character-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 100%;
    padding-bottom: 8px;
}

.hero-character-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 30px;
    width: min(90%, 420px);
    height: 110px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 36, 132, 0.55) 0%, rgba(70, 36, 132, 0.14) 55%, transparent 78%);
    filter: blur(18px);
}

.hero-character {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    height: auto;
    object-fit: contain;
    clip-path: none;
    transform: translateY(6px);
    filter: drop-shadow(0 26px 42px rgba(4, 3, 12, 0.58));
}

/* Section Styles */
section {
    padding: 80px 0;
    border-bottom: 4px solid #6E54FF;
}

.section-title {
    font-family: 'Kalam', cursive;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #6E54FF;
    transform: rotate(-1deg);
}

/* Story Section */
.story {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 5, 20, 0.28) 0%, rgba(8, 5, 20, 0.72) 34%, rgba(8, 5, 20, 0.9) 100%),
        url("../images/story-room-bg.png") center top / cover no-repeat;
}

.story::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 78, 230, 0.16), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(103, 239, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(6, 4, 16, 0.04) 0%, rgba(6, 4, 16, 0.38) 100%);
    pointer-events: none;
}

.story .container {
    position: relative;
    z-index: 1;
}

.story .section-title {
    color: #ffffff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.story-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 32px;
    border: 1px solid rgba(105, 239, 255, 0.22);
    border-radius: 28px;
    background: rgba(13, 10, 31, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(5, 4, 16, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.story-content p {
    font-size: 1.26rem;
    line-height: 1.75;
    margin-bottom: 22px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #ede8ff;
    transform: none;
    box-shadow: none;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content p:nth-child(even) {
    transform: none;
}

/* Gallery Section */
.gallery {
    background-color: transparent;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
    padding: 20px;
    border: 4px solid #6E54FF;
    border-radius: 20px;
    background-color: #FFFFFF;
    transform: rotate(1deg);
    transition: transform 0.2s ease;
}

.gallery-item:nth-child(2) {
    transform: rotate(-1deg);
}

.gallery-item:nth-child(3) {
    transform: rotate(0.5deg);
}

.gallery-item:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 0px #6E54FF;
}

.gallery-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 3px solid #6E54FF;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1A1A2E;
    font-style: italic;
}

/* Join Section */
.join {
    background-color: transparent;
    text-align: center;
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    padding: 20px;
    border: 3px solid #6E54FF;
    border-radius: 15px;
    background-color: #FFFFFF;
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 0px #A594F9;
}

.join-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid #6E54FF;
    border-radius: 20px;
    background-color: #6E54FF;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 4px 4px 0px #6E54FF;
    background-color: #5940E6;
}

/* Footer */
.footer {
    background-color: transparent;
    padding: 30px 0;
    text-align: center;
    border-top: 4px solid #6E54FF;
}

.footer p {
    font-size: 1rem;
    color: #6E54FF;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 14px;
    }

    .logo {
        padding: 8px;
        border-radius: 18px;
    }

    .logo img {
        width: 56px;
        height: 56px;
    }
    
    .nav {
        justify-content: center;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 8px 12px;
    }

    .hero {
        padding: 70px 0 50px;
        background-position: 62% center;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
        align-items: center;
    }

    .hero-copy {
        justify-content: center;
        text-align: center;
    }

    .hero-copy-card {
        margin: 0 auto;
        padding: 28px 22px;
    }
    
    .hero-title {
        font-size: 2.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story {
        background-position: 56% top;
    }

    .story-content {
        padding: 24px 20px;
        text-align: center;
    }

    .story-content p {
        font-size: 1.08rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-character {
        width: min(100%, 380px);
        clip-path: inset(0 0 10px 0);
    }
    
    .join-links {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .hero {
        padding: 56px 0 38px;
        background-position: 66% center;
    }

    .hero-copy-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .hero-kicker {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-character {
        width: min(100%, 310px);
        clip-path: inset(0 0 8px 0);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-content {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .story-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}


.tokenomics {
    padding: 90px 0;
    color: inherit;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tokenomics .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.tokenomics-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tokenomics-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tokenomics-mascot img {
    width: 700px;
    max-width: 100%;
    display: block;
}

.tokenomics-text {
    max-width: 420px;
}

.tokenomics-kicker,
.tokenomics-big,
.tokenomics-list li,
.tokenomics-percent,
.tokenomics-label {
    font-family: 'Patrick Hand', cursive;
}

.tokenomics-kicker {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
}

.tokenomics-big {
    margin: 0 0 25px;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
}

.tokenomics-list {
    margin: 0;
    padding-left: 22px;
}

.tokenomics-list li {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.2;
    text-transform: uppercase;
}

.tokenomics-right {
    display: flex;
    justify-content: center;
}

.tokenomics-chart-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    min-height: 360px;
}

.tokenomics-chart {
    width: 360px;
    height: 360px;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(
        circle at center,
        transparent 0 84px,
        #98bbca 85px 100%
    );
}

.tokenomics-chart-inner {
    display: none;
}

.tokenomics-chart-label {
    position: absolute;
    top: 72px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tokenomics-chart-label::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 30px;
    width: 150px;
    height: 2px;
    background: #ccc;
}

.tokenomics-chart-label::after {
    content: "";
    position: absolute;
    left: -3px;
    top: 24px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
}

.tokenomics-percent {
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.tokenomics-label {
    font-size: 18px;
    margin-top: 6px;
    opacity: 0.95;
}

@media (max-width: 980px) {
    .tokenomics-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tokenomics-left {
        flex-direction: column;
        text-align: center;
    }

    .tokenomics-text {
        max-width: 100%;
    }

    .tokenomics-list {
        display: inline-block;
        text-align: left;
    }

    .tokenomics-chart-wrap {
        min-height: 420px;
    }

    .tokenomics-chart-label {
        position: static;
        margin-top: 25px;
        align-items: center;
        text-align: center;
    }

    .tokenomics-chart-label::before,
    .tokenomics-chart-label::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .tokenomics {
        padding: 40px 0;
    }

    .tokenomics-big {
        font-size: 34px;
    }

    .tokenomics-list li {
        font-size: 20px;
    }

    .tokenomics-chart {
        width: 280px;
        height: 280px;
    }

    .tokenomics-chart-inner {
        width: 125px;
        height: 125px;
    }

    .tokenomics-percent {
        font-size: 28px;
    }
}





.roadmap {
    padding: 75px 0 95px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: inherit;
    position: relative;
    overflow: hidden;
}

.roadmap-premium::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(152, 187, 202, 0.18) 0%, rgba(152, 187, 202, 0.08) 35%, rgba(152, 187, 202, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.roadmap .container {
    position: relative;
    z-index: 1;
}

.roadmap .section-title {
    text-align: center;
    margin-bottom: 18px;
}

.roadmap-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.roadmap-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

.roadmap-timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 0;
}

.roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        rgba(110, 84, 255, 0.35) 0%,
        rgba(152, 187, 202, 0.95) 20%,
        rgba(110, 84, 255, 0.95) 55%,
        rgba(152, 187, 202, 0.85) 100%
    );
    box-shadow: 0 0 18px rgba(110, 84, 255, 0.12);
}

.roadmap-item {
    position: relative;
    width: 50%;
    margin-bottom: 46px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-left {
    left: 0;
    padding-right: 62px;
}

.roadmap-right {
    left: 50%;
    padding-left: 62px;
}

.roadmap-dot {
    position: absolute;
    top: 28px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.8);
}

.roadmap-left .roadmap-dot {
    right: -11px;
}

.roadmap-right .roadmap-dot {
    left: -11px;
}

.roadmap-done {
    background: #98bbca;
    border: 3px solid #7ea8ba;
    box-shadow: 0 0 0 6px rgba(152, 187, 202, 0.18), 0 0 18px rgba(152, 187, 202, 0.3);
}

.roadmap-live {
    background: #6E54FF;
    border: 3px solid #5f45ee;
    box-shadow: 0 0 0 6px rgba(110, 84, 255, 0.14), 0 0 22px rgba(110, 84, 255, 0.35);
}

.roadmap-next {
    background: #fff;
    border: 3px solid #d7dce5;
    box-shadow: 0 0 0 6px rgba(215, 220, 229, 0.22);
}

.roadmap-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    padding: 24px 24px 22px;
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.06),
        0 2px 0 rgba(255, 255, 255, 0.55) inset;
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.roadmap-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(152, 187, 202, 0.55), rgba(110, 84, 255, 0.18), rgba(255,255,255,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.55) inset;
    border-color: rgba(110, 84, 255, 0.12);
}

.roadmap-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.roadmap-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(110, 84, 255, 0.08);
    color: #6E54FF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-done {
    background: rgba(152, 187, 202, 0.16);
    color: #5c8799;
}

.status-done::before {
    background: #98bbca;
}

.status-live {
    background: rgba(110, 84, 255, 0.12);
    color: #5f45ee;
}

.status-live::before {
    background: #6E54FF;
    box-shadow: 0 0 0 4px rgba(110, 84, 255, 0.12);
}

.status-next {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.62);
}

.status-next::before {
    background: #cdd3dc;
}

.roadmap-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.05;
    font-family: 'Patrick Hand', cursive;
}

.roadmap-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .roadmap {
        padding: 68px 0 84px;
    }

    .roadmap-premium::before {
        width: 360px;
        height: 360px;
        top: 80px;
    }

    .roadmap-line {
        left: 18px;
        transform: none;
    }

    .roadmap-item {
        width: 100%;
        left: 0;
        padding-left: 54px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .roadmap-left,
    .roadmap-right {
        left: 0;
        padding-left: 54px;
        padding-right: 0;
    }

    .roadmap-dot,
    .roadmap-left .roadmap-dot,
    .roadmap-right .roadmap-dot {
        left: 7px;
        right: auto;
    }
}

@media (max-width: 600px) {
    .roadmap {
        padding: 58px 0 72px;
    }

    .roadmap-intro {
        margin-bottom: 36px;
    }

    .roadmap-intro p {
        font-size: 16px;
    }

    .roadmap-card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .roadmap-card::before {
        border-radius: 18px;
    }

    .roadmap-card-top {
        align-items: flex-start;
    }

    .roadmap-card h3 {
        font-size: 25px;
    }

    .roadmap-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}












.game-section {
    padding: 75px 0 95px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: inherit;
}

.game-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.game-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

.game-shell {
    max-width: 980px;
    margin: 0 auto;
}

.game-ui {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.game-stat {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.game-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

#harvardGame {
    width: 450px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 55%, #e8f0f6 100%);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.08),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: auto;
}

.game-overlay.hidden {
    display: none;
}

.game-overlay-card {
    width: min(320px, 90%);
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.game-overlay-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    font-family: 'Patrick Hand', cursive;
}

.game-overlay-card p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
}

.game-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 16px;
    cursor: pointer;
    background: #6E54FF;
    color: #fff;
    box-shadow: 0 10px 22px rgba(110, 84, 255, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.game-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(110, 84, 255, 0.32);
}

.game-btn:active {
    transform: translateY(0);
    opacity: 0.95;
}

.game-controls-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.75;
}

@media (max-width: 600px) {
    .game-section {
        padding: 58px 0 72px;
    }

    .game-intro p {
        font-size: 16px;
    }

    .game-overlay-card h3 {
        font-size: 26px;
    }

    .game-overlay-card p {
        font-size: 15px;
    }
}


.game-btn-secondary {
    background: #98bbca;
    color: #1f1f1f;
    box-shadow: 0 10px 22px rgba(152, 187, 202, 0.28);
}

.game-btn-secondary:hover {
    box-shadow: 0 14px 26px rgba(152, 187, 202, 0.32);
}



.game-wrapper:fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.96);
    width: 100%;
    height: 100%;
}



.game-wrapper:fullscreen #harvardGame {
    width: 520px;
    max-width: 90vw;
    height: auto;
}



@keyframes siteBackgroundMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes watermarkFloat {
    0% {
        transform: rotate(-18deg) translateY(0px);
    }
    50% {
        transform: rotate(-18deg) translateY(-30px);
    }
    100% {
        transform: rotate(-18deg) translateY(0px);
    }
}



.reveal {
    opacity: 0;
    transform: translateY(38px) scale(0.985);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}



.hero-banner img,
.tokenomics-mascot img,
.gallery-item img {
    animation: floatSoft 5.5s ease-in-out infinite;
}

.gallery-item:nth-child(2) img {
    animation-delay: 0.6s;
}

.gallery-item:nth-child(3) img {
    animation-delay: 1.1s;
}

@keyframes floatSoft {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(0.4deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


.gallery-item,
.story-content p,
.join-content p,
.roadmap-card {
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease;
}

.gallery-item:hover,
.story-content p:hover,
.join-content p:hover,
.roadmap-card:hover {
    transform: translateY(-6px) rotate(0deg) scale(1.01);
    box-shadow: 10px 12px 0px rgba(110, 84, 255, 0.18);
}



.btn-primary,
.social-link,
.game-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.social-link::before,
.game-btn::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.btn-primary:hover::before,
.social-link:hover::before,
.game-btn:hover::before {
    opacity: 1;
}

.btn-primary,
.social-link,
.game-btn,
.game-btn-secondary {
    box-shadow:
        0 10px 22px rgba(110, 84, 255, 0.22),
        0 0 0 rgba(110, 84, 255, 0);
    animation: pulseGlow 3.2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow:
            0 10px 22px rgba(110, 84, 255, 0.16),
            0 0 0 rgba(110, 84, 255, 0);
    }
    50% {
        box-shadow:
            0 14px 28px rgba(110, 84, 255, 0.28),
            0 0 22px rgba(110, 84, 255, 0.12);
    }
    100% {
        box-shadow:
            0 10px 22px rgba(110, 84, 255, 0.16),
            0 0 0 rgba(110, 84, 255, 0);
    }
}



html {
    position: relative;
    min-height: 100%;
}

html::before,
html::after {
    content: "";
    position: fixed;
    top: 0;
    width: 18vw;
    min-width: 120px;
    max-width: 260px;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

html::before {
    left: 0;
    background:
        radial-gradient(circle at 0% 20%, rgba(110, 84, 255, 0.24), transparent 48%),
        radial-gradient(circle at 10% 55%, rgba(152, 187, 202, 0.18), transparent 44%),
        radial-gradient(circle at 0% 85%, rgba(110, 84, 255, 0.16), transparent 42%),
        linear-gradient(90deg, rgba(110, 84, 255, 0.045), transparent 68%);
    filter: blur(8px);
    animation: sideAuraLeft 14s ease-in-out infinite;
}

html::after {
    right: 0;
    background:
        radial-gradient(circle at 100% 18%, rgba(152, 187, 202, 0.24), transparent 48%),
        radial-gradient(circle at 90% 52%, rgba(110, 84, 255, 0.18), transparent 44%),
        radial-gradient(circle at 100% 82%, rgba(152, 187, 202, 0.16), transparent 42%),
        linear-gradient(270deg, rgba(152, 187, 202, 0.045), transparent 68%);
    filter: blur(8px);
    animation: sideAuraRight 16s ease-in-out infinite;
}

@keyframes sideAuraLeft {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }
    50% {
        transform: translateX(6px) translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }
}

@keyframes sideAuraRight {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }
    50% {
        transform: translateX(-6px) translateY(12px);
        opacity: 1;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }
}




body {
    overflow-x: hidden;
}

body {
    background:
        linear-gradient(to right,
            rgba(110, 84, 255, 0.045) 0,
            rgba(110, 84, 255, 0.045) 1px,
            transparent 1px,
            transparent calc(100% - 1px),
            rgba(152, 187, 202, 0.045) calc(100% - 1px),
            rgba(152, 187, 202, 0.045) 100%
        ),
        radial-gradient(circle at 15% 20%, rgba(110, 84, 255, 0.14), transparent 30%),
        radial-gradient(circle at 85% 25%, rgba(152, 187, 202, 0.14), transparent 28%),
        radial-gradient(circle at 60% 80%, rgba(110, 84, 255, 0.09), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 52%, #e7eef8 100%);
    background-size: 100% 100%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
    animation: siteBackgroundMove 20s ease-in-out infinite;
}


.side-notes-left,
.side-notes-right {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 140px;
    pointer-events: none;
    z-index: 0;
    font-family: 'Patrick Hand', cursive;
    color: rgba(110, 84, 255, 0.09);
    font-size: 24px;
    line-height: 1.9;
    white-space: pre-line;
    user-select: none;
}

.side-notes-left {
    left: 18px;
    transform: rotate(-6deg);
}

.side-notes-right {
    right: 18px;
    transform: rotate(6deg);
    text-align: right;
}


body {
    position: relative;
}

body > * {
    position: relative;
    z-index: 1;
}
/* ===== Night room reskin: site-wide section backgrounds ===== */
body {
    color: #eef1ff;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 72, 220, 0.10), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(81, 235, 255, 0.10), transparent 24%),
        linear-gradient(180deg, #090611 0%, #0d0920 52%, #090611 100%);
    animation: none;
}

body::before {
    color: rgba(255, 255, 255, 0.012);
}

body::after {
    opacity: 0.08;
}

.side-notes-left,
.side-notes-right {
    display: none;
}

section {
    border-bottom: 1px solid rgba(115, 238, 255, 0.18);
}

.story,
.gallery,
.tokenomics,
.roadmap,
.game-section,
.join,
.footer {
    position: relative;
    overflow: hidden;
}

.gallery::before,
.tokenomics::before,
.roadmap::after,
.game-section::before,
.join::before,
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.story {
    background:
        linear-gradient(180deg, rgba(8, 5, 20, 0.40) 0%, rgba(8, 5, 20, 0.72) 38%, rgba(8, 5, 20, 0.92) 100%),
        url("../images/story-room-bg.png") center top / cover no-repeat;
}

.gallery {
    background:
        linear-gradient(180deg, rgba(8, 5, 22, 0.70) 0%, rgba(11, 7, 26, 0.82) 48%, rgba(9, 6, 20, 0.94) 100%),
        url("../images/gallery-room-bg.png") center center / cover no-repeat;
}

.gallery::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 77, 214, 0.16), transparent 20%),
        radial-gradient(circle at 84% 20%, rgba(100, 235, 255, 0.16), transparent 22%);
}

.tokenomics {
    background:
        linear-gradient(180deg, rgba(10, 6, 23, 0.72) 0%, rgba(12, 7, 28, 0.86) 46%, rgba(9, 6, 20, 0.96) 100%),
        url("../images/tokenomics-room-bg.png") center center / cover no-repeat;
    border-top: 1px solid rgba(115, 238, 255, 0.14);
    color: #eef0ff;
}

.tokenomics::before {
    background:
        radial-gradient(circle at 75% 18%, rgba(255, 201, 64, 0.16), transparent 18%),
        radial-gradient(circle at 20% 10%, rgba(95, 229, 255, 0.12), transparent 22%);
}

.roadmap {
    background:
        linear-gradient(180deg, rgba(9, 6, 21, 0.72) 0%, rgba(10, 7, 23, 0.86) 48%, rgba(8, 5, 18, 0.96) 100%),
        url("../images/roadmap-room-bg.png") center center / cover no-repeat;
    color: #eef0ff;
    border-top: 1px solid rgba(115, 238, 255, 0.14);
}

.roadmap::after {
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 77, 214, 0.14), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(100, 235, 255, 0.12), transparent 22%);
    z-index: 0;
}

.game-section {
    background:
        linear-gradient(180deg, rgba(8, 5, 22, 0.74) 0%, rgba(9, 6, 24, 0.84) 44%, rgba(7, 5, 18, 0.96) 100%),
        url("../images/game-room-bg.png") center center / cover no-repeat;
    color: #eef0ff;
    border-top: 1px solid rgba(115, 238, 255, 0.14);
}

.game-section::before {
    background:
        radial-gradient(circle at 78% 18%, rgba(86, 232, 255, 0.16), transparent 20%),
        radial-gradient(circle at 18% 22%, rgba(255, 82, 225, 0.10), transparent 18%);
}

.join {
    background:
        linear-gradient(180deg, rgba(8, 5, 20, 0.76) 0%, rgba(9, 6, 22, 0.86) 46%, rgba(6, 4, 16, 0.96) 100%),
        url("../images/join-room-bg.png") center center / cover no-repeat;
}

.join::before {
    background:
        radial-gradient(circle at 22% 12%, rgba(255, 77, 214, 0.12), transparent 20%),
        radial-gradient(circle at 80% 18%, rgba(100, 235, 255, 0.12), transparent 22%);
}

.footer {
    background:
        linear-gradient(180deg, rgba(7, 4, 16, 0.78) 0%, rgba(6, 4, 14, 0.94) 100%),
        url("../images/footer-room-bg.png") center center / cover no-repeat;
    border-top: 1px solid rgba(115, 238, 255, 0.16);
}

.footer::before {
    background: linear-gradient(180deg, rgba(6, 4, 16, 0.06) 0%, rgba(6, 4, 16, 0.44) 100%);
}

.gallery .container,
.tokenomics .container,
.roadmap .container,
.game-section .container,
.join .container,
.footer .container {
    position: relative;
    z-index: 1;
}

.gallery .section-title,
.tokenomics .section-title,
.roadmap .section-title,
.game-section .section-title,
.join .section-title {
    color: #ffffff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
}

.gallery-item,
.join-content p,
.roadmap-card,
.game-stat,
.game-overlay-card {
    background: rgba(13, 10, 31, 0.74);
    border: 1px solid rgba(105, 239, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(5, 4, 16, 0.28);
    color: #eef0ff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-item {
    transform: none;
    padding: 24px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    transform: none;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 96, 226, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 26px 62px rgba(5, 4, 16, 0.34);
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    border: 1px solid rgba(105, 239, 255, 0.26);
    border-radius: 18px;
    box-shadow:
        0 18px 36px rgba(4, 4, 16, 0.26),
        0 0 28px rgba(111, 237, 255, 0.08);
}

.gallery-caption,
.tokenomics-kicker,
.tokenomics-big,
.tokenomics-list li,
.tokenomics-percent,
.tokenomics-label,
.game-intro p,
.game-controls-note,
.join-content p,
.footer p,
.roadmap-intro p,
.roadmap-card p,
.roadmap-card h3 {
    color: #eef0ff;
}

.tokenomics-chart {
    background: radial-gradient(circle at center, transparent 0 84px, rgba(111, 237, 255, 0.88) 85px 100%);
    box-shadow: 0 0 28px rgba(111, 237, 255, 0.18);
}

.tokenomics-chart-label::before {
    background: rgba(255, 255, 255, 0.55);
}

.tokenomics-chart-label::after {
    background: #0d0a1f;
    border-color: rgba(255, 255, 255, 0.65);
}

.tokenomics-list li::marker {
    color: #6fe6ff;
}

.roadmap-intro p,
.game-intro p,
.game-controls-note,
.join-content p,
.footer p {
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.roadmap-card {
    background: rgba(13, 10, 31, 0.78);
    border: 1px solid rgba(105, 239, 255, 0.22);
}

.roadmap-card::before {
    background: linear-gradient(135deg, rgba(103, 239, 255, 0.38), rgba(255, 89, 226, 0.22), rgba(255,255,255,0.08));
}

.roadmap-phase {
    background: rgba(103, 239, 255, 0.14);
    color: #aaf6ff;
}

.status-done {
    background: rgba(103, 239, 255, 0.12);
    color: #aaf6ff;
}

.status-live {
    background: rgba(255, 89, 226, 0.16);
    color: #ffc9fa;
}

.status-next {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
}

.status-next::before {
    background: rgba(255, 255, 255, 0.78);
}

.roadmap-dot {
    box-shadow: 0 0 0 6px rgba(8, 5, 18, 0.82);
}

.game-stat {
    border-radius: 999px;
}

#harvardGame {
    background: linear-gradient(180deg, #120d2d 0%, #151034 55%, #0c091f 100%);
    border: 1px solid rgba(105, 239, 255, 0.22);
    box-shadow:
        0 24px 56px rgba(5, 4, 16, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.game-overlay-card {
    border-radius: 24px;
}

.game-btn-secondary {
    background: linear-gradient(180deg, rgba(32, 23, 66, 0.95) 0%, rgba(18, 12, 40, 0.92) 100%);
    color: #eef0ff;
    border: 1px solid rgba(103, 239, 255, 0.28);
    box-shadow: 0 10px 22px rgba(5, 4, 16, 0.24);
}

.join-content p {
    border: 1px solid rgba(105, 239, 255, 0.22);
    transform: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(5, 4, 16, 0.28);
}

.social-link {
    border: 1px solid rgba(113, 240, 255, 0.25);
    background: linear-gradient(180deg, rgba(25, 18, 56, 0.9) 0%, rgba(14, 10, 33, 0.78) 100%);
    color: #f4f7ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 24px rgba(5, 4, 16, 0.22);
}

.social-link:hover {
    background: linear-gradient(180deg, rgba(53, 30, 95, 0.95) 0%, rgba(20, 14, 46, 0.88) 100%);
    border-color: rgba(255, 94, 232, 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 94, 232, 0.18),
        0 14px 26px rgba(5, 4, 16, 0.3);
}

.footer p,
.footer a {
    color: #dfe8ff !important;
}

@media (max-width: 768px) {
    .gallery,
    .tokenomics,
    .roadmap,
    .game-section,
    .join,
    .footer {
        background-position: center center;
    }
}

/* Tokenomics redesign for Anagocto */
.tokenomics-layout {
    gap: 56px;
    align-items: center;
}

.tokenomics-left {
    align-items: center;
    gap: 22px;
}

.tokenomics-mascot {
    flex: 0 0 min(340px, 42vw);
    align-self: flex-end;
}

.tokenomics-mascot img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 24px 40px rgba(5, 4, 16, 0.42));
}

.tokenomics-panel {
    position: relative;
    max-width: 420px;
    padding: 28px 30px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 11, 34, 0.84) 0%, rgba(10, 8, 26, 0.74) 100%);
    border: 1px solid rgba(111, 230, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 48px rgba(4, 4, 15, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tokenomics-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 232, 125, 0.15), transparent 22%),
        radial-gradient(circle at 82% 12%, rgba(255, 78, 227, 0.12), transparent 18%);
    pointer-events: none;
}

.tokenomics-kicker,
.tokenomics-big,
.tokenomics-list li,
.tokenomics-percent,
.tokenomics-label,
.tokenomics-chart-core-label,
.tokenomics-chart-core-value {
    position: relative;
    z-index: 1;
}

.tokenomics-kicker {
    margin-bottom: 12px;
    color: #ffe870;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(255, 232, 112, 0.18);
}

.tokenomics-big {
    margin-bottom: 20px;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 0.94;
    color: #f8fbff;
    text-shadow: 0 8px 28px rgba(95, 229, 255, 0.22);
}

.tokenomics-big span {
    display: block;
    background: linear-gradient(135deg, #8ff4ff 0%, #d9fcff 42%, #f490ff 76%, #ffe870 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tokenomics-list {
    padding-left: 26px;
}

.tokenomics-list li {
    margin-bottom: 12px;
    font-size: clamp(23px, 2vw, 28px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.tokenomics-list li::marker {
    color: #ffe870;
}

.tokenomics-right {
    align-items: center;
}

.tokenomics-chart-wrap {
    max-width: 500px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tokenomics-chart-shell {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.tokenomics-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.tokenomics-orb-one {
    width: 26px;
    height: 26px;
    top: 52px;
    right: 68px;
    background: radial-gradient(circle at 35% 35%, #fff7be 0%, #ffe870 42%, #ff85e5 100%);
    box-shadow: 0 0 24px rgba(255, 133, 229, 0.35);
}

.tokenomics-orb-two {
    width: 18px;
    height: 18px;
    bottom: 88px;
    left: 82px;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #88f0ff 45%, #78a4ff 100%);
    box-shadow: 0 0 20px rgba(136, 240, 255, 0.32);
}

.tokenomics-chart {
    width: clamp(280px, 33vw, 400px);
    height: clamp(280px, 33vw, 400px);
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(from 90deg, #7befff 0deg, #92f4ff 120deg, #c587ff 220deg, #ff78db 290deg, #ffe870 332deg, #7befff 360deg);
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.04),
        0 0 42px rgba(111, 230, 255, 0.18),
        0 26px 54px rgba(5, 4, 16, 0.34);
}

.tokenomics-chart::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(19, 13, 42, 0) 68%);
}

.tokenomics-chart::after {
    content: "";
    position: absolute;
    inset: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(28, 19, 59, 0.96) 0%, rgba(10, 8, 28, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

.tokenomics-chart-inner {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
}

.tokenomics-chart-core-label {
    font-family: 'Patrick Hand', cursive;
    font-size: 18px;
    letter-spacing: 3px;
    color: #ffe870;
    text-transform: uppercase;
}

.tokenomics-chart-core-value {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1;
    color: #eefbff;
    text-shadow: 0 0 20px rgba(123, 239, 255, 0.2);
}

.tokenomics-chart-label {
    position: absolute;
    top: 94px;
    right: -2px;
    gap: 6px;
}

.tokenomics-chart-label::before {
    left: 4px;
    top: 34px;
    width: 158px;
    height: 3px;
    background: linear-gradient(90deg, rgba(129, 240, 255, 0.95) 0%, rgba(255, 255, 255, 0.35) 100%);
    box-shadow: 0 0 18px rgba(111, 230, 255, 0.14);
}

.tokenomics-chart-label::after {
    left: -6px;
    top: 25px;
    width: 14px;
    height: 14px;
    background: #130d2f;
    border: 3px solid #ffe870;
    box-shadow: 0 0 0 4px rgba(255, 232, 112, 0.12);
}

.tokenomics-percent {
    font-size: clamp(42px, 4vw, 60px);
    line-height: 0.9;
    color: #f8fbff;
    text-shadow: 0 0 18px rgba(123, 239, 255, 0.18);
}

.tokenomics-label {
    padding-left: 2px;
    font-size: 22px;
    letter-spacing: 0.3px;
    color: #a8efff;
}

@media (max-width: 980px) {
    .tokenomics-left {
        gap: 26px;
    }

    .tokenomics-mascot {
        flex-basis: auto;
    }

    .tokenomics-panel {
        max-width: 560px;
    }

    .tokenomics-chart-wrap {
        min-height: 380px;
    }

    .tokenomics-chart-label {
        position: static;
        margin-top: 20px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .tokenomics-panel {
        padding: 22px 18px 24px;
        border-radius: 22px;
    }

    .tokenomics-mascot img {
        max-width: 260px;
    }

    .tokenomics-chart {
        width: 280px;
        height: 280px;
    }

    .tokenomics-chart::after {
        inset: 54px;
    }

    .tokenomics-label {
        font-size: 18px;
    }
}

/* Alien Outbreak game refresh */
.game-shell {
    max-width: 1180px;
}

.game-ui {
    gap: 12px;
    margin-bottom: 20px;
}

.game-stat {
    min-width: 116px;
    text-align: center;
}

.game-wrapper {
    width: 100%;
}

#harvardGame {
    width: min(100%, 920px);
    max-width: 100%;
    aspect-ratio: 900 / 540;
    border-radius: 28px;
    background: linear-gradient(180deg, #0f0a26 0%, #120c2d 52%, #0b081d 100%);
    box-shadow:
        0 26px 64px rgba(5, 4, 16, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(105, 239, 255, 0.12);
}

.game-overlay {
    padding: 26px;
}

.game-overlay-card {
    width: min(380px, 92%);
}

.game-overlay-card p strong {
    color: #ffffff;
}

.game-controls-note strong {
    color: #6fe6ff;
}

.game-wrapper:fullscreen {
    background: rgba(5, 4, 16, 0.97);
}

.game-wrapper:fullscreen #harvardGame {
    width: min(96vw, 1500px);
    max-height: 92vh;
}

@media (max-width: 900px) {
    .game-stat {
        min-width: 96px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .game-ui {
        gap: 10px;
    }

    .game-stat {
        min-width: calc(50% - 10px);
    }

    #harvardGame {
        border-radius: 20px;
    }
}


/* ===== Smooth section transitions ===== */
:root {
    --seam-dark: rgba(7, 4, 18, 0.96);
    --seam-mid: rgba(7, 4, 18, 0.72);
    --seam-soft: rgba(7, 4, 18, 0.28);
    --seam-pink: rgba(255, 88, 224, 0.10);
    --seam-cyan: rgba(103, 239, 255, 0.10);
}

.hero,
.story,
.gallery,
.tokenomics,
.roadmap,
.game-section,
.join,
.footer {
    isolation: isolate;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow:
        inset 0 90px 120px -90px var(--seam-dark),
        inset 0 -120px 150px -100px var(--seam-dark);
}

.hero,
.story,
.gallery,
.tokenomics,
.roadmap,
.game-section,
.join {
    margin-bottom: -1px;
}

.hero::after,
.story::after,
.gallery::after,
.tokenomics::after,
.game-section::after,
.join::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(110px, 14vw, 180px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(120% 100% at 14% 100%, var(--seam-pink) 0%, transparent 58%),
        radial-gradient(120% 100% at 86% 100%, var(--seam-cyan) 0%, transparent 58%),
        linear-gradient(180deg, rgba(7, 4, 18, 0) 0%, rgba(7, 4, 18, 0.12) 25%, rgba(7, 4, 18, 0.42) 58%, var(--seam-dark) 100%);
}

.hero::before {
    background:
        radial-gradient(circle at 28% 22%, rgba(252, 68, 255, 0.22), transparent 18%),
        radial-gradient(circle at 60% 12%, rgba(87, 240, 255, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(7, 4, 20, 0.70) 0%, rgba(7, 4, 20, 0.18) 16%, rgba(7, 4, 20, 0.05) 34%, rgba(7, 4, 20, 0.26) 100%);
}

.story::before {
    background:
        linear-gradient(180deg, rgba(6, 4, 16, 0.86) 0%, rgba(6, 4, 16, 0.38) 14%, rgba(6, 4, 16, 0.06) 28%, rgba(6, 4, 16, 0.38) 100%),
        radial-gradient(circle at 18% 10%, rgba(255, 78, 230, 0.16), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(103, 239, 255, 0.12), transparent 24%);
}

.gallery::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.86) 0%, rgba(7, 4, 18, 0.34) 14%, rgba(7, 4, 18, 0.05) 28%, rgba(7, 4, 18, 0.22) 100%),
        radial-gradient(circle at 18% 18%, rgba(255, 77, 214, 0.16), transparent 20%),
        radial-gradient(circle at 84% 20%, rgba(100, 235, 255, 0.16), transparent 22%);
}

.tokenomics::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.88) 0%, rgba(7, 4, 18, 0.34) 14%, rgba(7, 4, 18, 0.06) 28%, rgba(7, 4, 18, 0.20) 100%),
        radial-gradient(circle at 75% 18%, rgba(255, 201, 64, 0.16), transparent 18%),
        radial-gradient(circle at 20% 10%, rgba(95, 229, 255, 0.12), transparent 22%);
}

.roadmap-premium::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.88) 0%, rgba(7, 4, 18, 0.30) 14%, rgba(7, 4, 18, 0.04) 30%, transparent 100%),
        radial-gradient(circle, rgba(152, 187, 202, 0.18) 0%, rgba(152, 187, 202, 0.08) 35%, rgba(152, 187, 202, 0) 70%);
    top: 0;
    left: 0;
    width: 100%;
    height: 520px;
    transform: none;
}

.roadmap::after {
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 77, 214, 0.14), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(100, 235, 255, 0.12), transparent 22%),
        radial-gradient(120% 100% at 14% 100%, var(--seam-pink) 0%, transparent 58%),
        radial-gradient(120% 100% at 86% 100%, var(--seam-cyan) 0%, transparent 58%),
        linear-gradient(180deg, rgba(7, 4, 18, 0) 0%, rgba(7, 4, 18, 0.12) 25%, rgba(7, 4, 18, 0.44) 58%, var(--seam-dark) 100%);
}

.game-section::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.88) 0%, rgba(7, 4, 18, 0.30) 14%, rgba(7, 4, 18, 0.04) 28%, rgba(7, 4, 18, 0.16) 100%),
        radial-gradient(circle at 78% 18%, rgba(86, 232, 255, 0.16), transparent 20%),
        radial-gradient(circle at 18% 22%, rgba(255, 82, 225, 0.10), transparent 18%);
}

.join::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.88) 0%, rgba(7, 4, 18, 0.30) 14%, rgba(7, 4, 18, 0.04) 28%, rgba(7, 4, 18, 0.16) 100%),
        radial-gradient(circle at 22% 12%, rgba(255, 77, 214, 0.12), transparent 20%),
        radial-gradient(circle at 80% 18%, rgba(100, 235, 255, 0.12), transparent 22%);
}

.footer::before {
    background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.90) 0%, rgba(7, 4, 18, 0.34) 16%, rgba(7, 4, 18, 0.08) 32%, rgba(6, 4, 16, 0.48) 100%);
}

.gallery .container,
.tokenomics .container,
.roadmap .container,
.game-section .container,
.join .container,
.footer .container,
.story .container,
.hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero::after,
    .story::after,
    .gallery::after,
    .tokenomics::after,
    .roadmap::after,
    .game-section::after,
    .join::after {
        height: 92px;
    }

    .hero,
    .story,
    .gallery,
    .tokenomics,
    .roadmap,
    .game-section,
    .join,
    .footer {
        box-shadow:
            inset 0 70px 90px -78px var(--seam-dark),
            inset 0 -92px 110px -82px var(--seam-dark);
    }
}
