* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --money-green: #78e538;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-img {
  position: absolute;
  opacity: 0.4;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  animation: float-animation 12s infinite ease-in-out;
}

.float-1 {
  width: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  width: 140px;
  top: 25%;
  right: 15%;
  animation-delay: -3s;
}

.float-3 {
  width: 140px;
  bottom: 15%;
  left: 15%;
  animation-delay: -6s;
}

.float-4 {
  width: 90px;
  bottom: 22%;
  right: 12%;
  animation-delay: -9s;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(15px) rotate(-3deg);
  }
}


/* ========== NAVIGATION ========== */
.navbar {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(133, 187, 101, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(133, 187, 101, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--money-green);
}

.rainbet-logo {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(133, 187, 101, 0.5);
}

/* Pigeon Highlight - Simplified */
.highlight-Pigeon {
    display: inline-block;
    color: var(--money-green);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background: rgba(133, 187, 101, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(133, 187, 101, 0.4);
    letter-spacing: 0.05em;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--money-green);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--money-green);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--money-green);
    background-color: rgba(133, 187, 101, 0.1);
}

.admin-link {
    background-color: rgba(133, 187, 101, 0.2);
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(133, 187, 101, 0.15) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.rainbet-logo {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(133, 187, 101, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rainbet-logo {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(133, 187, 101, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.rainbet-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(133, 187, 101, 0.4));
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.rainbet-logo img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.5) 30%, 
        rgba(255, 255, 255, 0.2) 60%, 
        transparent 100%);
    filter: blur(20px);
    z-index: -1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--money-green);
    border-radius: 50%;
    opacity: 0.5;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float-particle 8s infinite ease-in-out;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: float-particle 10s infinite ease-in-out 1s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 30%;
    animation: float-particle 12s infinite ease-in-out 2s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 60%;
    animation: float-particle 9s infinite ease-in-out 3s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation: float-particle 11s infinite ease-in-out 4s;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.text-green {
    color: #6b9edc;
    text-shadow: 0 0 30px rgba(107, 158, 220, 0.5);
}

.text-money-green {
    color: var(--money-green);
    text-shadow: 0 0 30px rgba(133, 187, 101, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--money-green) 0%, #9dd67d 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(133, 187, 101, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(133, 187, 101, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--money-green);
    color: var(--money-green);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(133, 187, 101, 0.2);
}

.promo-code {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.code {
    color: var(--money-green);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background-color: rgba(133, 187, 101, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(133, 187, 101, 0.4);
}

/* ========== COUNTDOWN ========== */
.countdown-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid var(--money-green);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(133, 187, 101, 0.2);
}

.countdown-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--money-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--money-green) 0%, #9dd67d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background-color: rgba(133, 187, 101, 0.1);
    min-width: clamp(50px, 10vw, 70px);
    animation: pulse-countdown 1s infinite;
}

.countdown-label {
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--money-green);
    animation: blink 1s infinite;
}

/* ========== MEDALS & PODIUM ========== */
.medal-icon {
    width: 50px;
    height: 50px;
    animation: medalFloat 3s ease-in-out infinite;
}

.gold-medal {
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.silver-medal {
    color: var(--silver);
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.6));
}

.bronze-medal {
    color: var(--bronze);
    filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.6));
}

.top-three-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
}

.top-three {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.podium-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.podium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.podium-card:hover::before {
    opacity: 1;
}

.podium-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.podium-card.first {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    order: 2;
}

.podium-card.second {
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.3);
    order: 1;
}

.podium-card.third {
    border-color: var(--bronze);
    box-shadow: 0 10px 40px rgba(205, 127, 50, 0.3);
    order: 3;
}

.rank-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
}

.rank-badge i {
    font-size: 2rem;
}

.rank-badge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor;
    animation: pulse 2s infinite;
}

.rank-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.first .rank-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    color: var(--dark-bg);
}

.second .rank-badge {
    background: linear-gradient(135deg, var(--silver) 0%, #e8e8e8 100%);
    color: var(--dark-bg);
}

.third .rank-badge {
    background: linear-gradient(135deg, var(--bronze) 0%, #e89a5d 100%);
    color: var(--dark-bg);
}

.podium-username {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    word-break: break-word;
}

.podium-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.podium-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.podium-stat:hover {
    background: rgba(133, 187, 101, 0.1);
    transform: translateX(5px);
}

.podium-stat.prize-stat {
    background: rgba(133, 187, 101, 0.1);
    border: 1px solid rgba(133, 187, 101, 0.3);
}

.podium-stat .stat-icon {
    font-size: 1.2rem;
    color: var(--money-green);
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
    text-align: left;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--text-primary);
}

.prize-amount {
    color: var(--money-green);
}

/* ========== LEADERBOARD ========== */
.leaderboard-hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--money-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.period-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.period-btn {
    padding: 0.75rem 2rem;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.period-btn:hover {
    border-color: var(--money-green);
    color: var(--money-green);
    transform: translateY(-2px);
}

.period-btn.active {
    background: linear-gradient(135deg, var(--money-green) 0%, #9dd67d 100%);
    color: var(--dark-bg);
    border-color: var(--money-green);
    box-shadow: 0 4px 15px rgba(133, 187, 101, 0.4);
}

.full-leaderboard {
    padding: 4rem 2rem;
}

.leaderboard-table-wrapper {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.leaderboard-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: linear-gradient(135deg, rgba(133, 187, 101, 0.2) 0%, rgba(133, 187, 101, 0.1) 100%);
}

.leaderboard-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    letter-spacing: 0.1em;
    color: var(--money-green);
    text-transform: uppercase;
    white-space: nowrap;
}

.leaderboard-table td {
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s;
}

.leaderboard-row {
    transition: all 0.3s ease;
    position: relative;
}

.leaderboard-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--money-green) 0%, transparent 100%);
    opacity: 0.1;
    transition: width 0.3s ease;
}

.leaderboard-row:hover::before {
    width: 100%;
}

.leaderboard-row:hover {
    background-color: rgba(133, 187, 101, 0.05);
}

.leaderboard-row.top-1 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.leaderboard-row.top-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.05) 0%, transparent 100%);
}

.leaderboard-row.top-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.05) 0%, transparent 100%);
}

.rank-cell {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--money-green);
}

.rank-cell i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.username-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.username-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.username-wrapper i {
    font-size: 1rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.wagered-cell {
    color: var(--text-secondary);
}

.amount-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amount-wrapper i {
    font-size: 1rem;
    color: var(--money-green);
    flex-shrink: 0;
}

.prize-cell {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.prize-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prize-wrapper i {
    font-size: 1rem;
    flex-shrink: 0;
}

.prize-cell.has-prize {
    color: var(--money-green);
}

.prize-cell.no-prize {
    color: var(--text-secondary);
}

.trophy-icon {
    color: var(--gold);
    animation: trophyShine 2s ease-in-out infinite;
}

.no-prize-text {
    opacity: 0.3;
}

.loading-cell {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem !important;
}

/* ========== BONUSES SECTION ========== */
.bonuses {
    padding: 4rem 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bonus-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(133, 187, 101, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bonus-card:hover .bonus-glow {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--money-green);
    box-shadow: 0 20px 60px rgba(133, 187, 101, 0.3);
}

.bonus-header {
    color: var(--money-green);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bonus-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--money-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.bonus-features li:hover {
    color: var(--text-primary);
}

.bonus-features li::before {
    content: "✓";
    color: var(--money-green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: 900;
}

/* ========== STATS & FEATURES ========== */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--money-green);
    box-shadow: 0 10px 30px rgba(133, 187, 101, 0.2);
}

.stat-card .stat-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    animation: bounce-slow 3s infinite;
}

.stat-card .stat-icon i {
    color: var(--money-green);
}

.stat-card .stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--money-green);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-section {
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--money-green);
}

.feature-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.feature-icon i {
    color: var(--money-green);
}

.feature-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* ========== SOCIAL SECTION ========== */
.social {
    padding: 4rem 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 187, 101, 0.1), transparent);
    transition: left 0.5s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--money-green);
    box-shadow: 0 10px 30px rgba(133, 187, 101, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 2rem;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.youtube .social-icon {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
    color: #FF0000;
}

.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.discord .social-icon {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.1) 100%);
    color: #5865F2;
}

.twitter .social-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--text-primary);
}

.social-info {
    flex: 1;
}

.social-name {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-primary);
}

.social-handle {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

/* ========== LEADERBOARD PREVIEW ========== */
.leaderboard-preview {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.preview-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    min-height: 400px;
    overflow-x: auto;
}

.preview-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--money-green);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
    color: var(--money-green);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
}

.gambling-awareness {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 0, 0, 0.1) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 16px;
    flex-wrap: wrap;
}

.awareness-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ff6b00;
    background: linear-gradient(135deg, #ff6b00 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem 1.5rem;
    border: 3px solid #ff6b00;
    border-radius: 12px;
    flex-shrink: 0;
}

.awareness-text {
    flex: 1;
    min-width: 250px;
}

.awareness-text strong {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.awareness-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.awareness-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.awareness-links a {
    color: var(--money-green);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: rgba(133, 187, 101, 0.1);
    border-radius: 8px;
    border: 1px solid var(--money-green);
    transition: all 0.3s;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.awareness-links a:hover {
    background-color: var(--money-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.copyright p {
    line-height: 1.8;
}

/* ========== ADMIN SECTION ========== */
.admin-main {
    min-height: 80vh;
    padding: 4rem 2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.admin-section {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

.admin-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--money-green);
    margin-bottom: 2rem;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--money-green);
    box-shadow: 0 0 0 3px rgba(133, 187, 101, 0.1);
}

.existing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.existing-cards::-webkit-scrollbar {
    width: 8px;
}

.existing-cards::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 4px;
}

.existing-cards::-webkit-scrollbar-thumb {
    background: var(--money-green);
    border-radius: 4px;
}

.card-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.card-item:hover {
    border-color: var(--money-green);
    transform: translateX(5px);
}

.card-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-item-title {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
}

.card-item-actions {
    display: flex;
    gap: 0.5rem;
}

.card-item-actions button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
}

.edit-btn {
    background-color: var(--money-green);
    color: var(--dark-bg);
}

.edit-btn:hover {
    transform: scale(1.05);
}

.delete-btn {
    background-color: #ff4444;
    color: white;
}

.delete-btn:hover {
    transform: scale(1.05);
    background-color: #ff0000;
}

.card-item-description {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--money-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--money-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-20px, -40px);
    }
    75% {
        transform: translate(-40px, -20px);
    }
}

@keyframes medalFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-countdown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes trophyShine {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(133, 187, 101, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(133, 187, 101, 0.6);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes podiumRise {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(133, 187, 101, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(133, 187, 101, 0.7);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .top-three {
        gap: 1.5rem;
    }
    
    .podium-card {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .top-three {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .podium-card {
        width: 100%;
        max-width: 350px;
    }

    .podium-card.first,
    .podium-card.second,
    .podium-card.third {
        order: unset;
    }

    .leaderboard-table-wrapper {
        border-radius: 12px;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .countdown-container {
        padding: 1.5rem;
    }

    .gambling-awareness {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .awareness-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    .countdown-container {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .countdown {
        gap: 0.25rem;
    }

    .podium-card {
        padding: 1.5rem;
    }

    .leaderboard-table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.75rem 0.5rem;
    }

    .rank-cell i {
        display: none;
    }

    .bonus-card,
    .stat-card,
    .feature-card,
    .social-card {
        padding: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon i {
        font-size: 1.5rem;
    }

    .gambling-awareness {
        padding: 1rem;
    }

    .awareness-icon {
        padding: 0.75rem 1rem;
    }
}