:root {
    --bg-color: #CCFF00;
    --card-bg: #FFFFFF;
    --text-primary: #18181B;
    --text-secondary: #3F3F46;
    --accent-pink: #FF007A;
    --accent-pink-light: #FFE5F1;
    --accent-yellow: #CCFF00;
    --border-color: #18181B;
    --border-subtle: #E4E4E7;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* FOOTER THEME COLOR MATCHING THE SCREENSHOT */
    --footer-bg: #FAF8F5;
    --footer-text-heading: #18181B;
    --footer-text-link: #555555;
    --footer-text-hover: #000000;
    --footer-subtle-border: #E8E5E0;
}

html, body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100%;
    background-color: var(--bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

/* FLOATING CANVAS ELEMENTS WITH KEYFRAME ANIMATIONS */
.floating-brains-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-brain {
    position: absolute;
    font-size: 42px;
    opacity: 0.4;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
}

.bg-brain:hover {
    opacity: 0.95;
    transform: scale(1.3);
}

.brain-1 { top: 12%; left: 3%; animation: floatBrain1 8s infinite ease-in-out; }
.brain-2 { top: 35%; right: 4%; animation: floatBrain2 10s infinite ease-in-out; }
.brain-3 { top: 70%; left: 5%; animation: floatBrain1 9s infinite ease-in-out 1s; }
.brain-4 { top: 22%; right: 12%; animation: floatBrain2 11s infinite ease-in-out 2s; }
.brain-5 { top: 85%; right: 6%; animation: floatBrain1 7s infinite ease-in-out 0.5s; }
.brain-6 { top: 52%; left: 45%; animation: floatBrain2 12s infinite ease-in-out 1.5s; }

@keyframes floatBrain1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(25px, -35px) rotate(15deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatBrain2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, 25px) rotate(-12deg); }
    66% { transform: translate(15px, -30px) rotate(18deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* POP-UP FEEDBACK TOASTS */
.pop-text {
    position: fixed;
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    background: #18181B;
    border: 2px solid #FF007A;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 4px 4px 0px #18181B;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -100%);
    animation: floatUp 1.2s ease-out forwards;
}

@keyframes floatUp {
    0% { opacity: 0; transform: translate(-50%, -20px) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -40px) scale(1.1); }
    80% { opacity: 1; transform: translate(-50%, -60px) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -80px) scale(0.9); }
}

/* SPEECH BUBBLE CHARACTER OVERLAYS & CAT AVATARS */
.character-speech-box {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bubble-cat-avatar {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #18181B;
    box-shadow: 3px 3px 0px #18181B;
    pointer-events: auto;
}

.speech-bubble {
    background: #FFFFFF;
    color: #18181B;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0px #FF007A;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    animation: speechWobble 3s infinite ease-in-out;
    pointer-events: auto;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: #FFFFFF transparent transparent transparent;
    display: block;
    width: 0;
}

.speech-top { top: -35px; right: 0; }
.speech-inline { top: -25px; left: 50%; transform: translateX(-50%); }
.speech-float-right { top: -15px; right: 20px; }
.speech-chart { top: -20px; left: 20px; }

@keyframes speechWobble {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

/* TOP ANNOUNCEMENT BANNER */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #18181B;
    color: #CCFF00;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker__item {
    font-size: 13px;
    padding: 0 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

/* MAIN LAYOUT WRAPPER */
.maindiv {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1280px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px #18181B;
    border-radius: var(--radius-full);
    z-index: 500;
    padding: 0 24px;
}

.logo__container img { height: 28px; }

.navbar ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.navbar ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.navbar ul li a:hover {
    background: #18181B;
    color: #CCFF00;
}

/* BURGER MENU DEFAULT HIDDEN ON DESKTOP */
.burger__menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 600;
}

.burger_span {
    display: block;
    width: 100%;
    height: 3px;
    background: #18181B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO SECTION & TEXT STYLING */
.hero {
    width: 94%;
    max-width: 1280px;
    padding: 110px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.centertext { max-width: 680px; }

.hero-character-wrap {
    position: relative;
    display: inline-block;
}

.comic-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 20px;
    background: #18181B;
    color: #CCFF00;
    border: 2px solid #18181B;
    box-shadow: 3px 3px 0px #FF007A;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    letter-spacing: -0.03em;
}

.pink-highlight {
    background: var(--accent-pink);
    color: #FFFFFF;
    padding: 2px 14px;
    border-radius: var(--radius-sm);
    border: 2px solid #18181B;
    box-shadow: 3px 3px 0px #18181B;
    display: inline-block;
    transform: rotate(-1deg);
}

.hero-subtext {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    color: #18181B;
    margin-bottom: 28px;
    max-width: 600px;
}

/* HERO BUTTONS */
.buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-black {
    background: #18181B;
    color: #CCFF00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0px #18181B;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-black:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #FF007A;
    background: #27272A;
}

.btn-green {
    background: #FFFFFF;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px #18181B;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-green:hover {
    background: #FAFAFA;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #18181B;
}

.btn-telegram {
    background: #229ED9;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0px #18181B;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-telegram img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.btn-telegram:hover {
    background: #1D88BC;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #18181B;
}

.btn-x {
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0px #18181B;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-x img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.btn-x:hover {
    background: #18181B;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #FF007A;
}

/* HERO COPY CA BOX CLEANED */
.hero-ca-box {
    margin-top: 24px;
    background: #FFFFFF;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    max-width: 100%;
}

.hero-ca-text {
    font-family: monospace;
    font-weight: 800;
    font-size: 13px;
    color: #18181B;
    word-break: break-all;
}

.hero-copy-btn {
    background: #FF007A;
    color: #FFFFFF;
    border: 2px solid #18181B;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 2px 2px 0px #18181B;
    transition: transform 0.1s ease, background 0.2s ease;
}

.hero-copy-btn:hover {
    background: #18181B;
    color: #CCFF00;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #18181B;
}

.hero-brainlet-img {
    width: 100%;
    max-width: 440px;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    object-fit: contain;
}

.hero-brainlet-img:hover {
    transform: translateY(-6px) !important;
    transition: transform 0.3s ease;
}

/* GENERAL SECTION STYLING */
.cardssection {
    width: 94%;
    max-width: 1280px;
    padding: 56px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.subtitle-text {
    font-size: 16px;
    color: #18181B;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
}

.comic-border {
    background: var(--card-bg);
    border: 2px solid var(--border-color) !important;
    box-shadow: 6px 6px 0px #18181B !important;
    border-radius: var(--radius-lg) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comic-border:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 0px #18181B !important;
}

/* DIAGRAM CONTAINER */
.diagram-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 36px;
    gap: 20px;
    position: relative;
}

.diagram-step {
    flex: 1;
    text-align: center;
    padding: 24px 20px;
    background: #FAFAFA;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    position: relative;
}

.highlight-step {
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px #FF007A;
}

.step-icon { font-size: 36px; margin-bottom: 10px; }
.diagram-arrow { font-size: 20px; color: var(--text-primary); font-weight: 800; }

/* CHECKLIST CARD */
.interactive-card {
    width: 100%;
    padding: 40px;
    position: relative;
}

.badge-tag {
    display: inline-block;
    background: var(--accent-pink);
    color: #FFFFFF;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid #18181B;
    box-shadow: 2px 2px 0px #18181B;
}

.interactive-card h2 { font-size: 28px; font-weight: 900; margin-top: 0; margin-bottom: 8px; }
.interactive-card p { color: var(--text-secondary); margin-bottom: 28px; font-size: 15px; font-weight: 600; }

.proxy-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.check-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background: #FAFAFA;
    padding: 14px 18px;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.check-container:hover {
    background: #FFFFFF;
    border-color: var(--border-color);
}

.proxy-check {
    width: 20px;
    height: 20px;
    accent-color: #18181B;
    cursor: pointer;
}

.score-box {
    background: #18181B;
    color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px 28px;
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0px var(--accent-pink);
}

.score-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: #27272A;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid #3F3F46;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-pink);
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.status-verdict {
    font-size: 15px;
    font-weight: 800;
    color: #CCFF00 !important;
    text-align: left;
}

/* LORE TERMINAL VIDEO EMBED FRAME */
.lore-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 36px auto;
    background: #18181B;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid #18181B;
    box-shadow: 8px 8px 0px #FF007A;
}

.video-header-bar {
    background: #27272A;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #18181B;
    position: relative;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.video-dot.red { background: #FF5F56; }
.video-dot.yellow { background: #FFBD2E; }
.video-dot.green { background: #27C93F; }

.video-title-text {
    color: #CCFF00;
    font-family: monospace;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 800;
}

.live-badge {
    margin-left: auto;
    background: #FF007A;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    border: 1px solid #18181B;
    letter-spacing: 0.5px;
}

.video-wrapper {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lore-video {
    width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
    object-fit: contain;
}

.video-caption-box {
    padding: 18px 24px;
    background: #18181B;
    border-top: 2px solid #27272A;
}

.caption-tag {
    background: var(--accent-pink);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.video-caption-text {
    color: #E4E4E7;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.green-text { color: #CCFF00; font-weight: 800; }
.pink-text { color: var(--accent-pink); font-weight: 800; }

.lore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.lore-card {
    padding: 30px;
    background: #FFFFFF;
    color: #18181B;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.lore-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.lore-tag {
    background: #18181B;
    color: #CCFF00;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.lore-stat {
    font-family: monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-pink);
    background: var(--accent-pink-light);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--accent-pink);
}

.lore-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 8px 0 0 0;
    letter-spacing: -0.01em;
    color: #18181B;
}

.lore-card p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 10px 10px 0px #18181B !important;
}

/* STICKY NOTES GRID */
.sticky-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    width: 100%;
}

.sticky-note {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 6px 6px 0px #18181B;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-note:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px #18181B;
}

.note-header {
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-subtle);
}

.note-tag {
    background: #18181B;
    color: #CCFF00;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-full);
}

.note-header h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 10px 0 0 0;
    color: var(--text-primary);
}

.note-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 16px;
    border: none !important;
}

.sticky-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.sticky-list li { margin-bottom: 8px; }

/* 2-COLUMN HUB GRID */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.hub-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hub-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-subtle);
    padding-bottom: 14px;
}

.hub-tag {
    background: #18181B;
    color: #CCFF00;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.hub-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.hub-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ARTICLES */
.article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAFAFA;
    border: 2px solid var(--border-subtle);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.article-item:hover {
    background: #FFFFFF;
    border-color: #18181B;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #18181B;
}

.article-meta { display: flex; flex-direction: column; gap: 2px; }
.article-category { font-size: 10px; font-weight: 900; color: var(--accent-pink); letter-spacing: 0.5px; }
.article-title { font-size: 14px; font-weight: 800; }
.arrow-icon { font-size: 16px; font-weight: 900; color: #18181B; }

/* PIONEERS */
.pioneer-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FAFAFA;
    border: 2px solid var(--border-subtle);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.pioneer-pill:hover {
    background: #FFFFFF;
    border-color: #18181B;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #18181B;
}

.pioneer-avatar {
    width: 36px;
    height: 36px;
    background: #18181B;
    color: #CCFF00;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid #18181B;
}

.pioneer-info { display: flex; flex-direction: column; flex: 1; }
.pioneer-name { font-size: 13px; font-weight: 800; }
.pioneer-handle { font-size: 11px; color: var(--accent-pink); font-weight: 700; }
.x-badge { font-size: 14px; font-weight: 900; color: #18181B; }

/* FAQ ACCORDION */
.accordion-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 4px 4px 0px #18181B;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
    background: #FFFFFF;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

/* CHART & FOOTER */
.chart-section {
    width: 94%;
    max-width: 1280px;
    padding: 36px 0;
    position: relative;
}

.chart-embed {
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: 6px 6px 0px #18181B;
    overflow: hidden;
}

/* FOOTER STYLING WITH LOGO & SOCIAL BUTTONS */
.footer {
    width: 100%;
    background-color: var(--footer-bg);
    color: var(--footer-text-heading);
    padding: 64px 0 32px 0;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    border-top: 1px solid var(--footer-subtle-border);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col {
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-since {
    font-size: 11px;
    font-weight: 700;
    color: #71717A;
    letter-spacing: 1px;
}

/* FOOTER BUTTONS STYLING */
.footer-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #18181B;
    box-shadow: 2px 2px 0px #18181B;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px #18181B;
}

.btn-email-sm {
    background: #FF007A;
    color: #FFFFFF;
}

.btn-telegram-sm {
    background: #229ED9;
    color: #FFFFFF;
}

.btn-telegram-sm img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.btn-x-sm {
    background: #000000;
    color: #FFFFFF;
}

.btn-x-sm img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.btn-chart-sm {
    background: #CCFF00;
    color: #18181B;
}

.footer-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #18181B;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--footer-text-link);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--footer-text-hover);
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--footer-subtle-border);
    font-size: 13px;
    color: #71717A;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid #E4E4E7;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    color: #18181B;
    font-weight: 600;
    font-size: 12px;
}

.author-avatar {
    font-size: 14px;
}

/* POPUP DESCRIPTION MODAL STYLING */
.footer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 24, 27, 0.65);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.footer-modal-content {
    background: #FFFFFF;
    border: 3px solid #18181B;
    border-radius: var(--radius-lg);
    box-shadow: 8px 8px 0px #FF007A;
    max-width: 460px;
    width: 100%;
    padding: 32px;
    position: relative;
    animation: modalPop 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #FAFAFA;
    border: 2px solid #18181B;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.modal-close-btn:hover {
    background: #FF007A;
    color: #FFFFFF;
}

.modal-badge {
    display: inline-block;
    background: #18181B;
    color: #CCFF00;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.modal-title {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #18181B;
}

.modal-description {
    font-size: 15px;
    color: #3F3F46;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.modal-action-btn {
    background: #CCFF00;
    color: #18181B;
    border: 2px solid #18181B;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 900;
    border-radius: var(--radius-md);
    box-shadow: 3px 3px 0px #18181B;
    cursor: pointer;
    width: 100%;
    transition: transform 0.15s ease;
}

.modal-action-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #18181B;
}

/* REVEAL ANIMATIONS */
.section-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* MOBILE RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 1024px) {
    .hub-grid { grid-template-columns: 1fr; }
    .lore-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 16px;
    }
    .burger__menu {
        display: flex;
    }
    .navbar ul {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        border: 2px solid var(--border-color);
        box-shadow: 6px 6px 0px #18181B;
        border-radius: var(--radius-md);
        padding: 16px;
        gap: 8px;
        z-index: 700;
    }
    .navbar ul.active {
        display: flex;
    }
    .navbar ul li a {
        display: block;
        width: 100%;
        padding: 10px 14px;
        font-size: 15px;
    }
    .center { flex-direction: column; text-align: center; }
    .centertext { max-width: 100%; }
    .buttons { justify-content: center; }
    .proxy-checklist { grid-template-columns: 1fr; }
    .diagram-container { flex-direction: column; }
    .sticky-notes-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 42px; }
    .character-speech-box { position: relative; top: 0; left: 0; right: 0; margin-bottom: 10px; text-align: center; justify-content: center; }
    .speech-bubble::after { display: none; }
    .hero-ca-box { flex-direction: column; text-align: center; }
    .footer-columns { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-social-buttons { justify-content: center; }
    .brand-col { align-items: center; text-align: center; }
}

@media (max-width: 500px) {
    .footer-columns { grid-template-columns: 1fr; text-align: center; }
    .footer-col { align-items: center; }
    .footer-links li a:hover { transform: none; }
    .main-title { font-size: 30px; line-height: 1.15; }
    .hero-subtext { font-size: 15px; }
    .buttons { flex-direction: column; width: 100%; }
    .btn-black, .btn-green, .btn-telegram, .btn-x { width: 100%; justify-content: center; }
    .cardssection { padding: 36px 0; }
    .interactive-card { padding: 20px; }
}