:root {
    --accent-color: #F5A423;
    --bg-dark: #0a0a0a;
    --card-bg: #111;
    --text-muted: #888;
    --text-light: #fff;
    --border-color: #222;
}

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

body {
    background-color: var(--bg-dark);
    /* Subtle grid pattern */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--text-light);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: 900;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

.login-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.k-icon {
    color: #4ade80;
    font-weight: 900;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

.pills-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.pills-top .pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.glow-text {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
}

.highlight-line {
    display: inline-block;
    border-bottom: 2px dashed rgba(255,255,255,0.3);
    padding-bottom: 2px;
    margin-top: 4px;
}

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

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(245, 164, 35, 0.4);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Podium */
.podium-section {
    padding: 40px 20px;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 280px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-1 {
    width: 320px;
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(245, 164, 35, 0.15), inset 0 0 20px rgba(245, 164, 35, 0.05);
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.badge-gold {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 16px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.card-1 .avatar {
    width: 100px;
    height: 100px;
    border-color: var(--accent-color);
}

.username {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.wagered-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.wagered-amount {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.card-1 .wagered-amount {
    font-size: 34px;
}

.bottom-pill {
    background: rgba(255,255,255,0.05);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
}

/* Countdown */
.countdown-section {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.countdown-banner {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.countdown-banner h2 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Table */
.table-section {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.leaderboard-table th {
    text-align: left;
    padding: 20px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.leaderboard-table td {
    padding: 20px;
    font-size: 14px;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.leaderboard-table .place {
    font-size: 18px;
    font-weight: 900;
}

.gem-icon {
    width: 0.9em;
    height: 0.9em;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -3px;
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 5px;
}

.footer-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--accent-color);
    border-radius: 24px;
    padding: 12px 24px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: background-color 0.2s, transform 0.2s;
}

.social-btn:hover {
    background-color: rgba(245, 164, 35, 0.1);
    transform: translateY(-2px);
}

.kick-logo {
    font-weight: 900;
    font-size: 16px;
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 15px 20px;
    }

    /* Hero */
    .glow-text {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 13px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    /* Podium */
    .podium {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .card {
        width: 100%;
        max-width: 320px;
    }

    .card-1 {
        order: 1;
        margin-bottom: 0;
    }
    
    .card-2 {
        order: 2;
    }
    
    .card-3 {
        order: 3;
    }

    /* Countdown */
    .countdown-banner h2 {
        font-size: 16px;
    }
    
    /* Table */
    .table-section {
        overflow-x: auto;
        padding: 10px;
    }
    
    .leaderboard-table th, .leaderboard-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .leaderboard-table .place {
        font-size: 14px;
    }
    
    /* Footer */
    .site-footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .footer-right {
        justify-content: center;
    }
}
