@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: 
        linear-gradient(rgba(10, 0, 0, 0.85), rgba(26, 0, 0, 0.75)),
        url('https://wallpapers.com/images/hd/bar-background-h3iw065hq9cvmvuy.jpg') center/cover no-repeat fixed;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.15) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
    animation: subtleGlow 20s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    z-index: -1;
    pointer-events: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjxmZUNvbG9yTWF0cml4IHR5cGU9InNhdHVyYXRlIiB2YWx1ZXM9IjAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjYSkiIG9wYWNpdHk9IjEiLz48L3N2Zz4=');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Particles - Removed in favor of bar background image */
.particles-bg {
    display: none;
}

.particle {
    display: none;
}

/* ========== ROYAL HEADER ========== */
.royal-header {
    position: relative;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(218, 165, 32, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.header-ornament-top, .header-ornament-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #DAA520 20%, #FFD700 50%, #DAA520 80%, transparent 100%);
}

.header-ornament-top {
    top: 0;
    opacity: 0.6;
}

.header-ornament-bottom {
    bottom: 0;
    opacity: 0.8;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.4));
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: drop-shadow(0 2px 12px rgba(218, 165, 32, 0.6));
}

.royal-nav {
    display: flex;
    gap: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(218, 165, 32, 0.05));
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 8px;
    color: #DAA520;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 200px;
    height: 200px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1));
    border-color: #DAA520;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4), inset 0 0 20px rgba(218, 165, 32, 0.1);
}

/* ========== HERO ROYAL ========== */
.hero-royal {
    position: relative;
    padding: 80px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-brand {
    margin-bottom: 60px;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crown-icon {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 10px rgba(218, 165, 32, 0.4));
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.divider-ornament {
    font-size: 1.5rem;
    color: #DAA520;
    animation: ornamentPulse 2s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.divider-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #DAA520 50%, transparent 100%);
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(218, 165, 32, 0.95);
    letter-spacing: 0.05em;
}

/* ========== PRIZE SHOWCASE ========== */
.prize-showcase {
    margin: 60px auto;
    max-width: 700px;
    opacity: 0;
}

.prize-frame {
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.9), rgba(45, 0, 0, 0.8));
    border: 3px solid #DAA520;
    border-radius: 15px;
    box-shadow: 
        0 10px 40px rgba(218, 165, 32, 0.3),
        inset 0 0 30px rgba(218, 165, 32, 0.08);
}

.prize-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #FFD700;
}

.prize-corner-tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.prize-corner-tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.prize-corner-bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.prize-corner-br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.prize-content {
    position: relative;
    z-index: 2;
}

.prize-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #DAA520;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.prize-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 12px rgba(255, 215, 0, 0.5));
}

.prize-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ========== CTA BUTTON ========== */
.cta-section {
    margin: 60px 0;
    opacity: 0;
}

.royal-cta {
    display: inline-flex;
    position: relative;
    padding: 25px 60px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    background-size: 200% auto;
    border: 3px solid #FFD700;
    border-radius: 50px;
    color: #1a0000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(218, 165, 32, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.2),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.royal-cta:hover .cta-shine {
    left: 100%;
}

.royal-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(218, 165, 32, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.3),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.cta-content i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-text-main {
    font-size: 1.5rem;
    font-weight: 900;
}

.cta-text-sub {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

/* ========== COUNTDOWN ROYAL ========== */
.countdown-royal {
    margin: 60px auto 0;
    max-width: 900px;
    opacity: 0;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #DAA520;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.countdown-header i {
    font-size: 1.6rem;
    animation: hourglassFlip 2s ease-in-out infinite;
}

@keyframes hourglassFlip {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(26, 0, 0, 0.9));
    border: 2px solid #DAA520;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(218, 165, 32, 0.25),
        inset 0 0 20px rgba(218, 165, 32, 0.05);
}

.timer-block {
    text-align: center;
    min-width: 100px;
}

.timer-value {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.5));
}

.timer-label {
    font-size: 0.9rem;
    color: rgba(218, 165, 32, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.timer-divider {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.2; }
}

/* ========== FEATURES BAR ========== */
.features-bar {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(218, 165, 32, 0.03) 50%, transparent 100%);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(26, 0, 0, 0.9));
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #DAA520;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(26, 0, 0, 0.95));
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3), inset 0 0 20px rgba(218, 165, 32, 0.08);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.05));
    border: 2px solid #DAA520;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.2);
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.feature-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #DAA520;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== ROYAL FOOTER ========== */
.royal-footer {
    position: relative;
    padding: 60px 0 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 0, 0, 0.95) 100%);
    border-top: 3px solid #DAA520;
    margin-top: 100px;
}

.footer-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #DAA520 20%, #FFD700 50%, #DAA520 80%, transparent 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand-section {
    text-align: left;
}

.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 1.3rem;
    color: rgba(218, 165, 32, 0.8);
    font-style: italic;
    margin-bottom: 20px;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #DAA520, transparent);
}

.footer-social {
    text-align: right;
}

.social-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #DAA520;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(218, 165, 32, 0.05));
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 8px;
    color: #DAA520;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn:hover {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.1));
    border-color: #DAA520;
    color: #FFD700;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(218, 165, 32, 0.6);
}

/* ========== LEADERBOARD PAGE ========== */
.leaderboard-section {
    padding: 80px 0;
    min-height: 70vh;
}

.leaderboard-header-title {
    text-align: center;
    margin-bottom: 40px;
}

.leaderboard-header-title i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
    animation: crownFloat 3s ease-in-out infinite;
}

.leaderboard-header-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.title-underline {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #DAA520, #FFD700, #DAA520, transparent);
    margin: 0 auto;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(218, 165, 32, 0.4); }
    100% { box-shadow: 0 0 10px rgba(218, 165, 32, 0.7); }
}

.leaderboard-cta {
    text-align: center;
    margin-bottom: 60px;
}

.leaderboard-cta p {
    font-size: 1.3rem;
    color: rgba(218, 165, 32, 0.9);
    margin-bottom: 20px;
}

.lb-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #DAA520, #FFD700, #DAA520);
    background-size: 200% auto;
    border: 2px solid #FFD700;
    border-radius: 50px;
    color: #1a0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    animation: goldShine 4s linear infinite;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.lb-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.leaderboard-table {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(26, 0, 0, 0.95));
    border: 3px solid #DAA520;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 
        0 10px 40px rgba(218, 165, 32, 0.25),
        inset 0 0 30px rgba(218, 165, 32, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 100px 2fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.25), rgba(218, 165, 32, 0.15));
    border: 2px solid rgba(218, 165, 32, 0.5);
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-header > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.th-username {
    justify-content: flex-start !important;
}

.table-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lb-row {
    display: grid;
    grid-template-columns: 100px 2fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.06), rgba(26, 0, 0, 0.9));
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: rowFadeIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes rowFadeIn {
    to {
        opacity: 1;
    }
}

.lb-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: left 0.6s ease;
}

.lb-row:hover::before {
    left: 100%;
}

.lb-row:hover {
    transform: translateX(5px);
    border-color: #DAA520;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.12), rgba(26, 0, 0, 0.95));
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.3);
}

.lb-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #DAA520;
}

.lb-rank i {
    font-size: 1.2rem;
}

.lb-rank.gold {
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.lb-rank.gold i {
    animation: crownSpin 4s linear infinite;
}

@keyframes crownSpin {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.lb-rank.silver {
    color: #C0C0C0;
    text-shadow: 0 2px 8px rgba(192, 192, 192, 0.5);
}

.lb-rank.bronze {
    color: #CD7F32;
    text-shadow: 0 2px 8px rgba(205, 127, 50, 0.5);
}

.lb-username {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.lb-wager {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #DAA520;
}

.lb-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ADE80;
}

.leaderboard-rules {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(26, 0, 0, 0.9));
    border: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 15px;
}

.leaderboard-rules h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #DAA520;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.leaderboard-rules h3 i {
    font-size: 1.5rem;
}

.leaderboard-rules ul {
    list-style: none;
    padding: 0;
}

.leaderboard-rules li {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.leaderboard-rules li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-size: 1.2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-logo {
        max-width: 150px;
    }
    
    .royal-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        width: 100%;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .prize-amount {
        font-size: 4rem;
    }
    
    .prize-frame {
        padding: 30px;
    }
    
    .royal-cta {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .cta-text-main {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        padding: 20px;
        gap: 10px;
    }
    
    .timer-block {
        min-width: 70px;
    }
    
    .timer-value {
        font-size: 2.5rem;
    }
    
    .timer-divider {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand-section,
    .footer-social {
        text-align: center;
    }
    
    .social-buttons {
        align-items: center;
    }
    
    .footer-divider {
        margin: 0 auto;
    }
    
    .leaderboard-header-title h1 {
        font-size: 2.5rem;
    }
    
    .table-header,
    .lb-row {
        grid-template-columns: 80px 1.5fr 1fr 1fr;
        gap: 10px;
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .lb-rank {
        font-size: 1.2rem;
    }
    
    .lb-username,
    .lb-wager,
    .lb-prize {
        font-size: 1rem;
    }
    
    .leaderboard-rules {
        padding: 25px 20px;
    }
    
    .leaderboard-rules h3 {
        font-size: 1.4rem;
    }
    
    .leaderboard-rules li {
        font-size: 1rem;
    }
}

