/* ============================================
   CaptchaCoin - Static CSS Styles
   ============================================ */

/* CSS Variables (Design Tokens) */
:root {
    /* Colors */
    --background: hsl(222, 47%, 6%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(222, 47%, 9%);
    --card-foreground: hsl(210, 40%, 98%);
    --primary: hsl(45, 93%, 58%);
    --primary-foreground: hsl(222, 47%, 6%);
    --secondary: hsl(222, 30%, 14%);
    --secondary-foreground: hsl(210, 40%, 98%);
    --muted: hsl(222, 30%, 14%);
    --muted-foreground: hsl(215, 20%, 55%);
    --accent: hsl(187, 92%, 55%);
    --accent-foreground: hsl(222, 47%, 6%);
    --border: hsl(222, 30%, 18%);
    --ring: hsl(45, 93%, 58%);
    --radius: 0.75rem;

    /* Custom tokens */
    --glow-primary: 0 0 60px hsla(45, 93%, 58%, 0.4);
    --glow-accent: 0 0 40px hsla(187, 92%, 55%, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card Effect */
.glass-card {
    background: hsla(222, 47%, 9%, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid hsla(222, 30%, 18%, 0.5);
    border-radius: 1rem;
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px hsla(45, 93%, 58%, 0.4), 0 0 60px hsla(45, 93%, 58%, 0.2);
    }
    50% {
        box-shadow: 0 0 40px hsla(45, 93%, 58%, 0.6), 0 0 80px hsla(45, 93%, 58%, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: hsla(222, 30%, 14%, 0.5);
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), hsl(35, 93%, 50%));
    color: var(--primary-foreground);
    font-weight: 600;
    box-shadow: 0 0 30px hsla(45, 93%, 58%, 0.3);
}

.btn-hero:hover {
    box-shadow: 0 0 40px hsla(45, 93%, 58%, 0.5);
    transform: translateY(-2px);
}

.btn-glow {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-glow:hover {
    background: hsla(222, 30%, 14%, 0.5);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: hsla(45, 93%, 58%, 0.1);
    border: 1px solid hsla(45, 93%, 58%, 0.2);
    color: var(--primary);
}

.badge-gold {
    background: linear-gradient(135deg, hsla(45, 93%, 58%, 0.2), hsla(35, 93%, 50%, 0.2));
    border: 1px solid hsla(45, 93%, 58%, 0.3);
    color: hsl(45, 93%, 58%);
}

.badge i {
    width: 1rem;
    height: 1rem;
}

/* Pulse Dot */
.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(222, 47%, 6%, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid hsla(222, 30%, 18%, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary), hsl(35, 93%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--foreground);
}

.header-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-buttons {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid hsla(222, 30%, 18%, 0.5);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--foreground);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

.mobile-nav-buttons .btn {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, hsl(222, 47%, 12%) 0%, hsl(222, 47%, 6%) 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, hsla(222, 30%, 18%, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, hsla(222, 30%, 18%, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-coins {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.coin-1 {
    top: 5rem;
    right: 2.5rem;
    opacity: 0.6;
    animation-delay: 100ms;
}

.coin-2 {
    bottom: 8rem;
    left: 5rem;
    opacity: 0.4;
    animation-delay: 300ms;
}

.coin-3 {
    top: 10rem;
    left: 2.5rem;
    opacity: 0.3;
    animation-delay: 500ms;
}

.coin-4 {
    bottom: 5rem;
    right: 8rem;
    opacity: 0.5;
    animation-delay: 200ms;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.circle-1 {
    top: 25%;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: hsla(45, 93%, 58%, 0.05);
}

.circle-2 {
    bottom: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(187, 92%, 55%, 0.05);
}

/* 3D Coin */
.coin-3d {
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #eab308, #d97706);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: float 6s ease-in-out infinite;
}

.coin-3d::before {
    content: '₿';
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #78350f;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coin-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-top: 4px solid rgba(254, 243, 199, 0.4);
    border-left: 2px solid rgba(254, 243, 199, 0.4);
}

.coin-sm {
    width: 4rem;
    height: 4rem;
}

.coin-md {
    width: 6rem;
    height: 6rem;
}

.coin-lg {
    width: 8rem;
    height: 8rem;
}

.coin-xl {
    width: 12rem;
    height: 12rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 0;
}

.hero-content > * + * {
    margin-top: 2rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.earning-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .earning-methods {
        gap: 1.5rem;
    }
}

.earning-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: hsla(222, 30%, 14%, 0.5);
    border: 1px solid hsla(222, 30%, 18%, 0.5);
    transition: all 0.3s ease;
}

.earning-method:hover {
    background: var(--secondary);
    border-color: hsla(45, 93%, 58%, 0.3);
}

.earning-method i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.earning-method span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding-top: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-stat .stat-value {
        font-size: 1.875rem;
    }
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    margin-top: 1rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    padding: 6rem 0;
}

.features-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, hsl(222, 47%, 10%) 0%, transparent 70%);
}

.features-section .container {
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsla(222, 47%, 9%, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid hsla(222, 30%, 18%, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
}

.feature-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsla(45, 93%, 58%, 0.1), hsla(187, 92%, 55%, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-content {
    position: relative;
    z-index: 10;
}

.feature-content > * + * {
    margin-top: 1rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsla(45, 93%, 58%, 0.2), hsla(45, 93%, 58%, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.feature-reward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: hsla(45, 93%, 58%, 0.1);
    border: 1px solid hsla(45, 93%, 58%, 0.2);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
}

.feature-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom left, hsla(45, 93%, 58%, 0.1), transparent);
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 100px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: 4rem 0;
}

.stats-card {
    padding: 2rem;
}

@media (min-width: 768px) {
    .stats-card {
        padding: 3rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: hsla(45, 93%, 58%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: hsla(45, 93%, 58%, 0.2);
}

.stat-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.stat-item .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-item .stat-value {
        font-size: 1.875rem;
    }
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.hiw-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), hsla(222, 30%, 14%, 0.3), var(--background));
}

.how-it-works-section .container {
    position: relative;
    z-index: 10;
}

.steps-container {
    position: relative;
}

.steps-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsla(45, 93%, 58%, 0.3), transparent);
    transform: translateY(-50%);
}

@media (min-width: 1024px) {
    .steps-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.step-card {
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-foreground);
    z-index: 10;
}

.step-content {
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, hsla(45, 93%, 58%, 0.2), hsla(187, 92%, 55%, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */
.leaderboard-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.leaderboard-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), hsla(222, 30%, 14%, 0.05), var(--background));
}

.leaderboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    background: hsla(45, 93%, 58%, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.leaderboard-section .container {
    position: relative;
    z-index: 10;
}

.leaderboard-list {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leaderboard-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid;
    transition: all 0.5s ease;
    cursor: pointer;
}

.leaderboard-item:hover {
    transform: scale(1.02);
}

.rank-1 {
    background: linear-gradient(to right, hsla(45, 93%, 58%, 0.1), hsla(35, 93%, 50%, 0.05), transparent);
    border-color: hsla(45, 93%, 58%, 0.4);
    box-shadow: 0 10px 30px -10px hsla(45, 93%, 58%, 0.1);
}

.rank-2 {
    background: linear-gradient(to right, hsla(0, 0%, 70%, 0.1), hsla(0, 0%, 60%, 0.05), transparent);
    border-color: hsla(0, 0%, 70%, 0.3);
}

.rank-3 {
    background: linear-gradient(to right, hsla(30, 80%, 50%, 0.1), hsla(25, 80%, 50%, 0.05), transparent);
    border-color: hsla(30, 80%, 50%, 0.3);
}

.rank-4, .rank-5 {
    background: hsla(222, 30%, 14%, 0.2);
    border-color: hsla(222, 30%, 18%, 0.5);
}

.rank-4:hover, .rank-5:hover {
    border-color: hsla(45, 93%, 58%, 0.3);
    background: hsla(222, 30%, 14%, 0.4);
}

.rank-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rank-badge-1 {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #eab308, #d97706);
    box-shadow: 0 10px 20px -5px hsla(45, 93%, 58%, 0.3);
}

.rank-badge-1 i {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.rank-badge-1 .rank-number {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #78350f;
}

.rank-badge-2 {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #d1d5db, #9ca3af, #6b7280);
    box-shadow: 0 10px 20px -5px hsla(0, 0%, 70%, 0.3);
}

.rank-badge-2 i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.rank-badge-2 .rank-number {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    background: #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #374151;
}

.rank-badge-3 {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706, #c2410c);
    box-shadow: 0 10px 20px -5px hsla(30, 80%, 50%, 0.3);
}

.rank-badge-3 i {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.rank-badge-3 .rank-number {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1rem;
    height: 1rem;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #78350f;
}

.rank-badge-default {
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(222, 30%, 14%, 0.5);
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--muted-foreground);
}

.user-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.avatar-1 {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
}

.avatar-2 {
    background: linear-gradient(135deg, #d1d5db, #6b7280);
    color: white;
}

.avatar-3 {
    background: linear-gradient(135deg, #f59e0b, #c2410c);
    color: white;
}

.avatar-default {
    background: hsla(45, 93%, 58%, 0.2);
    color: var(--primary);
}

.user-details {
    overflow: hidden;
}

.username {
    font-weight: 600;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-status {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.user-earnings {
    text-align: right;
}

.earnings-value {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .earnings-value {
        font-size: 1.5rem;
    }
}

.earnings-1 {
    color: hsl(45, 93%, 58%);
}

.earnings-2 {
    color: hsl(0, 0%, 70%);
}

.earnings-3 {
    color: hsl(30, 80%, 50%);
}

.earnings-default {
    color: var(--primary);
}

.earnings-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.item-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(24px);
}

.leaderboard-item:hover .item-glow {
    opacity: 1;
}

.glow-1 {
    background: hsla(45, 93%, 58%, 0.2);
}

.glow-2 {
    background: hsla(0, 0%, 70%, 0.2);
}

.glow-3 {
    background: hsla(30, 80%, 50%, 0.2);
}

.glow-default {
    background: hsla(45, 93%, 58%, 0.1);
}

.leaderboard-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: hsla(45, 93%, 58%, 0.3);
}

.dot.active {
    background: var(--primary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(222, 30%, 14%, 0.1), var(--background), var(--background));
}

.testimonials-section .container {
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background: hsla(222, 30%, 14%, 0.3);
    border: 1px solid hsla(222, 30%, 18%, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: hsla(45, 93%, 58%, 0.3);
    background: hsla(222, 30%, 14%, 0.5);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: hsla(45, 93%, 58%, 0.1);
    transition: color 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: hsla(45, 93%, 58%, 0.2);
}

.quote-icon i {
    width: 2rem;
    height: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1rem;
    height: 1rem;
    fill: var(--primary);
    color: var(--primary);
}

.testimonial-text {
    color: hsla(210, 40%, 98%, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), hsl(35, 93%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 500;
    color: var(--foreground);
}

.testimonial-username {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-earnings {
    text-align: right;
}

.testimonial-earnings .earnings-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-earnings .earnings-amount {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .testimonial-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ts-stat {
    text-align: center;
}

.ts-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .ts-value {
        font-size: 1.875rem;
    }
}

.ts-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), hsla(222, 30%, 14%, 0.2), var(--background));
}

.faq-section .container {
    position: relative;
    z-index: 10;
}

.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: hsla(222, 30%, 14%, 0.3);
    border: 1px solid hsla(222, 30%, 18%, 0.5);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-item.active .faq-content {
    display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(45, 93%, 58%, 0.1), var(--background), hsla(187, 92%, 55%, 0.05));
}

.cta-coin-left {
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

.cta-coin-right {
    position: absolute;
    right: -2.5rem;
    top: 33%;
    opacity: 0.2;
}

.cta-section .container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content > * + * {
    margin-top: 2rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: flex;
    justify-content: center;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: 3rem 0;
    border-top: 1px solid hsla(222, 30%, 18%, 0.5);
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 24rem;
}

.footer-links h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(222, 30%, 18%, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   HEADER FIX - Menu Horizontal & Properly Aligned
   Add this to your assets/css/main.css file
   ============================================ */

/* Desktop Navigation - Force Horizontal */
.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 2rem;
    }
}

/* Navigation Links - Horizontal Layout */
.nav-desktop ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-desktop ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.nav-desktop a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-desktop a:hover {
    color: var(--foreground);
}

/* Logo - Keep in Same Line */
.logo {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary), hsl(35, 93%, 50%));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    white-space: nowrap;
}

/* Header Content - Better Alignment */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 2rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

/* Header Buttons - Proper Spacing */
.header-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .header-buttons {
        display: flex;
    }
}

/* Mobile Menu - Vertical for Mobile Only */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid hsla(222, 30%, 18%, 0.5);
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.nav-mobile a {
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: block;
}

.nav-mobile a:hover {
    color: var(--foreground);
}

/* Mobile Menu Button - Only on Mobile */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Fix WordPress Menu Classes */
.nav-desktop .menu,
.nav-desktop .menu-primary-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove Any Vertical Layout */
.nav-desktop * {
    display: inline-block;
}

.nav-desktop ul,
.nav-desktop .menu {
    display: flex !important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .header-content {
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .logo-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }
}