/* ====== CSS Variables ====== */
:root {
    --color-bg-dark: #0a0e17;
    --color-bg-card: #111827;
    --color-bg-card-hover: #1a2235;
    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-gold-dark: #d97706;
    --color-accent: #3b82f6;
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-border: #334155;
    --color-success: #22c55e;
    --color-ocean-dark: #0c1929;
    --color-ocean-medium: #1e3a5f;
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
    --gradient-ocean: linear-gradient(180deg, #0a0e17 0%, #0c1929 50%, #1e3a5f 100%);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ====== Reset & Base ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

main {
  padding-top: 80px; /* немного больше высоты header */
}

.page {
  padding-top: 80px; /* компенсируем фиксированный header */
  box-sizing: border-box;
}

/* ====== Custom Cursor ====== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* ====== Particles ====== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: rise linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ====== Container ====== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ====== Header ====== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 1.75rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--color-gold);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after {
    width: 80%;
}

.nav-item-cta {
    background: var(--gradient-gold);
    color: #000 !important;
    font-weight: 600;
    animation: pulse-btn 2s ease-in-out infinite;
}

.nav-item-cta:hover::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #111;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Класс, который показывает меню */
.nav-mobile.nav-mobile-open {
  display: flex;
}

/* ====== Hero Section ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        #0a0e17 0%, 
        #0c1929 30%, 
        #1e3a5f 60%,
        #0c1929 100%
    );
}

/* ====== Ocean Waves ====== */
.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    transform-origin: center bottom;
}

.wave1 {
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.8) 100%);
    animation: wave 8s linear infinite;
    z-index: 3;
    opacity: 0.8;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231e3a5f' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 50% 100%;
}

.wave2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230c1929' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,144C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 50% 100%;
    animation: wave 12s linear infinite reverse;
    z-index: 2;
    opacity: 0.6;
    bottom: 10px;
}

.wave3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230a0e17' d='M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,186.7C672,192,768,192,864,176C960,160,1056,128,1152,133.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 50% 100%;
    animation: wave 15s linear infinite;
    z-index: 1;
    opacity: 0.4;
    bottom: 20px;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== Wave Split Effect ====== */
.wave-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    pointer-events: none;
}

.wave-split-left,
.wave-split-right {
    width: 50%;
    height: 100%;
    transition: transform 0.8s ease;
}

.hero:hover .wave-split-left {
    transform: translateX(-30px) rotate(-2deg);
}

.hero:hover .wave-split-right {
    transform: translateX(30px) rotate(2deg);
}

/* ====== Floating Elements ====== */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    animation: floatComplex 10s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
}

.coin-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 4rem; }
.coin-2 { top: 25%; right: 12%; animation-delay: 2s; font-size: 3.5rem; }
.anchor { bottom: 35%; left: 5%; animation-delay: 1s; font-size: 5rem; }
.compass { top: 40%; right: 8%; animation-delay: 3s; font-size: 3rem; }
.chest { bottom: 40%; right: 15%; animation-delay: 4s; font-size: 4rem; }

.moon {
    position: absolute;
    top: 10%;
    right: 20%;
    font-size: 6rem;
    opacity: 0.3;
    filter: drop-shadow(0 0 50px rgba(255, 255, 200, 0.5));
    animation: moonGlow 5s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { filter: drop-shadow(0 0 50px rgba(255, 255, 200, 0.3)); }
    50% { filter: drop-shadow(0 0 80px rgba(255, 255, 200, 0.6)); }
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 5s ease-in-out infinite;
}

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

.ship-container {
    position: absolute;
    bottom: 25%;
    right: 10%;
    animation: shipSail 20s ease-in-out infinite;
}

.ship {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: shipRock 4s ease-in-out infinite;
}

.ship-wake {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: wake 2s ease-in-out infinite;
}

@keyframes shipSail {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
}

@keyframes shipRock {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes wake {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scaleX(1.5); opacity: 0.5; }
}

@keyframes floatComplex {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-30px) rotate(10deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-15px) rotate(-5deg) scale(1.05); 
    }
    75% { 
        transform: translateY(-40px) rotate(5deg) scale(1.1); 
    }
}

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

/* ====== Hero Content ====== */
.hero-content {
    position: relative;
    z-index: 10;
}

/* ====== Urgency Banner ====== */
.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    animation: urgencyPulse 2s ease-in-out infinite;
    flex-wrap: wrap;
    justify-content: center;
}

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

.fire-icon {
    animation: fireFlicker 0.5s ease-in-out infinite;
}

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

.countdown {
    display: flex;
    gap: 0.75rem;
}

.countdown-item {
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    min-width: 60px;
}

.countdown-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    font-family: 'Inter', monospace;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* ====== Badge ====== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-xl);
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    border-radius: var(--radius-xl);
    transform: translate(-50%, -50%) scale(0);
    animation: badgePulse 2s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes badgePulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.badge-icon {
    animation: rocketShake 0.5s ease-in-out infinite;
}

@keyframes rocketShake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ====== Hero Title ====== */
.hero-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(3rem, 12vw, 7rem);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-skull {
    font-size: 0.5em;
    filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.8));
}

.title-skull.delay {
    animation-delay: 1.5s;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.title-main {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-flex;
}

.title-main .letter {
    display: inline-block;
    animation: letterWave 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.title-main .letter:nth-child(1) { --i: 0; }
.title-main .letter:nth-child(2) { --i: 1; }
.title-main .letter:nth-child(3) { --i: 2; }
.title-main .letter:nth-child(4) { --i: 3; }
.title-main .letter:nth-child(5) { --i: 4; }
.title-main .letter:nth-child(6) { --i: 5; }
.title-main .letter:nth-child(7) { --i: 6; }
.title-main .letter:nth-child(8) { --i: 7; }
.title-main .letter:nth-child(9) { --i: 8; }

.letter.space {
    width: 0.3em;
}

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

/* ====== Hero Subtitle ====== */
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    min-height: 60px;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--color-gold);
}

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

/* ====== Hero Buttons ====== */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-ghost:hover {
    background: var(--color-gold);
    color: #000;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
}

/* ====== Hero Stats ====== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.stat-value.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
}

.stat-growth {
    font-size: 0.75rem;
    color: var(--color-success);
    margin-top: 0.5rem;
}

/* ====== Social Proof ====== */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 2px solid var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: -10px;
    animation: avatarPop 0.5s ease-out backwards;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(1) { animation-delay: 0.1s; }
.avatar:nth-child(2) { animation-delay: 0.2s; }
.avatar:nth-child(3) { animation-delay: 0.3s; }
.avatar:nth-child(4) { animation-delay: 0.4s; }
.avatar:nth-child(5) { animation-delay: 0.5s; }

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

@keyframes avatarPop {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.social-proof strong {
    color: var(--color-gold);
}

/* ====== Scroll Indicator ====== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ====== Waves Bottom ====== */
.waves-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.waves-bottom svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.waves-bottom svg:nth-child(1) { animation: waveMove 10s ease-in-out infinite; }
.waves-bottom svg:nth-child(2) { animation: waveMove 8s ease-in-out infinite reverse; }
.waves-bottom svg:nth-child(3) { animation: waveMove 12s ease-in-out infinite; }

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-2%); }
}

/* ====== Ticker ====== */
.ticker {
    background: var(--color-gold);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== About Section ====== */
.about-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, #0a0e17 0%, rgba(30, 58, 95, 0.3) 100%);
    position: relative;
}

.section-title {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--color-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-decor {
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

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

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

.about-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-card:hover .card-glow {
    opacity: 1;
}

.about-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.card-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

.about-card:hover .card-icon-ring {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.about-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-stats {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.card-stats span {
    color: var(--color-success);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.section-waves svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ====== Tokenomics Section ====== */
.tokenomics-section {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.chart-container {
    display: flex;
    justify-content: center;
}

.donut-chart {
    position: relative;
    width: 250px;
    height: 250px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 15;
}

.chart-segment {
    fill: none;
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: calc(var(--percent) * 2.51) 251;
    stroke-dashoffset: calc(-1 * var(--offset, 0) * 2.51);
    animation: chartDraw 2s ease-out forwards;
    opacity: 0;
}

.seg1 { stroke: var(--color-gold); animation-delay: 0.2s; }
.seg2 { stroke: var(--color-accent); animation-delay: 0.4s; }
.seg3 { stroke: var(--color-success); animation-delay: 0.6s; }

@keyframes chartDraw {
    from { 
        stroke-dasharray: 0 251;
        opacity: 1;
    }
    to {
        stroke-dasharray: calc(var(--percent) * 2.51) 251;
        opacity: 1;
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-total {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    display: block;
}

.chart-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.chart-legend {
    margin-top: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(10px);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--color-gold-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

/* ====== Roadmap Section ====== */
.roadmap-section {
    padding: 6rem 0;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}

.timeline-progress {
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-dark));
    animation: progressGrow 2s ease-out forwards;
    transform-origin: top;
}

@keyframes progressGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--color-bg-card);
    border: 3px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    transition: all 0.3s ease;
    position: relative;
}

.marker-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.roadmap-item:hover .marker-ring {
    opacity: 0.5;
    transform: scale(1);
}

.marker-ring.active {
    opacity: 1;
    animation: markerPulse 2s ease-in-out infinite;
}

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

.roadmap-item.completed .roadmap-marker {
    background: var(--color-success);
    border-color: var(--color-success);
    color: #fff;
}

.roadmap-item.current .roadmap-marker {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.roadmap-marker.pulse {
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    50% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
}

.roadmap-card {
    flex: 1;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.roadmap-card:hover .card-shine {
    left: 100%;
}

.card-shine.active {
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.roadmap-card:hover {
    border-color: var(--color-gold);
    transform: translateX(10px);
}

.roadmap-card.highlight {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, var(--color-bg-card) 100%);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.2);
}

.roadmap-date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-gold);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.roadmap-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.roadmap-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.roadmap-list {
    list-style: none;
    padding: 0;
}

.roadmap-list li {
    padding: 0.75rem 0;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.roadmap-list li:last-child {
    border-bottom: none;
}

.roadmap-list .check {
    font-size: 1.2rem;
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    background: rgba(100, 100, 100, 0.2);
    color: var(--color-text-muted);
}

.roadmap-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-success);
}

.roadmap-status.active {
    background: rgba(245, 158, 11, 0.2);
    color: var(--color-gold);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

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

/* ====== Testimonials Section ====== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0e17 0%, rgba(30, 58, 95, 0.2) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-gold);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ====== CTA Section ====== */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e17 0%, #1e3a5f 50%, #0a0e17 100%);
}

.cta-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.cta-waves svg {
    width: 100%;
    height: 100%;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.cta-content h2 {
    font-family: 'Pirata One', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.cta-feature span {
    color: var(--color-success);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ====== Footer ====== */
.site-footer {
    background: var(--color-bg-dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-99%);
}

.footer-waves svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-icon {
    font-size: 3rem;
}

.footer-logo .logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-3px);
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.9rem;
}

.footer-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

/* ====== Animation on Scroll ====== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 280px;
  margin: 1rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  width: 100%;
  text-align: left;
}

.profile-info p {
  margin: 0;
  word-break: break-word;
}

.profile-info strong {
  color: var(--color-gold);
}

#wallet-btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* ====== Mobile Responsive ====== */
@media (max-width: 1024px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-skull {
        display: none;
    }
    
    .urgency-banner {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem;
        min-width: auto;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .roadmap-marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .roadmap-item {
        gap: 1rem;
    }
    
    .roadmap-card {
        padding: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .ship-container {
        right: 5%;
        bottom: 30%;
    }
    
    .ship {
        font-size: 5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.2rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
}
