@font-face {
    font-family: 'Jujutsu Kaisen';
    src: url('jujutsu-kaisen_woff/Jujutsu Kaisen.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #030303;
    --text-color: #f0f0f0;
    --accent-red: #8B0000;
    --accent-cyan: #00e5ff;
    --accent-cyan-glow: rgba(0, 229, 255, 0.6);
    --accent-cyan-dark: #008b99;
    --font-primary: 'Jujutsu Kaisen', sans-serif;
    --font-secondary: 'Inter', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    overflow-x: hidden;
}

::selection {
    background: var(--accent-cyan);
    color: #000;
}

/* PARTICLES CANVAS */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Typography elements */
h1,
h2,
.logo,
.loader-text,
.ca-label {
    font-family: var(--font-primary);
    text-transform: uppercase;
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-cyan);
    font-size: 3rem;
    letter-spacing: 5px;
    animation: cyan-flash 2s infinite;
}

@keyframes cyan-flash {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px var(--accent-cyan), 0 0 40px var(--accent-cyan);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0 0 5px var(--accent-cyan);
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    /* backdrop-filter: blur(5px); */
}

.logo {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cyan-link:hover {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan-dark);
}

.cyan-fire-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 8px 16px;
    font-family: var(--font-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px var(--accent-cyan);
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.2), 0 0 10px rgba(0, 229, 255, 0.2);
}

.cyan-fire-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--accent-cyan), 0 0 40px var(--accent-cyan-dark);
    text-shadow: none;
}

/* HERO */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.3) saturate(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    padding: 0 20px;
}

.glitch {
    font-size: 8rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 10px;
}

.cyan-fire-text {
    text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan), 0 0 40px var(--accent-cyan-dark), 0 0 80px var(--accent-cyan-dark);
    animation: flicker 4s infinite alternate;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan), 0 0 30px var(--accent-cyan-dark);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

.cyan-glow-text {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.subtitle {
    font-size: 1.8rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.subtitle2 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #aaa;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--accent-cyan);
    color: #000;
    border: none;
    box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.cyan-fire-bg:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px var(--accent-cyan), 0 0 60px var(--accent-cyan-dark);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.2), 0 0 10px rgba(0, 229, 255, 0.2);
}

.cyan-fire-box:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: inset 0 0 20px var(--accent-cyan), 0 0 30px var(--accent-cyan);
    border-color: #fff;
    color: #fff;
    text-shadow: 0 0 10px var(--accent-cyan);
}

/* SECTIONS */
.section {
    padding: 100px 5%;
    position: relative;
}

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

.section-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
}

/* LORE */
.lore-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lore-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

.lore-text em {
    color: var(--accent-cyan);
    font-style: normal;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    font-weight: 600;
}

.lore-stats {
    margin-top: 40px;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 20px;
    box-shadow: -10px 0 20px -10px var(--accent-cyan);
}

.stat {
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.highlight.cyan {
    color: var(--accent-cyan);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.lore-image-container {
    position: relative;
    border: 2px solid var(--accent-cyan);
    padding: 10px;
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
    transition: all 0.5s;
}

.lore-image-container:hover {
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.4), inset 0 0 20px rgba(0, 229, 255, 0.2);
    border-color: #fff;
}

.lore-img {
    width: 100%;
    display: block;
    filter: grayscale(0.2) contrast(1.2) sepia(0.2) hue-rotate(180deg);
    transition: filter 0.5s;
}

.lore-img:hover {
    filter: grayscale(0) contrast(1.1) sepia(0) hue-rotate(0deg);
}

/* GALLERY */
.gallery-container {
    overflow: hidden;
    padding: 40px 0;
    cursor: grab;
}

.gallery-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.gallery-container:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    width: 350px;
    height: 450px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border: 2px solid #222;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s;
    filter: grayscale(0.7) contrast(1.2);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--accent-cyan);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3), 0 0 20px var(--accent-cyan);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0) contrast(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 8 - 40px * 8));
    }
}

/* TOKENOMICS / CA */
.tokenomics-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tokenomics-info {
    max-width: 800px;
    margin-bottom: 40px;
    background: rgba(0, 229, 255, 0.03);
    border-left: 4px solid var(--accent-cyan);
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tokenomics-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
}

.tokenomics-info strong {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tokenomics-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.t-stat {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.cashback-text {
    font-size: 1.1rem !important;
    line-height: 1.8;
    color: var(--accent-cyan) !important;
    text-align: center;
    margin-bottom: 0 !important;
}

.cyan-fire-container {
    background: rgba(0, 10, 15, 0.8);
    border: 2px solid var(--accent-cyan-dark);
    padding: 50px;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin-top: 20px;
    transition: all 0.4s;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cyan-fire-container:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3), inset 0 0 30px rgba(0, 229, 255, 0.1);
}

.ca-label {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.ca-value-container {
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent-cyan);
    padding: 8px;
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.2);
}

#ca-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    font-family: monospace;
    font-size: 1.3rem;
    padding: 15px;
    outline: none;
    text-align: center;
    color: var(--accent-cyan);
    text-shadow: 0 0 5px var(--accent-cyan);
}

.ca-value-container button {
    background: var(--accent-cyan);
    border: none;
    color: #000;
    width: 70px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.ca-value-container button:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--accent-cyan);
    color: #000;
}

.copy-feedback {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    letter-spacing: 2px;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* FOOTER */
footer {
    background: linear-gradient(to top, #000, #050505);
    padding: 80px 5% 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
}

.footer-logo {
    font-size: 4rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.social-links a {
    color: #fff;
    font-size: 2.5rem;
    transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .glitch {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .lore-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    #ca-input {
        font-size: 0.8rem;
        padding: 10px;
    }

    .ca-label {
        font-size: 1.5rem;
    }

    .cyan-fire-container {
        padding: 30px 15px;
    }

    .gallery-item {
        width: 280px;
        height: 380px;
    }
}