@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content .highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.explore-btn {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.contact-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #333;
}

.contact-btn:hover {
  border-color: #555;
  background: rgba(255, 255, 255, 0.05);
}

.social-links {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateX(-5px);
}

.discord-icon {
  background: linear-gradient(135deg, #5865f2, #7289da);
}

.discord-icon:hover {
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.twitter-icon {
  background: #1da1f2;
}

.twitter-icon:hover {
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.youtube-icon {
  background: #ff0000;
}

.youtube-icon:hover {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.roblox-icon {
  background: #000;
  border: 1px solid #333;
}

.roblox-icon:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

h2 .highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.games-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-bar {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.search-bar input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.search-bar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.filter-btns {
  display: flex;
  gap: 12px;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  border-color: transparent;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1e1e2e, #2a2a3e);
  position: relative;
  overflow: hidden;
}

.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  z-index: 5;
}

.active-game:hover .play-overlay {
  opacity: 1;
}

.play-btn-overlay {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  padding: 14px 28px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.active-game:hover .play-btn-overlay {
  transform: scale(1);
}

.paused-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.paused-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.6);
  padding: 12px 24px;
  border-radius: 12px;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
  }
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.game-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #60a5fa;
  z-index: 10;
}

.game-info {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.game-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.live {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}

.status-badge.paused {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f59e0b;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-badge.live .status-dot {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.status-badge.paused .status-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.coming-soon {
  text-align: center;
  padding: 80px 40px;
  background: rgba(20, 20, 30, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  margin-top: 60px;
}

.coming-soon h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.coming-soon .highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.coming-soon-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.twitter-btn,
.discord-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}

.twitter-btn {
  background: #1da1f2;
  color: #fff;
}

.twitter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.discord-btn {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

#events {
  background: rgba(10, 10, 15, 0.5);
}

.event-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.event-banner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
  padding: 32px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.prize-spotlight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prize-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.4));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.prize-info {
  display: flex;
  flex-direction: column;
}

.prize-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.prize-amount {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.prize-worth {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.event-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 12px 24px;
  border-radius: 12px;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.05rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(239, 68, 68, 0.3); }
  50% { border-color: rgba(239, 68, 68, 0.6); }
}

.event-header {
  padding: 40px 50px 20px;
}

.event-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.event-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.event-content {
  padding: 20px 50px 50px;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.event-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-section h4 svg {
  color: #60a5fa;
}

.event-list {
  list-style: none;
  padding: 0;
}

.event-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.event-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
  font-size: 1.1rem;
}

.prizes-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.prize-row {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.prize-row:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(3px);
}

.prize-row.winner {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
  border-color: rgba(251, 191, 36, 0.4);
}

.prize-rank {
  font-weight: 700;
  color: #60a5fa;
  font-size: 0.9rem;
  min-width: 80px;
}

.prize-row.winner .prize-rank {
  color: #fbbf24;
}

.prize-reward {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: right;
}

.total-pool {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 12px;
  border-top: 2px solid rgba(59, 130, 246, 0.3);
  margin-top: 12px;
}

.event-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.cta-button {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.5);
}

.event-boost {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  padding: 20px 24px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.event-boost svg {
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 2px;
}

.event-boost p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.achievement-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.achievement-card:hover::before {
  left: 100%;
}

.achievement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.achievement-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

#contact {
  background: rgba(20, 20, 30, 0.3);
  border-radius: 20px;
  padding: 80px 60px;
}

#contact h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.contact-method:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.discord-method .method-icon {
  background: linear-gradient(135deg, #5865f2, #7289da);
}

.contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-method p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-method a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

footer {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 60px;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

@media (max-width: 1024px) {
  .social-links {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-banner {
    padding: 24px 32px;
  }

  .event-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  nav ul {
    display: none;
  }

  section {
    padding: 80px 24px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .games-controls {
    flex-direction: column;
  }

  .search-bar {
    min-width: 100%;
  }

  .event-card {
    padding: 0;
  }

  .event-banner {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .prize-spotlight {
    width: 100%;
  }

  .prize-icon {
    font-size: 2.5rem;
  }

  .prize-amount {
    font-size: 1.5rem;
  }

  .event-timer {
    width: 100%;
    justify-content: center;
  }

  .event-header {
    padding: 32px 20px 16px;
  }

  .event-header h3 {
    font-size: 1.6rem;
  }

  .event-subtitle {
    font-size: 1rem;
  }

  .event-content {
    padding: 16px 20px 32px;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-section h4 {
    font-size: 1.15rem;
  }

  .event-cta {
    padding: 24px 20px;
  }

  .cta-content h4 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 14px 24px;
  }
}