/* ====================================
   REEL24.LIVE - CSS STYLES
   Premium Discipline With Controlled Chaos
   ==================================== */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #39FF14;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --dark-green: #1A2E1A;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Ultra smooth scrolling */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    cursor: url('fish.png'), auto;
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--black);
}

/* CONTAINER UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('banner_24.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { background-size: 100%; }
    100% { background-size: 105%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.6));
    z-index: 1;
}

/* Fishing Line Animation */
.fishing-line {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--neon-green));
    opacity: 0.4;
    animation: fishingLineDrop 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes fishingLineDrop {
    0%, 100% { top: -100px; opacity: 0; }
    50% { top: 40%; opacity: 0.4; }
}

/* Floating Hook Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.float-hook {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.float-hook:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.float-hook:nth-child(2) {
    left: 70%;
    top: 60%;
    animation-delay: 5s;
}

.float-hook:nth-child(3) {
    left: 85%;
    top: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.5;
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--neon-green);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.hero-subtext {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--neon-green);
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 4px solid var(--black);
    box-shadow: 0 8px 0 var(--black);
    transition: all 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--neon-green), 0 10px 0 var(--black);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--black);
}

/* ====================================
   MANIFESTO SECTION
   ==================================== */
.manifesto-section {
    background: var(--white);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.manifesto-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 46, 26, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Visual Side */
.manifesto-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.fishing-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(57, 255, 20, 0.2);
    border-radius: 50%;
    animation: rotateCircle 20s linear infinite;
}

.circle-middle {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 3px solid rgba(57, 255, 20, 0.4);
    border-radius: 50%;
    animation: rotateCircle 15s linear infinite reverse;
}

.circle-inner {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.big-emoji {
    font-size: 80px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitPulse 2s ease-in-out infinite;
}

.orbit-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitPulse 2s ease-in-out infinite 0.7s;
}

.orbit-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: orbitPulse 2s ease-in-out infinite 1.4s;
}

@keyframes orbitPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.live-badge-big {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--black);
    border-radius: 50px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.live-dot-big {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.live-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

/* Right Content Side */
.manifesto-content {
    text-align: left;
}

.manifesto-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.manifesto-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--neon-green);
    animation: titleUnderline 1.5s ease-out forwards;
}

@keyframes titleUnderline {
    to { width: 100%; }
}

.manifesto-divider {
    width: 80px;
    height: 4px;
    background: var(--neon-green);
    margin-bottom: 40px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

.manifesto-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.manifesto-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--neon-green);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInSlide 0.8s ease-out forwards;
}

.manifesto-item:nth-child(1) { animation-delay: 0.2s; }
.manifesto-item:nth-child(2) { animation-delay: 0.4s; }
.manifesto-item:nth-child(3) { animation-delay: 0.6s; }
.manifesto-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.manifesto-item:hover {
    background: rgba(57, 255, 20, 0.08);
    transform: translateX(8px);
    transition: all 0.3s ease;
}

.item-icon {
    font-size: 36px;
    flex-shrink: 0;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.item-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    position: relative;
}

.item-content h3::before {
    content: '//';
    position: absolute;
    left: -20px;
    color: var(--neon-green);
    font-weight: 900;
    opacity: 0;
    animation: slashAppear 0.5s ease-out 1s forwards;
}

@keyframes slashAppear {
    to { opacity: 1; }
}

.item-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.85);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.manifesto-quote {
    position: relative;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--black), var(--dark-green));
    border-radius: 12px;
    margin-top: 40px;
    overflow: hidden;
}

.manifesto-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.manifesto-quote p {
    font-size: 28px;
    font-weight: 900;
    color: var(--neon-green);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: 'Impact', 'Arial Black', sans-serif;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.quote-mark {
    font-size: 80px;
    color: rgba(57, 255, 20, 0.2);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ====================================
   STATS SECTION
   ==================================== */
/* ===== STATS SECTION - DIGITAL TIMER THEME ===== */
.stats-section {
    background: #000000;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.stats-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.1;
}

.stats-scanline {
    display: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.live-pulse-indicator {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.pulse-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    opacity: 0.3;
}

.pulse-dot {
    display: block;
    width: 16px;
    height: 16px;
    background: var(--neon-green);
    border-radius: 50%;
    margin: 7px;
    box-shadow: 0 0 10px var(--neon-green);
}

.stats-title-main {
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.stats-subtitle-main {
    font-size: 14px;
    font-weight: 600;
    color: rgba(57, 255, 20, 0.7);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Digital Timer Display */
.digital-timer-container {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.timer-number {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 96px;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    line-height: 1;
    min-width: 140px;
    text-align: center;
    letter-spacing: 0.05em;
}

.timer-label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(57, 255, 20, 0.8);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.timer-separator {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 80px;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
    margin-top: -20px;
    opacity: 0.7;
}

/* Status Bar */
.stats-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.status-bar-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.5), transparent);
}

.status-text {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
}

.status-blink {
    color: var(--neon-green);
}

.status-highlight {
    color: var(--neon-green);
    font-weight: 900;
}

/* ====================================
   REEL 24 CLIP SECTION
   ==================================== */
.clips-section {
    background: var(--black);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.clips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(57, 255, 20, 0.03) 2px,
            rgba(57, 255, 20, 0.03) 4px
        );
    pointer-events: none;
}

.clips-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    color: var(--neon-green);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 30px var(--neon-green);
    position: relative;
    z-index: 1;
}

.clips-subtitle {
    text-align: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.clip-card {
    background: rgba(26, 46, 26, 0.3);
    border: 2px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.clip-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.4);
}

.clip-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.clip-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clip-card:hover .clip-thumbnail img {
    transform: scale(1.1);
}

.clip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clip-card:hover .clip-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
    border: 3px solid var(--black);
    box-shadow: 0 0 20px var(--neon-green);
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.clip-info {
    padding: 20px;
}

.clip-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.clip-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.clips-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.load-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    color: var(--black);
    box-shadow: 0 0 20px var(--neon-green);
}

/* ====================================
   PROGRESS SECTION
   ==================================== */
.progress-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-green) 100%);
    padding: 100px 40px;
    text-align: center;
}

.progress-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

.progress-bar-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 30px;
    border-radius: 40px;
    overflow: visible;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), #2ECC40);
    box-shadow: 0 0 20px var(--neon-green);
    width: 15%;
    transition: width 1s ease;
    border-radius: 40px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-fish {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    padding: 10px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.05));
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    animation: swim 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.6));
    transition: left 1s ease;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), inset 0 0 10px rgba(57, 255, 20, 0.1);
}

@keyframes swim {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -60%) rotate(-10deg); }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.current-mc {
    color: var(--neon-green);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.target-mc {
    color: var(--white);
}

.progress-tagline {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 50px;
}

/* DexScreener Buttons */
.dex-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.dex-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dex-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transition: left 0.3s ease;
    z-index: 0;
}

.dex-btn:hover::before {
    left: 0;
}

.dex-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.4);
}

.dex-icon {
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.dex-btn:hover .dex-icon {
    transform: scale(1.2);
}

.dex-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.dex-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.dex-btn:hover .dex-text strong {
    color: var(--black);
}

.dex-text small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.dex-btn:hover .dex-text small {
    color: rgba(10, 10, 10, 0.8);
}

.target-mc {
    color: var(--white);
}

.progress-tagline {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ====================================
   LIVE STREAM SECTION
   ==================================== */
.live-section {
    background: var(--black);
    padding: 100px 40px;
    text-align: center;
}

.live-section .section-title-small {
    color: var(--white);
}

.stream-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
    aspect-ratio: 16 / 9;
}

.live-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 10;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.live-dot-red {
    width: 8px;
    height: 8px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.stream-embed {
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-green);
}

.stream-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.stream-caption {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.kick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #53FC18, #00D450);
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: 3px solid var(--black);
    box-shadow: 0 8px 0 var(--black);
    transition: all 0.3s ease;
}

.kick-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.6), 0 11px 0 var(--black);
}

.kick-link-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 var(--black);
}

.kick-icon {
    font-size: 24px;
}

/* ====================================
   CONNECT SECTION
   ==================================== */
.connect-section {
    background: var(--white);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.connect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(57, 255, 20, 0.02) 50px,
            rgba(57, 255, 20, 0.02) 100px
        );
    pointer-events: none;
}

.connect-title {
    text-align: center;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.connect-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-card {
    position: relative;
    padding: 35px 30px;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.card-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.social-card.tiktok .card-bg {
    background: linear-gradient(135deg, #000000, #EE1D52);
}

.social-card.twitter .card-bg {
    background: linear-gradient(135deg, #000000, #1DA1F2);
}

.social-card.telegram .card-bg {
    background: linear-gradient(135deg, #0088cc, #37b3e8);
}

.social-card.kick .card-bg {
    background: linear-gradient(135deg, #53FC18, #00D450);
}

.social-card.twitch .card-bg {
    background: linear-gradient(135deg, #6441a5, #9147ff);
}

.social-card.website .card-bg {
    background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
}

.social-card:hover .card-bg {
    left: 0;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-green);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.card-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.social-card:hover .card-icon,
.social-card:hover .card-icon-img {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

.card-platform {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-card:hover .card-platform {
    color: var(--white);
}

.card-handle {
    font-size: 14px;
    color: rgba(10, 10, 10, 0.7);
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-card:hover .card-handle {
    color: rgba(255, 255, 255, 0.9);
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--neon-green);
    font-weight: 700;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--white);
}

/* Special hover effects for specific platforms */
.social-card.tiktok:hover {
    animation: tiktokShake 0.5s ease;
}

@keyframes tiktokShake {
    0%, 100% { transform: translateY(-10px) scale(1.03) rotate(0deg); }
    25% { transform: translateY(-10px) scale(1.03) rotate(-2deg); }
    75% { transform: translateY(-10px) scale(1.03) rotate(2deg); }
}

.social-card.twitch:hover {
    animation: twitchPulse 0.6s ease;
}

@keyframes twitchPulse {
    0%, 100% { transform: translateY(-10px) scale(1.03); }
    50% { transform: translateY(-10px) scale(1.08); }
}

/* ====================================
   GALLERY SECTION
   ==================================== */
.gallery-section {
    background: linear-gradient(180deg, var(--dark-green), var(--black));
    padding: 80px 0;
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--neon-green);
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px;
    scroll-behavior: smooth;
}

.gallery-scroll::-webkit-scrollbar {
    height: 4px;
}

.gallery-item {
    position: relative;
    min-width: 300px;
    height: 300px;
    border: 3px solid var(--neon-green);
    flex-shrink: 0;
    transition: transform 0.3s;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.download-btn {
    padding: 12px 30px;
    background: var(--neon-green);
    color: var(--black);
    border: 3px solid var(--black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-green);
}

.download-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-green);
}

/* ====================================
   FINAL CTA SECTION
   ==================================== */
.final-cta-section {
    background: var(--neon-green);
    padding: 100px 40px;
    text-align: center;
}

.final-cta-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.cta-button-outline {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 4px solid var(--black);
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: var(--black);
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(10, 10, 10, 0.5);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--black);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, var(--dark-green), var(--black));
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(57, 255, 20, 0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.5));
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-green);
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px var(--neon-green);
    margin: 0;
}

.footer-tagline {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.footer-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--neon-green);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-stats {
    display: flex;
    gap: 40px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0;
}

.footer-made {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 11px !important;
}

/* ====================================
   RESPONSIVE MOBILE LAYOUT
   ==================================== */
@media (max-width: 768px) {
    .container, .container-narrow {
        padding: 0 20px;
    }

    /* Header */
    .header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 12px;
    }

    /* Hero */
    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }

    /* Sections */
    .manifesto-section,
    .progress-section,
    .live-section,
    .connect-section,
    .clips-section,
    .stats-section {
        padding: 60px 20px;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 20px;
    }

    .stats-title-main {
        font-size: 32px;
        letter-spacing: 0.1em;
    }

    .stats-subtitle-main {
        font-size: 11px;
    }

    .timer-display {
        gap: 15px;
        padding: 40px 20px;
        flex-wrap: wrap;
    }

    .timer-number {
        font-size: 64px;
        min-width: 100px;
    }

    .timer-separator {
        font-size: 56px;
        display: none;
    }

    .timer-separator:nth-child(4) {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .timer-label {
        font-size: 9px;
    }

    .status-text {
        font-size: 9px;
    }

    .status-bar-line {
        display: none;
    }

    /* Manifesto Section Mobile */
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fishing-circle {
        width: 220px;
        height: 220px;
    }

    .circle-inner {
        width: 140px;
        height: 140px;
    }

    .big-emoji {
        font-size: 60px;
    }

    .manifesto-title {
        font-size: 32px;
        text-align: center;
    }

    .manifesto-divider {
        margin: 0 auto 30px;
    }

    .manifesto-content {
        text-align: center;
    }

    .manifesto-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .item-icon {
        font-size: 40px;
    }

    .manifesto-quote p {
        font-size: 18px;
    }

    .quote-mark {
        font-size: 40px;
    }

    /* Progress Section Mobile */
    .progress-fish {
        font-size: 18px;
    }

    .dex-links {
        flex-direction: column;
        align-items: center;
    }

    .dex-btn {
        width: 100%;
        max-width: 300px;
        padding: 18px 25px;
    }

    .dex-icon {
        font-size: 28px;
    }

    .dex-text strong {
        font-size: 16px;
    }

    /* Connect Section Mobile */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-card {
        padding: 30px 25px;
    }

    .card-icon {
        font-size: 40px;
    }

    .card-platform {
        font-size: 20px;
    }

    /* Clips Section */
    .clips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clip-card {
        max-width: 100%;
    }

    .clips-title {
        font-size: 32px;
    }

    .clips-subtitle {
        font-size: 14px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .load-more-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    /* Progress */
    .progress-title {
        font-size: 28px;
    }

    .progress-stats {
        font-size: 18px;
    }

    /* Social Links */
    .social-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 20px;
    }

    .platform {
        font-size: 16px;
    }

    .handle {
        font-size: 12px;
    }

    /* Gallery */
    .gallery-scroll {
        padding: 20px;
    }

    .gallery-item {
        min-width: 250px;
        height: 250px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 60px 20px;
    }

    .final-cta-title {
        font-size: 36px;
    }

    .cta-button-outline {
        padding: 15px 40px;
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        padding: 60px 20px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-stats {
        justify-content: center;
        gap: 30px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
    }

    .stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .progress-title {
        font-size: 24px;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .gallery-item {
        min-width: 200px;
        height: 200px;
    }

    .footer-stats {
        flex-direction: column;
        gap: 20px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Stats Section Mobile */
    .stats-title-main {
        font-size: 24px;
    }

    .stats-subtitle-main {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .timer-display {
        padding: 30px 15px;
        gap: 10px;
    }

    .timer-number {
        font-size: 48px;
        min-width: 70px;
    }

    .timer-separator {
        font-size: 40px;
    }

    .timer-label {
        font-size: 8px;
    }

    .status-text {
        font-size: 7px;
        letter-spacing: 0.05em;
    }
}
