:root {
    --gold: #FFD700;
    --gold-light: #FFF4B8;
    --gold-dark: #B8860B;
    --dark: #0a0a0a;
    --darker: #050505;
    --gray: #1a1a1a;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --accent: #8B4513;
}

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

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

.background-shimmer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    gap: 10px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.language-switcher a,
.language-switcher span {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-muted);
}

.language-switcher a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.language-switcher .active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.15);
    cursor: default;
}

/* Header */
.header {
    padding: 40px 0 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, transparent 100%);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.logo i {
    margin-right: 15px;
    animation: pulse 2s ease-in-out infinite;
}

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

.tagline {
    font-size: 1.1rem;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Leaderboard */
.leaderboard {
    padding: 80px 0;
    background: var(--gray);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-title i {
    color: var(--gold);
    margin-right: 15px;
}

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

.rankings-list {
    max-width: 900px;
    margin: 0 auto;
}

.loading {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.rank-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.rank-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: 0.5s;
}

.rank-item:hover::before {
    left: 100%;
}

.rank-item:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.rank-item.top-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.rank-item.top-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.03) 100%);
    border-color: #C0C0C0;
}

.rank-item.top-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.03) 100%);
    border-color: #CD7F32;
}

.rank-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.rank-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 60px;
}

.rank-item.top-1 .rank-number {
    font-size: 2.5rem;
}

.rank-info {
    display: flex;
    flex-direction: column;
}

.rank-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rank-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rank-right {
    text-align: right;
}

.rank-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.rank-item.top-1 .rank-amount {
    font-size: 2.2rem;
}

.rank-payments {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
}

.payment-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gray) 0%, var(--darker) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.1);
}

.payment-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--gold);
}

.payment-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gold-light);
}

.form-group input {
    width: 100%;
    padding: 18px;
    background: var(--darker);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text);
    font-size: 1.1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.payment-preview {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.preview-header {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.preview-content {
    color: var(--text);
}

.btn-pay {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 10px;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.btn-pay:active {
    transform: translateY(-1px);
}

.btn-pay i {
    margin-right: 10px;
}

.payment-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-note i {
    color: var(--gold);
    margin-right: 10px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--gray);
}

.social-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.author {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-muted);
}

.footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rank-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .rank-left {
        flex-direction: column;
        gap: 10px;
    }

    .rank-right {
        text-align: center;
    }

    .payment-card {
        padding: 30px 20px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .language-switcher a,
    .language-switcher span {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}
