/* ============================================
   SODL - Styles with Animations
   ============================================ */

:root {
    --red: #ff4444;
    --red-dark: #cc0000;
    --green: #00ff88;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text: #ffffff;
    --text-muted: #888899;
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Glitch Effect
   ============================================ */

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.3;
}

.glitch {
    position: relative;
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

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

.glitch::before {
    color: var(--red);
    animation: glitch-effect 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-2px, 0);
}

.glitch::after {
    color: var(--green);
    animation: glitch-effect 2s infinite linear alternate-reverse, toxicBoil 1s ease-in-out infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(2px, 0);
    text-shadow: 
        0 0 5px var(--green),
        0 0 10px rgba(0, 255, 136, 0.6);
    filter: url(#boiling-filter);
}

/* Toxic boiling animation */
@keyframes toxicBoil {
    0%, 100% { 
        transform: translate(2px, 0);
        filter: url(#boiling-filter) brightness(1);
    }
    25% { 
        transform: translate(1px, -1px);
        filter: url(#boiling-filter) brightness(1.1);
    }
    50% { 
        transform: translate(3px, 0);
        filter: url(#boiling-filter) brightness(1.15);
    }
    75% { 
        transform: translate(1px, 1px);
        filter: url(#boiling-filter) brightness(1.05);
    }
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

/* ============================================
   Toxic Boiling Effect
   ============================================ */

.toxic-container {
    position: relative;
    display: inline-block;
}

.bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.9), rgba(0, 255, 136, 0.4));
    border-radius: 50%;
    animation: bubbleRise 2s ease-out infinite;
    box-shadow: 
        0 0 3px var(--green),
        0 0 6px rgba(0, 255, 136, 0.4);
    z-index: 100;
}

.bubble:nth-child(1) { left: 10%; width: 6px; height: 6px; animation-delay: 0s; animation-duration: 2.2s; }
.bubble:nth-child(2) { left: 22%; width: 5px; height: 5px; animation-delay: 0.3s; animation-duration: 1.8s; }
.bubble:nth-child(3) { left: 35%; width: 8px; height: 8px; animation-delay: 0.5s; animation-duration: 2s; }
.bubble:nth-child(4) { left: 48%; width: 4px; height: 4px; animation-delay: 0.7s; animation-duration: 1.9s; }
.bubble:nth-child(5) { left: 60%; width: 7px; height: 7px; animation-delay: 0.2s; animation-duration: 2.1s; }
.bubble:nth-child(6) { left: 73%; width: 5px; height: 5px; animation-delay: 0.4s; animation-duration: 1.7s; }
.bubble:nth-child(7) { left: 85%; width: 6px; height: 6px; animation-delay: 0.8s; animation-duration: 2.3s; }
.bubble:nth-child(8) { left: 28%; width: 4px; height: 4px; animation-delay: 1s; animation-duration: 1.6s; }
.bubble:nth-child(9) { left: 55%; width: 6px; height: 6px; animation-delay: 0.6s; animation-duration: 1.8s; }
.bubble:nth-child(10) { left: 80%; width: 5px; height: 5px; animation-delay: 0.9s; animation-duration: 2s; }

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
        transform: translateY(-8px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1) translateX(3px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-50px) scale(0.6) translateX(-2px);
        opacity: 0;
    }
}

/* Toxic glow pulse on the whole container - subtle */
.toxic-container {
    animation: toxicPulse 2s ease-in-out infinite;
}

@keyframes toxicPulse {
    0%, 100% {
        filter: drop-shadow(0 5px 10px rgba(0, 255, 136, 0.15));
    }
    50% {
        filter: drop-shadow(0 8px 15px rgba(0, 255, 136, 0.25));
    }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-0.5deg); }
    20% { transform: skew(0.5deg); }
    30% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* ============================================
   NEW PREMIUM HERO
   ============================================ */

.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-video .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(255, 68, 68, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10, 10, 15, 0.3), rgba(10, 10, 15, 0.95));
}

/* Animated grid */
.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating particles */
.hero-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 68, 68, 0.5), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(3px 3px at 50% 10%, rgba(255, 68, 68, 0.6), transparent),
        radial-gradient(2px 2px at 70% 80%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(2px 2px at 90% 30%, rgba(255, 68, 68, 0.5), transparent),
        radial-gradient(3px 3px at 20% 90%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 68, 68, 0.5), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%; opacity: 0.8; }
    25% { background-position: 100% 50%; opacity: 1; }
    50% { background-position: 50% 100%; opacity: 0.6; }
    75% { background-position: 0% 50%; opacity: 1; }
}

.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-logo-big {
    margin-bottom: 1.5rem;
}

.hero-logo-big img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 68, 68, 0.5));
}

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

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 68, 68, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 68, 68, 0.8)) drop-shadow(0 0 80px rgba(255, 68, 68, 0.4)); }
}

.hero-title-big {
    font-family: var(--font-mono);
    font-size: 7rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 
        0 0 60px rgba(255, 68, 68, 0.6),
        0 0 120px rgba(255, 68, 68, 0.4),
        0 0 180px rgba(255, 68, 68, 0.2);
    margin-bottom: 0.5rem;
    letter-spacing: -3px;
    line-height: 1;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(255, 68, 68, 0.7), 0 0 60px rgba(255, 68, 68, 0.3); }
}

.contract-box-center {
    background: rgba(18, 18, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
    min-width: 350px;
}

/* Glitch Loading Bar for CA */
.ca-generating {
    text-align: center;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 68, 68, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--red), #ff6666, var(--red));
    background-size: 200% 100%;
    border-radius: 4px;
    animation: loadingProgress 3s ease-in-out infinite, loadingGlow 1s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    30% { width: 45%; }
    50% { width: 50%; }
    70% { width: 75%; }
    85% { width: 85%; }
    100% { width: 0%; }
}

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

.loading-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    animation: glitchText 4s infinite;
}

.loading-error {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--red);
    margin-top: 0.5rem;
    min-height: 1.2rem;
    animation: errorBlink 0.5s ease-in-out;
}

@keyframes glitchText {
    0%, 90%, 100% { opacity: 1; transform: translateX(0); }
    92% { opacity: 0.8; transform: translateX(-2px); }
    94% { opacity: 1; transform: translateX(2px); }
    96% { opacity: 0.6; transform: translateX(-1px); }
}

@keyframes errorBlink {
    0%, 50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInGlitch {
    0% { opacity: 0; transform: translateX(-10px); }
    30% { opacity: 0.5; transform: translateX(5px); }
    60% { opacity: 0.8; transform: translateX(-3px); }
    100% { opacity: 1; transform: translateX(0); }
}

.scroll-indicator {
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   Video Strip Section
   ============================================ */

.video-strip {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    padding: 2rem 0;
    overflow: visible;
    margin-top: -2rem;
    position: relative;
    z-index: 20;
}

.video-strip-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.video-strip-inner {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.video-strip-inner::-webkit-scrollbar {
    display: none;
}

.strip-video {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.strip-video:hover {
    border-color: var(--red);
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 68, 68, 0.4);
}

.strip-video video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
}

.nav-logo .logo-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-socials {
    display: flex;
    gap: 1rem;
}

.nav-socials a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}

.nav-socials a:hover {
    color: var(--red);
    transform: scale(1.1);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 68, 68, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 68, 68, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 40%);
    z-index: -1;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 68, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 68, 68, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 68, 68, 0.3), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 68, 68, 0.5), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(255, 68, 68, 0.3), transparent),
        radial-gradient(3px 3px at 10% 80%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 68, 68, 0.3), transparent),
        radial-gradient(2px 2px at 50% 90%, rgba(255, 68, 68, 0.4), transparent),
        radial-gradient(3px 3px at 70% 10%, rgba(255, 68, 68, 0.5), transparent);
    background-size: 200% 200%;
    animation: particleFloat 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1.5rem;
    animation: pulse-border 2s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
}

.hero-title {
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 
        0 0 60px rgba(255, 68, 68, 0.5),
        0 0 120px rgba(255, 68, 68, 0.3),
        0 0 180px rgba(255, 68, 68, 0.1);
    margin-bottom: 1rem;
    letter-spacing: -4px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 60px rgba(255, 68, 68, 0.5),
            0 0 120px rgba(255, 68, 68, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 80px rgba(255, 68, 68, 0.7),
            0 0 160px rgba(255, 68, 68, 0.5),
            0 0 200px rgba(255, 68, 68, 0.3);
    }
}

.typing-container {
    display: flex;
    align-items: center;
    min-height: 2rem;
    margin-bottom: 1rem;
}

.typing-text {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cursor {
    animation: blink 1s infinite;
    color: var(--red);
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 68, 68, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.contract-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    max-width: 450px;
}

.ca-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ca-value-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.ca-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--red);
    word-break: break-all;
}

.copy-tooltip {
    position: absolute;
    right: 0;
    background: var(--green);
    color: var(--bg-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-tooltip.show {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.hero-image img {
    max-width: 700px;
    width: 100%;
    animation: float 4s ease-in-out infinite, logoRotate 20s linear infinite;
    filter: 
        drop-shadow(0 0 60px rgba(255, 68, 68, 0.5))
        blur(1px);
}

@keyframes logoRotate {
    0% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    100% { transform: rotate(-2deg); }
}

/* Logo showcase - visible version */
.hero-logo-showcase {
    margin-bottom: 2rem;
}

.hero-logo-showcase img {
    max-width: 280px;
    width: 100%;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 68, 68, 0.5));
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   Counter Section
   ============================================ */

.counter-section {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    padding: 2rem 0;
}

.counter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.counter-item {
    text-align: center;
}

.counter-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--red);
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
    animation: counterPulse 2s ease-in-out infinite;
}

.counter-value.odometer {
    animation: counterPulse 2s ease-in-out infinite, odometerGlow 3s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes odometerGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 68, 68, 0.5); }
    50% { text-shadow: 0 0 50px rgba(255, 68, 68, 0.8), 0 0 80px rgba(255, 68, 68, 0.4); }
}

.pulse-divider {
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; background: var(--red); }
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.counter-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 6rem 2rem;
}

.section-dark {
    background: var(--bg-card);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.highlight-red {
    color: var(--red);
}

.highlight-green {
    color: var(--green);
}

/* ============================================
   Story Section
   ============================================ */

.story-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

.hodl-card {
    border-color: rgba(0, 255, 136, 0.3);
}

.hodl-card:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.sodl-card {
    border-color: rgba(255, 68, 68, 0.3);
}

.sodl-card:hover {
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2);
}

.story-year {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.story-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-result {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-result.positive {
    background: rgba(0, 255, 136, 0.1);
    color: var(--green);
}

.story-result.negative {
    background: rgba(255, 68, 68, 0.1);
    color: var(--red);
}

.story-vs {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Origin Quote */
.origin-quote {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.origin-quote p {
    margin: 0.5rem 0;
}

.origin-quote strong {
    font-size: 2.2rem;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
}

/* Comparison Box */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-item {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-item:nth-child(odd) {
    text-align: right;
    padding-right: 1rem;
}

.compare-item:nth-child(even) {
    text-align: left;
    padding-left: 1rem;
}

@media (max-width: 600px) {
    .comparison-box {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .compare-item:nth-child(odd),
    .compare-item:nth-child(even) {
        text-align: center;
        padding: 0.5rem;
    }
    
    .origin-quote {
        font-size: 1.4rem;
    }
}

.confession-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(255, 68, 68, 0.05));
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.confession-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 68, 68, 0.1);
    font-family: Georgia, serif;
}

.confession-box h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.confession-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.confession-signature {
    color: var(--red);
    font-weight: 600;
}

/* ============================================
   Features Grid
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--red);
    background: rgba(255, 68, 68, 0.05);
    transform: translateY(-5px);
}

/* Hover Tilt Effect */
.hover-tilt {
    transition: all 0.3s ease;
}

.hover-tilt:hover {
    transform: translateY(-8px) rotate(1deg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Sparkle Animation */
.feature-icon.sparkle {
    animation: sparkle 5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 90%, 100% { filter: brightness(1); transform: scale(1); }
    95% { filter: brightness(1.5); transform: scale(1.1); }
}

.feature-card em {
    color: var(--red);
    font-style: normal;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Steps Grid
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: var(--font-mono);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-card em {
    color: var(--text-muted);
    font-style: italic;
}

.step-card strong {
    color: var(--red);
}

.step-card.hover-tilt:hover {
    transform: translateY(-8px) rotate(-1deg);
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.buy-cta {
    text-align: center;
}

/* ============================================
   Meme Gallery
   ============================================ */

.memes-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 68, 68, 0.03) 50%, var(--bg-dark) 100%);
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.meme-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.meme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 68, 68, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--red);
    box-shadow: 
        0 20px 60px rgba(255, 68, 68, 0.3),
        0 0 40px rgba(255, 68, 68, 0.1);
}

.meme-card:hover::before {
    opacity: 1;
}

.meme-card img,
.meme-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.meme-card:hover img,
.meme-card:hover video {
    transform: scale(1.05);
}

.meme-card-caption {
    padding: 1.2rem;
    text-align: center;
    font-size: 1rem;
    color: var(--text);
    background: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.meme-placeholder {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 2px dashed rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.meme-placeholder span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.meme-placeholder p {
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Responsive - MOBILE OPTIMIZED
   ============================================ */

/* Tablet */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding: 7rem 2rem 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contract-box {
        margin: 0 auto;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-vs {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .counter-divider {
        width: 60px;
        height: 1px;
    }
    
    .features-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meme-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-socials a svg {
        width: 18px;
        height: 18px;
    }
    
    /* Hero Section */
    .hero-new {
        min-height: auto;
        padding: 80px 1rem 2rem;
    }
    
    .hero-center {
        padding: 0 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-logo-big {
        width: 120px;
        height: 120px;
        margin-bottom: 0.5rem;
    }
    
    .hero-logo-big img {
        width: 100%;
        height: 100%;
    }
    
    .hero-title-big {
        font-size: 2.2rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    /* Disable glitch effect on mobile - cleaner look */
    .hero-title-big.glitch::before,
    .hero-title-big.glitch::after {
        display: none;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        opacity: 0.9;
    }
    
    .typing-container {
        font-size: 0.8rem;
        min-height: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons-center {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        width: auto;
    }
    
    .hero-buttons-center .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
        width: auto !important;
        min-width: auto;
        max-width: fit-content;
    }
    
    .contract-box-center {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .ca-label {
        font-size: 0.65rem;
    }
    
    .loading-text,
    .loading-error {
        font-size: 0.75rem;
    }
    
    .ca-value {
        font-size: 0.55rem;
        word-break: break-all;
    }
    
    .scroll-indicator {
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }
    
    /* Video Strip */
    .video-strip {
        padding: 0.75rem 0;
    }
    
    .video-strip-inner {
        gap: 0.75rem;
    }
    
    .strip-video {
        width: 150px;
        height: 100px;
        border-radius: 8px;
    }
    
    /* Counter Section - FIXED */
    .counter-section {
        padding: 2rem 1rem;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .counter-value {
        font-size: 2rem !important;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .counter-divider {
        width: 50px;
        height: 2px;
    }
    
    /* Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    /* Story Section */
    .origin-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .origin-quote p:last-child {
        font-size: 1.3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-year {
        font-size: 0.7rem;
    }
    
    .story-heading {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .story-result {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
    
    .story-vs {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
        margin: 0.5rem auto;
    }
    
    /* Comparison Box */
    .comparison-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .compare-item {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    /* Confession Box */
    .confession-box {
        padding: 1.5rem;
    }
    
    .confession-box h3 {
        font-size: 1.1rem;
    }
    
    .confession-text {
        font-size: 0.9rem;
    }
    
    /* Features Grid */
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card,
    .step-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3,
    .step-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .step-card p {
        font-size: 0.85rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Meme Gallery */
    .meme-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meme-card {
        border-radius: 12px;
    }
    
    .meme-card video {
        height: 200px;
    }
    
    .meme-card-caption {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    /* Buy CTA */
    .buy-cta {
        margin-top: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .footer-copy {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .hero-title-big {
        font-size: 2.5rem !important;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-buttons-center {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .hero-buttons-center .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .counter-value {
        font-size: 1.75rem !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .story-heading {
        font-size: 1.1rem;
    }
}

