:root {
    --bg-color: #010103;
    --primary: #D72638;
    --secondary: #bc13fe;
    --accent: #E28413;
    --text-main: #ffffff;
    --text-dim: #9aaaba;
    --glass: rgba(215, 38, 56, 0.05);
    --glass-border: rgba(215, 38, 56, 0.2);
    --glow: 0 0 10px rgba(215, 38, 56, 0.6), 0 0 20px rgba(215, 38, 56, 0.3);
    --hologram: linear-gradient(135deg, rgba(215, 38, 56, 0.1) 0%, rgba(226, 132, 19, 0.1) 100%);
    --section-pad: 12rem;
    --card-pad: 3rem;
}

.data-bar-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    font-size: 0.6rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    z-index: 2000;
    border-bottom: 1px solid rgba(215, 38, 56, 0.1);
    background: rgba(2, 2, 5, 0.9);
    backdrop-filter: blur(5px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgba(1, 1, 3, 0.8), rgba(1, 1, 3, 0.8)), url('images/img_bg.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.8;
    /* Increased for better readability */
    position: relative;
    letter-spacing: 0.02em;
}

/* Background Layers */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 38, 56, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 38, 56, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center center;
    pointer-events: none;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    animation: grid-move 60s linear infinite;
}

.grid-layer-2 {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(188, 19, 254, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 19, 254, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
    animation: grid-move-reverse 40s linear infinite;
}

@keyframes grid-move-reverse {
    from { background-position: 40px 40px; }
    to { background-position: 0 0; }
}

/* Scanline Effect */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(215, 38, 56, 0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 999;
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Active State for Cursor */
.inner-dot-active {
    width: 12px;
    height: 12px;
}

.outer-ring-active {
    width: 60px;
    height: 60px;
    background: rgba(215, 38, 56, 0.1);
    border-width: 2px;
}

/* Header & Nav */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 2rem;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(2, 2, 5, 0.9), transparent);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    /* Constrained for better balance */
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
}

.logo span {
    color: var(--primary);
    text-shadow: var(--glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 2005;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(2, 2, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 2004;
        gap: 2.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Orbitron', sans-serif;
    }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(2, 2, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Orbitron', sans-serif;
    }
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12rem 5% 5rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.hero-content {
    flex: 1.2;
    z-index: 2;
    padding-left: 0;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    /* Responsive typography */
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    position: relative;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(215, 38, 56, 0.8), 0 0 40px rgba(215, 38, 56, 0.4);
    filter: skewX(-5deg);
}

.hero-description {
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.8;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 38, 56, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(215, 38, 56, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 38, 56, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
button {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 1px;
}

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

.primary-btn:hover {
    box-shadow: 0 0 30px rgba(215, 38, 56, 0.6);
    transform: translateY(-3px);
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.glow-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.5rem;
}

.glow-btn:hover {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: var(--glow);
}

/* Extreme Hero Elements */
.hero-image-container {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.scanner-bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    z-index: 4;
    top: 0;
    animation: scan 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes scan {
    0%, 100% { top: 10%; opacity: 0; }
    50% { top: 90%; opacity: 0.8; }
}

.hero-image-container::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-image-container::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-image-container::before, .hero-image-container::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    z-index: 3;
}

/* Dossier Slider */
.dossier-slider {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 850px;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    opacity: 0;
    transform: scale(0.9) translateX(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    filter: drop-shadow(0 0 40px rgba(215, 38, 56, 0.3));
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.dossier-overlay {
    position: absolute;
    right: -10rem;
    bottom: 2rem;
    transform: none;
    background: rgba(2, 2, 5, 0.98);
    border-top: 4px solid var(--primary);
    border-left: 0;
    padding: 1.5rem 2rem;
    width: auto;
    min-width: 300px;
    z-index: 5;
    backdrop-filter: blur(10px);
    pointer-events: all;
    transition: all 0.4s ease;
}

.dossier-overlay:hover {
    opacity: 0.15 !important;
    filter: blur(2px);
}

.dossier-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.dossier-label span {
    color: var(--primary);
    display: block;
    font-size: 1rem;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px var(--primary);
}

.slider-controls {
    position: absolute;
    bottom: -3rem;
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.slider-controls button {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--primary);
    color: var(--bg-color);
    box-shadow: var(--glow);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
    .dossier-overlay {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 2rem;
        width: 100%;
        animation: fadeIn 0.5s forwards;
    }

}

/* Hologram Cube */
.hologram-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 10s infinite linear;
    z-index: 2;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(215, 38, 56, 0.05);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(215, 38, 56, 0.3);
}

.front {
    transform: translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.hologram-text {
    position: absolute;
    bottom: -50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    animation: blink 1s infinite;
}

@keyframes rotate-cube {
    from {
        transform: rotateX(0) rotateY(0);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(215, 38, 56, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: 8px;
}

.hologram-text {
    position: absolute;
    bottom: -60px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    animation: blink 1s infinite;
    letter-spacing: 2px;
}

/* Live Data */
.live-data {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    z-index: 1001;
    border-left: 2px solid var(--secondary);
    padding-left: 1rem;
}

.data-row {
    margin-bottom: 0.5rem;
}

section {
    padding: var(--section-pad) 10%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 6rem;
    color: var(--primary);
    text-shadow: var(--glow);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.2em;
}

#manifesto {
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 16, 0.8));
}

.lore-container {
    max-width: 900px;
    margin: 0 auto;
}

.lore-card {
    padding: 5rem 6rem;
    border-radius: 4px;
    line-height: 2;
}

.lore-card h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: var(--glow);
}

.lore-card p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.gameplay-features {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(215, 38, 56, 0.05);
    border-left: 2px solid var(--primary);
}

.gameplay-features h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.gameplay-features ul {
    list-style: none;
}

.gameplay-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
}

.gameplay-features li::before {
    content: ">>";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
}

.hologram-bg {
    background: var(--hologram);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 30px rgba(215, 38, 56, 0.05);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    /* Better internal balance */
    position: relative;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(215, 38, 56, 0.1);
}

.phase-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--bg-color);
    padding: 0.2rem 1rem;
    font-size: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.roadmap-item h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.roadmap-item ul {
    list-style: none;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.roadmap-item ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.roadmap-item ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Token Section */
.token-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
}

.glow-border {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.1);
}

.tokenomics {
    margin-top: 2rem;
}

.tok-bar {
    margin-bottom: 1rem;
}

.tok-bar .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-bottom: 0.3rem;
}

.tok-bar .val {
    display: block;
    height: 4px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    position: relative;
}

.tok-bar:nth-child(1) .val {
    width: 40%;
}

.tok-bar:nth-child(2) .val {
    width: 20%;
}

.tok-bar:nth-child(3) .val {
    width: 15%;
}

.tok-bar:nth-child(4) .val {
    width: 10%;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Quote Box */
.quote-box {
    margin-top: 2rem;
    border-left: 2px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
}

.quote-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px var(--primary);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 550px;
    padding: var(--card-pad);
    border-radius: 4px;
    /* Slightly more defined */
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: 0 0 60px rgba(215, 38, 56, 0.15);
}

.glass {
    background: rgba(3, 3, 11, 0.8);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    color: var(--primary);
    font-size: 2rem;
    padding: 0;
}

.step {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.step.active {
    display: block;
}

.step h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
}

.prefix {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    margin-right: 0.5rem;
}

input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 0.5rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.next-btn {
    width: 100%;
    background: var(--primary);
    color: var(--bg-color);
    margin-top: 1rem;
}

.next-btn:disabled {
    background: #222;
    color: #555;
    cursor: not-allowed;
}

/* Task List */
.task-list {
    list-style: none;
    margin-bottom: 2rem;
}

.task-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: none;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--primary);
}

.checkbox-container:hover input~.checkmark {
    background-color: rgba(215, 38, 56, 0.1);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Game Styling */
#game-container {
    width: 100%;
    height: 200px;
    background: rgba(215, 38, 56, 0.05);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

#dino-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

#game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}

#game-over-ui {
    background: rgba(2, 2, 5, 0.9);
    padding: 2rem;
    border: 1px solid var(--primary);
    pointer-events: all;
    z-index: 10;
}

#game-over-ui h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.game-hint {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 2px;
    animation: blink 1s infinite;
}

.score-board {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 0.8rem;
    text-align: right;
    letter-spacing: 1px;
}

/* Success State */
.success-icon {
    font-size: 4rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.small {
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* Animations */
/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--primary);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    color: var(--accent);
    animation: glitch-anim 2.5s infinite linear alternate;
}

@keyframes glitch-anim {
    0% {
        clip: rect(44px, 900px, 56px, 0);
    }

    20% {
        clip: rect(2px, 900px, 98px, 0);
    }

    40% {
        clip: rect(67px, 900px, 12px, 0);
    }

    60% {
        clip: rect(23px, 900px, 88px, 0);
    }

    80% {
        clip: rect(98px, 900px, 45px, 0);
    }

    100% {
        clip: rect(5px, 900px, 2px, 0);
    }
}

/* Footer */
footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    * {
        cursor: auto;
    }

    #hero {
        flex-direction: column;
        padding: 8rem 5% 2rem 5%;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-image-container {
        width: 100%;
        margin-top: 0;
    }

    .slides-wrapper {
        height: 50vh;
        max-height: 400px;
    }

    .slide img {
        max-height: 50vh;
    }

    .dossier-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        width: 100%;
        min-width: auto;
        border-top: 2px solid var(--primary);
    }

    .slider-controls {
        bottom: 50%;
        width: 100%;
        left: 0;
        justify-content: space-between;
        padding: 0 10%;
        transform: translateY(50%);
        pointer-events: none;
    }

    .slider-controls button {
        pointer-events: all;
        background: rgba(2, 2, 5, 0.8);
        width: 50px;
        height: 50px;
    }

    .live-data {
        display: none;
    }

    .lore-card {
        padding: 3rem 1.5rem;
        line-height: 1.8;
    }

    .lore-card h3 {
        font-size: 1.4rem;
    }
}