/* ==========================================
   THE CYBER-COMIC BLITZ STYLE (SCROLLABLE HERO EDITION)
   ========================================== */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #08060b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
}

/* CYBERPUNK BACKGROUND GRID OVERLAY */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2; 
    pointer-events: none;
}

h1, h2, h3, h4, button {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.text-yellow {
    color: #FFE600;
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.3);
}

/* GIANT BACKGROUND WATERMARKS */
.bg-watermark, .bg-watermark-left {
    position: absolute;
    font-family: 'Orbitron', sans-serif;
    font-size: 14vw; 
    font-weight: 900;
    color: rgba(106, 68, 215, 0.02); 
    text-transform: uppercase;
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.bg-watermark {
    right: -5%;
    top: 5%;
    transform: rotate(5deg);
}

.bg-watermark-left {
    left: -5%;
    top: 5%;
    transform: rotate(-5deg);
    color: rgba(255, 230, 0, 0.015); 
}

/* FLOATING SIDE NAVIGATION DOTS */
.dot-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.dot-link {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dot-link::after {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFE600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.dot-link:hover::after {
    opacity: 1;
}

.dot-link:hover, .dot-link.active {
    background-color: #FFE600;
    box-shadow: 0 0 10px #FFE600;
    transform: scale(1.3);
}

/* FIXED GLOBAL NAVIGATION BAR */
.global-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: rgba(17, 14, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid #FFE600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 2000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(106, 68, 215, 0.6);
}

.global-nav-bar .stats-ticker {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.ticker-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

.ticker-item span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-right: 6px;
    letter-spacing: 1px;
}

/* HERO SECTION */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 40px 8%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(106, 68, 215, 0.18), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(255, 230, 0, 0.04), transparent 40%) !important;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-tagline {
    color: #6a44d7;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 25px;
    transform: skewX(-5deg);
}

.hero-content p {
    color: #b3aebd;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
}

.btn-connect, .btn-discord {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-connect {
    background-color: #FFE600;
    border: none;
    color: #08060b;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-connect:hover {
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.6);
    transform: translateY(-2px);
}

.btn-discord {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-discord:hover {
    background-color: #ffffff;
    color: #08060b;
    transform: translateY(-2px);
}

.hero-pfp {
    width: 100%;
    max-width: 420px;
    border: 4px solid #ffffff;
    box-shadow: -15px 15px 0px #6a44d7, 15px -15px 0px rgba(255, 230, 0, 0.8);
}

/* GALLERY SECTION WITH DUAL CHANNELS */
.gallery-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    background: transparent !important;
}

.section-title-wrap {
    text-align: left;
    margin-bottom: 40px;
    padding: 0 8%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-title-wrap h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    transform: skewX(-5deg);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.carousel-track {
    display: flex;
    width: calc(240px * 16); 
}

.carousel-track img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    margin: 0 15px;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-track img:hover {
    border-color: #FFE600;
    transform: scale(1.05) rotate(-1deg);
}

/* DIFFERENTIATED SPEED DIRECTION PROTOCOLS */
.track-forward {
    animation: scrollLeft 30s linear infinite;
}

.track-reverse {
    animation: scrollRight 30s linear infinite;
}

/* MARQUEE LOOP KEYFRAMES */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } 
}

/* LORE / THE VISION SECTION */
.lore-section {
    padding: 100px 8%;
    position: relative;
    background: transparent;
}

.lore-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lore-main-story h3 {
    font-size: 2rem;
    color: #FFE600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.lore-main-story p {
    color: #b3aebd;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lore-main-story p strong {
    color: #ffffff;
}

.lore-side-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lore-card {
    background: #110e16;
    border: 1px solid #1e1926;
    padding: 30px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.lore-card h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 1px;
    border-left: 3px solid #6a44d7;
    padding-left: 10px;
    text-transform: uppercase;
}

.lore-card p {
    color: #b3aebd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.emphasis-card {
    border: 1px solid #6a44d7;
    box-shadow: 0 0 15px rgba(106, 68, 215, 0.15);
}

.emphasis-card h4 {
    border-left-color: #FFE600;
}

.lore-card blockquote {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #FFE600;
    font-size: 1.1rem;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WHITELIST APPLICATION STYLES */
.whitelist-section {
    padding: 100px 8%;
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(255, 230, 0, 0.03), transparent 50%) !important;
}

.whitelist-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wl-form {
    background: #110e16;
    border: 1px solid #1e1926;
    padding: 40px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFE600;
    letter-spacing: 2px;
}

.form-group input, 
.form-group textarea {
    background: #08060b;
    border: 1px solid #2d253a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #6a44d7;
    box-shadow: 0 0 12px rgba(106, 68, 215, 0.3);
}

/* CYBER SUBMIT BUTTON MECHANICS */
.btn-wl-submit {
    width: 100%;
    margin-top: 10px;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: #FFE600;
    padding: 2px;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    filter: drop-shadow(0 4px 15px rgba(255, 230, 0, 0.2));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-wl-submit span {
    display: block;
    background: #FFE600;
    color: #08060b;
    padding: 16px 0;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.btn-wl-submit:hover {
    transform: scale(1.02) skewX(-1deg);
    filter: drop-shadow(0 0 25px rgba(255, 230, 0, 0.6));
}

/* ROADMAP SECTION */
.roadmap-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8%;
    background: radial-gradient(circle at 50% 50%, rgba(106, 68, 215, 0.08), transparent 60%) !important;
    position: relative;
}

.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.roadmap-card {
    background: #110e16;
    padding: 50px 35px;
    border: 2px solid #1e1926;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.roadmap-card:hover {
    border-color: #6a44d7;
    transform: translateY(-5px);
}

.phase-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(106, 68, 215, 0.15);
    position: absolute;
    top: -10px;
    right: 15px;
}

.roadmap-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFE600;
    display: inline-block;
    padding-bottom: 5px;
}

.roadmap-card p {
    color: #b3aebd;
    font-size: 1rem;
    line-height: 1.6;
}

/* FOOTER STYLES */
.blitz-footer {
    padding: 40px 8%;
    background-color: #050407; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-copyright {
    color: #5c5764;
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.footer-socials a {
    color: #b3aebd;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-left: 30px;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #FFE600;
    text-shadow: 0 0 8px rgba(255, 230, 0, 0.5);
}

/* CANVAS DRAW PLANE */
#speed-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none; 
    background-color: transparent; 
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
    .dot-nav { display: none; }
    .bg-watermark, .bg-watermark-left { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { max-width: 100%; }
    .hero-image-wrap { display: flex; justify-content: center; }
    .hero-btn-group { justify-content: center; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-pfp {
        max-width: 320px;
        margin-top: 40px;
        box-shadow: -8px 8px 0px #6a44d7, 8px -8px 0px rgba(255, 230, 0, 0.8);
    }
    .lore-container { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- SMALL TABLET (≤768px) ---- */
@media (max-width: 768px) {
    .global-nav-bar { padding: 0 5%; }
    .global-nav-bar .stats-ticker { gap: 15px; }
    .ticker-item { font-size: 0.8rem; }
    .ticker-item:nth-child(3),
    .ticker-item:nth-child(4) { display: none; }

    .section-title-wrap h2 { font-size: 2.5rem; }
    .lore-section { padding: 70px 6%; }
    .whitelist-section { padding: 70px 6%; }
    .wl-form { padding: 30px 25px; }
    .roadmap-section { padding: 70px 6%; }

    .footer-content { flex-direction: column-reverse; gap: 20px; text-align: center; }
    .footer-socials a { margin: 0 15px; }
}

/* ---- MOBILE (≤480px) ---- */
@media (max-width: 480px) {
    body { padding-top: 60px; }

    /* Nav — show brand + Supply + Mint Price only */
    .global-nav-bar { height: 60px; padding: 0 4%; }
    .nav-brand { display: block; font-size: 1.1rem; }
    .global-nav-bar .stats-ticker { gap: 10px; }
    .ticker-item { font-size: 0.7rem; }
    .ticker-item:nth-child(1),
    .ticker-item:nth-child(2) { display: flex; }
    .ticker-item:nth-child(3),
    .ticker-item:nth-child(4) { display: none; }

    /* Hero */
    .hero { padding: 30px 5% 60px; min-height: auto; }
    .hero-tagline { font-size: 0.75rem; letter-spacing: 2px; }
    .hero-content h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-content p { font-size: 1rem; margin-bottom: 28px; }
    .hero-pfp {
        max-width: 250px;
        box-shadow: -5px 5px 0px #6a44d7, 5px -5px 0px rgba(255, 230, 0, 0.8);
    }
    .hero-btn-group { flex-direction: column; align-items: center; gap: 12px; }
    .btn-connect, .btn-discord { width: 100%; max-width: 280px; text-align: center; }

    /* Sections */
    .section-title-wrap { padding: 0 5%; }
    .section-title-wrap h2 { font-size: 1.9rem; }

    /* Gallery */
    .gallery-section { padding: 60px 0; }
    .carousel-track img { width: 150px; height: 150px; margin: 0 8px; }
    .carousel-track { width: calc(166px * 16); }

    /* Lore */
    .lore-section { padding: 60px 5%; }
    .lore-main-story h3 { font-size: 1.3rem; }
    .lore-card { padding: 20px; }

    /* Whitelist form */
    .whitelist-section { padding: 60px 5%; }
    .wl-form { padding: 22px 16px; }
    .form-group input,
    .form-group textarea { font-size: 0.95rem; padding: 12px 14px; }
    .btn-wl-submit span { font-size: 0.85rem; letter-spacing: 1px; padding: 14px 0; }

    /* Roadmap */
    .roadmap-section { padding: 60px 5%; min-height: auto; }
    .roadmap-container { grid-template-columns: 1fr; }
    .roadmap-card { padding: 35px 22px; }

    /* Footer */
    .blitz-footer { padding: 30px 5%; }
    .footer-socials a { font-size: 0.75rem; margin: 0 10px; }
}