/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --yellow: #fbbf24;
    --yellow-dark: #d97706;
    --yellow-glow: rgba(251, 191, 36, 0.4);
    --orange: #f97316;
    --orange-glow: rgba(249, 115, 22, 0.4);
    --discord: #5865f2;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.06);

    /* Gradients */
    --gradient-yellow: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d97706 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #fcd34d 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.nav-btn,
.vote-btn,
.discord-btn,
.shop-btn {
    text-decoration: none;
}

.nav-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.vote-btn {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-btn:hover {
    transform: translateY(-2px);
    background: #ea580c;
}

.discord-btn {
    background: var(--discord);
    border: 2px solid var(--discord);
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.discord-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.shop-btn {
    background: var(--yellow);
    border: 2px solid var(--yellow);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-btn:hover {
    transform: translateY(-2px);
    background: var(--yellow-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #b8b8d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn svg,
.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: var(--yellow);
    color: #000;
    border: 2px solid var(--yellow);
    font-weight: 800;
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: var(--yellow-dark);
}

.cta-secondary {
    background: var(--discord);
    color: white;
    border: 2px solid var(--discord);
    text-decoration: none;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    color: var(--yellow);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.testimonials-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: var(--glass-hover);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.stars {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.25rem;
}

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

.testimonial-author {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: right;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--glass-hover);
    border-color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ===== WHY WE STAND OUT ===== */
.standout {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.standout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.standout-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.standout-card:hover {
    background: var(--glass-hover);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.standout-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.standout-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.standout-desc {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ===== INFRASTRUCTURE ===== */
.infrastructure {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infrastructure-stat {
    text-align: center;
    background: var(--glass-bg);
    border: 3px solid var(--yellow);
    border-radius: 4px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.infrastructure-stat:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--yellow-glow);
}

.infrastructure-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.infrastructure-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    position: relative;
    z-index: 10;
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
}

.bottom-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    backdrop-filter: blur(10px);
}

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

.footer-section h3 {
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.938rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.footer-links svg.footer-icon {
    fill: currentColor;
}

.footer-links img.footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-links a:hover img.footer-icon {
    filter: grayscale(0%);
}

.footer-logo {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-center {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .carousel-prev {
        left: -10px;
    }

    .carousel-next {
        right: -10px;
    }

    .testimonials-carousel {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        gap: 0.5rem;
    }

    .nav-btn,
    .vote-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .nav-btn svg,
    .vote-btn svg {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-carousel {
        padding: 0 3.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

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

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .infrastructure-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.25rem;
    }

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

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

    .testimonials-carousel {
        padding: 0 3rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }
}