@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --sun-yellow: #FFD166;
    --sun-orange: #F4845F;
    --palm-green: #06D6A0;
    --palm-dark: #073B4C;
    --ocean-blue: #118AB2;
    --sand-light: #FFF8E7;
    --coral: #EF476F;
    --bg-dark: #0A1628;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --glow-yellow: rgba(255, 209, 102, 0.3);
    --glow-green: rgba(6, 214, 160, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--palm-green);
    border-radius: 4px;
}

/* ═══ NAV ═══ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(10, 22, 40, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo svg {
    width: 40px;
    height: 40px;
}

.nav-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sun-yellow);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sun-yellow);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
    background: linear-gradient(180deg,
            #0B1A2E 0%,
            #0F2744 15%,
            #1A3A5C 30%,
            #2E5F7A 45%,
            #4A8BA0 55%,
            #7ABFCC 65%,
            #F4A261 78%,
            #E76F51 85%,
            #F4845F 90%,
            #FFD166 100%);
}

/* Stars */
.hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

/* Sun */
.hero-sun-wrap {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    animation: sunFloat 8s ease-in-out infinite;
}

.hero-sun-svg {
    width: 100%;
    height: 100%;
}

.sun-rays {
    animation: raysRotate 30s linear infinite;
    transform-origin: 200px 200px;
}

@keyframes raysRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sunFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Sun reflection */
.sun-reflection {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 209, 102, 0.25) 0%, transparent 70%);
    filter: blur(12px);
    animation: reflectionPulse 4s ease-in-out infinite;
}

@keyframes reflectionPulse {

    0%,
    100% {
        opacity: 0.6;
        width: 200px;
    }

    50% {
        opacity: 1;
        width: 240px;
    }
}

/* Birds */
.birds {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bird {
    position: absolute;
}

.bird-1 {
    width: 40px;
    top: 18%;
    left: 30%;
    animation: birdFly 12s linear infinite;
}

.bird-2 {
    width: 30px;
    top: 15%;
    left: 55%;
    animation: birdFly 16s linear infinite 3s;
}

.bird-3 {
    width: 24px;
    top: 22%;
    left: 42%;
    animation: birdFly 20s linear infinite 6s;
}

.bird-4 {
    width: 20px;
    top: 12%;
    left: 65%;
    animation: birdFly 18s linear infinite 9s;
}

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

    25% {
        transform: translateX(60px) translateY(-12px);
    }

    50% {
        transform: translateX(120px) translateY(5px);
    }

    75% {
        transform: translateX(200px) translateY(-8px);
    }

    100% {
        transform: translateX(300px) translateY(0);
        opacity: 0;
    }
}

/* Clouds */
.cloud {
    position: absolute;
    pointer-events: none;
}

.cloud-1 {
    width: 280px;
    top: 10%;
    left: -5%;
    animation: cloudDrift 40s linear infinite;
    opacity: 0.6;
}

.cloud-2 {
    width: 200px;
    top: 20%;
    right: -10%;
    animation: cloudDrift 55s linear infinite 10s;
    opacity: 0.4;
}

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

    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Ocean */
.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    pointer-events: none;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-back {
    height: 140px;
    animation: waveMove 8s ease-in-out infinite;
}

.wave-mid {
    height: 120px;
    animation: waveMove 6s ease-in-out infinite 1s;
}

.wave-front {
    height: 100px;
    animation: waveMove 5s ease-in-out infinite 2s;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }
}

/* Sand */
.sand {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12%;
    pointer-events: none;
    z-index: 2;
}

.sand svg {
    width: 100%;
    height: 100%;
}

/* Palms */
.palm {
    position: absolute;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.palm-left {
    left: -30px;
    bottom: -10px;
}

.palm-right {
    right: -20px;
    bottom: -10px;
}

.palm-bg-left {
    left: 12%;
    bottom: 5%;
    opacity: 0.5;
}

.palm svg {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.palm-left svg {
    animation: palmSway 6s ease-in-out infinite;
    transform-origin: bottom center;
}

.palm-right svg {
    animation: palmSway 7s ease-in-out infinite 1.5s;
    transform-origin: bottom center;
}

@keyframes palmSway {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(1.5deg);
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 214, 160, 0.15);
    border: 1px solid rgba(6, 214, 160, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--palm-green);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFF5D6 0%, #FFD166 30%, #F4845F 60%, #EF476F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 30px rgba(255, 209, 102, 0.4));
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    max-width: 500px;
    margin-inline: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.hero-stat svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-stat div {
    text-align: left;
}

.hero-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sun-yellow), var(--sun-orange));
    color: var(--palm-dark);
    box-shadow: 0 4px 24px var(--glow-yellow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow-yellow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ═══ SECTIONS ═══ */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--palm-green);
    margin-bottom: 12px;
}

.section-tag svg {
    width: 18px;
    height: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-divider {
    height: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.3), transparent);
}

/* ═══ KITS ═══ */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.kit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.kit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.kit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 209, 102, 0.2);
}

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

.kit-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kit-icon svg {
    width: 36px;
    height: 36px;
}

.kit-icon.starter {
    background: rgba(6, 214, 160, 0.15);
}

.kit-icon.warrior {
    background: rgba(239, 71, 111, 0.15);
}

.kit-icon.raider {
    background: rgba(255, 209, 102, 0.15);
}

.kit-icon.vip {
    background: rgba(17, 138, 178, 0.15);
}

.kit-icon.elite {
    background: rgba(244, 132, 95, 0.15);
}

.kit-icon.ultimate {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(239, 71, 111, 0.2));
}

.kit-tier {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.kit-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.kit-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.kit-items {
    list-style: none;
    margin-bottom: 20px;
}

.kit-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.kit-items li svg {
    width: 16px;
    height: 16px;
    color: var(--palm-green);
    flex-shrink: 0;
}

.kit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kit-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sun-yellow);
}

.kit-price .currency {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-buy {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--bg-card-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: var(--sun-yellow);
    color: var(--palm-dark);
    border-color: var(--sun-yellow);
}

/* ═══ RULES ═══ */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.rule-item:hover {
    border-color: rgba(6, 214, 160, 0.3);
    transform: translateX(4px);
}

.rule-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 214, 160, 0.15);
    color: var(--palm-green);
    font-weight: 800;
    font-size: 1.1rem;
}

.rule-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.rule-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ═══ DISCORD ═══ */
.discord-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent, rgba(88, 101, 242, 0.05), transparent);
}

.discord-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(88, 101, 242, 0.08), transparent 60%);
    pointer-events: none;
}

.discord-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(88, 101, 242, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.discord-icon svg {
    width: 40px;
    height: 40px;
    color: #5865F2;
}

.discord-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.discord-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
    position: relative;
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.5);
}

/* ═══ FOOTER ═══ */
.footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ═══ PARTICLES ═══ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--sun-yellow);
    opacity: 0.15;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ═══ FADE-IN ═══ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-sun-wrap {
        width: 200px;
        height: 200px;
    }

    .palm-left svg {
        width: 180px;
    }

    .palm-right svg {
        width: 160px;
    }

    .palm-bg-left {
        display: none;
    }

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

    .discord-card {
        padding: 40px 24px;
    }

    .rule-item {
        flex-direction: column;
        gap: 12px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat {
        padding: 8px 14px;
    }
}