:root {
  --accent: #6D28D9;
  --bgBase: #0a0a0f;
  --glass: rgba(255, 255, 255, 0.08);
  --glass2: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.15);
  --shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 15px 50px rgba(0, 0, 0, 0.3);
  --txt-dim: rgba(255, 255, 255, 0.7);
  --radius-xl: 28px;
  --radius-l: 22px;
  --radius-m: 16px;
  --radius-s: 12px;
}

/* Light tema için override */
[data-theme="light"] {
  --bgBase: #f8fafc;
  --glass: rgba(255, 255, 255, 0.8);
  --glass2: rgba(255, 255, 255, 0.9);
  --stroke: rgba(0, 0, 0, 0.1);
  --txt-dim: rgba(0, 0, 0, 0.7);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  height: 100%; 
  overflow-x: hidden; 
  position: relative;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: var(--bgBase);
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.5s ease;
}

[data-theme="light"] body {
  color: #1a1a1a;
}

/* Particle Background - Basitleştirilmiş */
.particle-bg {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

[data-theme="light"] .particle-bg {
  opacity: 0.1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  33% { transform: translateY(30px) translateX(50px) rotate(120deg); }
  66% { transform: translateY(-20px) translateX(-30px) rotate(240deg); }
  100% { transform: translateY(0px) translateX(0px) rotate(360deg); }
}

/* Gradient Orbs - Zarif */
.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation-delay: 2s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #10B981 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

[data-theme="light"] .gradient-orb {
  opacity: 0.2;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

/* Main Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 10;
  flex: 1;
  min-width: 250px;
}

.site-title {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 10;
  line-height: 1.2;
}

.site-tagline {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--txt-dim);
  margin-top: 5px;
  position: relative;
  z-index: 10;
}

.social-links {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-dim);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.social-link:hover {
  background: var(--glass2);
  color: var(--accent);
  transform: translateY(-3px);
}

/* Hero Section - Logo hero'da */
.hero {
  background: linear-gradient(135deg, var(--glass) 0%, var(--glass2) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 5vw, 40px);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 5;
  text-align: center;
}

.hero-logo {
  margin-bottom: 30px;
}

.site-logo {
  height: 120px;
  width: auto;
  max-height: 120px;
  filter: drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.5));
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--txt-dim);
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-l);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.stat-label {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--txt-dim);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 800;
  margin-bottom: 5px;
  color: inherit;
  line-height: 1.2;
}

.stat-sub {
  font-size: clamp(10px, 2vw, 12px);
  color: var(--txt-dim);
}

/* Source Tabs */
.source-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.source-tab {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-l);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  z-index: 5;
  flex: 1 0 auto;
}

.source-tab:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.source-tab.active {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.1) 100%);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}

.source-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  max-width: 100%;
  max-height: 100%;
}

.source-tab:hover .source-logo {
  transform: scale(1.1);
}

.source-name {
  font-weight: 600;
  font-size: clamp(14px, 3vw, 16px);
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
  position: relative;
  z-index: 5;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--txt-dim);
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-l);
  color: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

/* Podium Section */
.podium-section {
  margin: 50px 0;
  position: relative;
  z-index: 5;
  overflow: visible;
  width: 100%;
}

.podium-title {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  overflow: visible;
  width: 100%;
}

.podium-rank {
  background: linear-gradient(135deg, var(--glass) 0%, var(--glass2) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-l);
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  z-index: 5;
  width: 100%;
  max-width: 300px;
  min-width: 200px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: visible !important;
}

.podium-rank:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

/* Podium sıralaması */
.podium-rank-1 {
  height: 280px;
  order: 2;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: #FFD700;
  position: relative;
  overflow: visible;
}

.podium-rank-2 {
  height: 240px;
  order: 1;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
  border-color: #C0C0C0;
  position: relative;
  overflow: visible;
}

.podium-rank-3 {
  height: 220px;
  order: 3;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
  border-color: #CD7F32;
  position: relative;
  overflow: visible;
}

.rank-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-weight: 700;
  border: 3px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.podium-rank-1 .rank-avatar {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.podium-rank-2 .rank-avatar {
  border-color: rgba(192, 192, 192, 0.5);
  box-shadow: 0 15px 30px rgba(192, 192, 192, 0.4);
}

.podium-rank-3 .rank-avatar {
  border-color: rgba(205, 127, 50, 0.5);
  box-shadow: 0 15px 30px rgba(205, 127, 50, 0.4);
}

.rank-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.rank-name {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  display: block;
}

.rank-amount {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  display: block;
}

.rank-prize {
  font-size: clamp(12px, 2.5vw, 14px);
  color: #10B981;
  font-weight: 600;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  display: block;
}

/* Leaderboard Table */
.leaderboard-section {
  background: linear-gradient(135deg, var(--glass) 0%, var(--glass2) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 5vw, 40px);
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.section-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  position: relative;
  z-index: 5;
}

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-l);
  margin-top: 20px;
  position: relative;
  z-index: 5;
  -webkit-overflow-scrolling: touch;
}

.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  z-index: 5;
  min-width: 600px;
}

.leaderboard-table thead {
  background: var(--glass);
  position: relative;
  z-index: 5;
}

.leaderboard-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: var(--txt-dim);
  border-bottom: 1px solid var(--stroke);
  position: sticky;
  top: 0;
  background: var(--bgBase);
  backdrop-filter: blur(10px);
  z-index: 10;
  white-space: nowrap;
  opacity: 0.95;
}

.leaderboard-table tbody tr {
  border-bottom: 1px solid var(--stroke);
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.leaderboard-table tbody tr:hover {
  background: var(--glass);
}

.leaderboard-table td {
  padding: 20px;
  position: relative;
  z-index: 5;
}

.rank-cell {
  font-weight: 800;
  font-size: clamp(16px, 3vw, 20px);
  text-align: center;
  width: 80px;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 5;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.user-info {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  min-width: 0;
}

.username {
  font-weight: 600;
  font-size: clamp(14px, 3vw, 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-level {
  font-size: clamp(10px, 2vw, 12px);
  color: var(--txt-dim);
}

.amount-cell {
  font-weight: 800;
  font-size: clamp(14px, 3vw, 18px);
  white-space: nowrap;
}

.prize-cell {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: clamp(20px, 5vw, 40px) 20px;
  color: var(--txt-dim);
  position: relative;
  z-index: 5;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 3vw, 30px);
  margin: 30px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.footer-link {
  color: var(--txt-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 5;
  font-size: clamp(12px, 2.5vw, 14px);
}

.footer-link:hover {
  color: var(--accent);
}

.copyright {
  margin-top: 20px;
  font-size: clamp(12px, 2.5vw, 14px);
  position: relative;
  z-index: 5;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Shimmer effect for loading */
.shimmer {
  background: linear-gradient(90deg, var(--glass) 25%, var(--glass2) 50%, var(--glass) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 15px;
  }
  
  .hero h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .source-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .source-tab {
    min-width: 150px;
    flex: 1 0 auto;
    padding: 12px 15px;
  }
  
  .podium-container {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .podium-rank {
    flex: 0 0 auto;
    width: 80%;
    max-width: 280px;
    min-width: 250px;
    margin-right: 15px;
    min-height: 260px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .logo-wrapper {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
  
  .hero {
    padding: 25px 15px;
  }
  
  .hero h1 {
    font-size: clamp(22px, 5vw, 28px);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 20px;
  }
  
  .source-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .source-tab {
    min-width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  .source-logo {
    width: 35px;
    height: 35px;
  }
  
  .podium-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow: visible;
    justify-items: center;
  }
  
  .podium-rank {
    width: 100%;
    max-width: none;
    min-width: auto;
    margin-right: 0;
    height: auto !important;
    min-height: 220px;
  }
  
  .podium-rank-1, .podium-rank-2, .podium-rank-3 {
    height: auto !important;
  }
  
  .rank-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .rank-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .rank-amount {
    font-size: 14px;
    margin-bottom: 3px;
  }
  
  .rank-prize {
    font-size: 12px;
  }
  
  .leaderboard-section {
    padding: 20px 15px;
  }
  
  .leaderboard-table th,
  .leaderboard-table td {
    padding: 12px 8px;
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 20px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .source-tabs {
    grid-template-columns: 1fr;
  }
  
  .podium-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .podium-rank {
    padding: 15px 10px;
    min-height: 200px;
  }
  
  .rank-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .rank-name {
    font-size: 13px;
  }
  
  .rank-amount {
    font-size: 13px;
  }
  
  .rank-prize {
    font-size: 12px;
  }
  
  .controls {
    gap: 15px;
  }
  
  .search-input {
    padding: 15px 15px 15px 45px;
    font-size: 14px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Theme toggle button */
.theme-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(30deg);
  background: var(--accent);
  color: white;
}

.theme-toggle i {
  font-size: 20px;
  transition: transform 0.5s ease;
}

/* Loading row fix */
.loading-row {
  text-align: center;
  padding: 40px 20px;
  color: var(--txt-dim);
}

/* Error row fix */
.error-row {
  text-align: center;
  padding: 40px 20px;
  color: #EF4444;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  button, 
  .source-tab, 
  .social-link,
  .footer-link {
    min-height: 44px;
    min-width: 44px;
  }
  
  input, 
  select, 
  textarea {
    font-size: 16px;
  }
  
  .theme-toggle {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Fix for podium on mobile */
@media (max-width: 768px) {
  .podium-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    justify-items: center !important;
    overflow: visible !important;
  }
  
  .podium-rank {
    width: 100% !important;
    max-width: none !important;
    min-height: 220px !important;
    height: auto !important;
  }
  
  .podium-rank-1, .podium-rank-2, .podium-rank-3 {
    height: auto !important;
  }
}