/* ==========================================
   LET GAME TEAM - CUSTOM CSS DESIGN SYSTEM
   ========================================== */

/* Import Google Fonts - Space Grotesk for display, Inter for body copy */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Minimal Dark Design System */
:root {
  --bg-primary: #070a10;
  --bg-secondary: #0c1017;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  
  /* Accents - single unified accent, used sparingly */
  --accent-gold: #3b82f6;
  --accent-gold-glow: rgba(59, 130, 246, 0.3);
  --accent-gold-light: #93c5fd;
  --accent-purple: #3b82f6;
  --accent-purple-glow: rgba(59, 130, 246, 0.3);
  --accent-bronze: #3b82f6;
  --accent-blue: #3b82f6;
  --accent-neon-pink: #3b82f6;
  
  /* Text Colors */
  --text-primary: #f5f5f7;
  --text-secondary: #a3a3ad;
  --text-muted: #6f6f79;
  
  /* Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-purple: rgba(59, 130, 246, 0.25);
  --border-glass-focus: rgba(59, 130, 246, 0.4);
  --shadow-gold: 0 8px 28px 0 rgba(0, 0, 0, 0.35);
  --shadow-purple: 0 8px 28px 0 rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.22);
  --shadow-glow-purple: 0 0 20px rgba(59, 130, 246, 0.22);
  
  /* Gradients - kept as CSS vars for compatibility, now flat/subtle */
  --gradient-cyber: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --gradient-gold: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  --gradient-dark: radial-gradient(circle at center, #0d1219 0%, #070a10 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  
  /* Font Families */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--gradient-dark);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

/* Typography Selection */
::selection {
  background-color: var(--accent-purple);
  color: var(--bg-primary);
}

/* Global Styles */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Cursor Glow */
.cursor-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: width 0.3s, height 0.3s;
}

/* Background Cyber Grid */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.bg-radial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 10% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Section Common Styles */
section {
  position: relative;
  padding: 100px 0 60px 0;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-purple);
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-cyber);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 30px auto 0 auto;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-cyber);
  color: var(--text-primary);
  border: none;
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35), var(--shadow-glow-purple);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2), var(--shadow-glow);
}

.btn-outline {
  background: rgba(20, 10, 40, 0.5);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-purple);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 40px 0 rgba(59, 130, 246, 0.15), var(--shadow-glow-purple);
  transform: translateY(-5px);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  z-index: 1000;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled {
  background: rgba(6, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  height: 75px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text-primary);
}

.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.logo span {
  background: linear-gradient(90deg, #fff 40%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent-purple);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent-purple);
  margin-bottom: 24px;
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.1);
}

.hero-welcome .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-purple);
  animation: pulse-dot 1.5s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span.highlight {
  display: block;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.2));
}

.text-carousel-wrapper {
  height: 60px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}

.text-carousel-item {
  font-size: 2.8rem;
  font-family: var(--font-display);
  color: var(--accent-gold);
  text-shadow: 0 0 15px var(--accent-gold-glow);
  animation: slide-text 6s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  height: 60px;
  line-height: 60px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
}

.hero-image {
  max-width: 90%;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(5, 9, 20, 0.8));
}

/* Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.game-card {
  display: block;
  height: 380px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition-slow);
  cursor: pointer;
}

.game-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
}

.game-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 9, 20, 0.95) 90%);
  z-index: 1;
  transition: var(--transition-normal);
}

.game-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.game-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid var(--accent-purple);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--accent-purple);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.game-card:nth-child(2) .game-badge {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.game-card:nth-child(3) .game-badge {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.game-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

/* Game Card Hover */
.game-card:hover {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

.game-card:hover .game-card-bg {
  transform: scale(1.1);
}

.game-card:hover::before {
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.1) 0%, rgba(5, 9, 20, 0.98) 80%);
}

.game-card:hover .game-card-content {
  transform: translateY(0);
}

.game-card:hover .game-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-features {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrapper {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
  transition: var(--transition-fast);
}

.feature-item:hover .feature-icon-wrapper {
  background: var(--accent-purple);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-bg {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  animation: pulse-slow 8s infinite alternate;
}

.about-logo-wrapper {
  background: rgba(12, 20, 38, 0.5);
  border: 1.5px solid var(--border-glass);
  border-radius: 30px;
  padding: 40px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-purple);
  animation: float 7s ease-in-out infinite;
}

.about-logo-wrapper img {
  width: 100%;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

.server-status-widget {
  background: rgba(5, 9, 20, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 400px;
  width: 100%;
}

.server-info {
  display: flex;
  flex-direction: column;
}

.server-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.server-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-top: 4px;
}

.server-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
  animation: pulse-gold 1.5s infinite;
}

.pulse-circle.online {
  background-color: #00ff66;
  box-shadow: 0 0 8px #00ff66;
  animation: pulse-green 1.5s infinite;
}

.server-status-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.server-status-text.online {
  color: #00ff66;
}

/* CTA Banner Section */
.cta-banner {
  padding: 60px 0;
}

.cta-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title span {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Store Teaser Section */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.store-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-purple);
}

.store-badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.store-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.store-desc {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.store-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.store-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-feature-icon {
  color: var(--accent-purple);
  font-size: 1.25rem;
}

.store-feature-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

.store-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-preview-wrapper {
  width: 100%;
  border-radius: 20px;
  border: 1.5px solid var(--border-glass);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(5, 9, 20, 0.9);
  position: relative;
  transition: var(--transition-slow);
}

.store-preview-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 9, 20, 0.8) 100%);
  pointer-events: none;
}

.store-preview-wrapper img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.store-preview:hover .store-preview-wrapper {
  border-color: var(--accent-purple);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25), var(--shadow-glow);
}

.store-preview:hover img {
  transform: scale(1.05);
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-img-wrapper {
  height: 220px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-date-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(5, 9, 20, 0.85);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--accent-purple);
  backdrop-filter: blur(10px);
}

.news-content {
  padding: 24px 8px 12px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.news-card-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.news-card:hover .news-card-title {
  color: var(--accent-purple);
}

.news-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.read-more-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.read-more-link i {
  transition: var(--transition-fast);
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-card:hover .read-more-link {
  color: var(--accent-gold);
  text-shadow: 0 0 8px var(--accent-gold-glow);
}

.news-card:hover .read-more-link i {
  transform: translateX(4px);
}

/* Footer Section */
.footer {
  background: #040711;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: normal;
  color: var(--accent-purple);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: inline-block;
}

.footer-link:hover {
  color: var(--accent-purple);
  transform: translateX(5px);
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: rgba(12, 20, 38, 0.4);
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copyright a {
  color: var(--accent-purple);
}

.copyright a:hover {
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Floating Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--bg-primary);
  border: 1.5px solid var(--accent-purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-purple);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-purple);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

/* Animations */
@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes pulse-gold {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes pulse-green {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 255, 102, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
  }
}

@keyframes pulse-slow {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes slide-text {
  0%, 25% {
    transform: translateY(0);
  }
  33%, 58% {
    transform: translateY(-60px);
  }
  66%, 91% {
    transform: translateY(-120px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .text-carousel-item {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 80px 0 50px 0;
  }
  .container {
    max-width: 720px;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-welcome {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    order: -1;
  }
  .store-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .store-preview {
    max-width: 500px;
    margin: 0 auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .navbar {
    height: 70px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #070c18;
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px 40px;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-actions {
    display: none; /* Hide store CTA inside nav for mobile header, it will be placed in mobile menu drawer */
  }
  
  .nav-links .nav-actions-mobile {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }
  
  .nav-links .nav-actions-mobile .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
  }
  .text-carousel-item {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  section {
    padding: 60px 0 40px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .text-carousel-item {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .store-features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-brand .logo {
    justify-content: center;
  }
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    align-items: center;
  }
  .footer-social-wrapper {
    align-items: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ==========================================
   LET GAME TEAM - PREMIUM REDESIGN EXTENSIONS
   ========================================== */

/* Custom Language Dropdown Selector */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1005;
}

.lang-btn {
  background: rgba(12, 20, 38, 0.65);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lang-btn:hover, .lang-dropdown-wrapper.active .lang-btn {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.25), var(--shadow-glow);
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.lang-btn i.fa-chevron-down {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.lang-dropdown-wrapper.active .lang-btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.lang-dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(6, 10, 22, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 8px;
  width: 190px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.15);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.25s;
}

.lang-dropdown-wrapper.active .lang-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  font-weight: 500;
}

.lang-dropdown-item:hover {
  background: rgba(59, 130, 246, 0.12);
  color: var(--text-primary);
  transform: translateX(2px);
}

.lang-dropdown-item.active {
  background: var(--gradient-cyber);
  color: var(--text-primary);
  font-weight: 600;
}

.lang-dropdown-item .item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-dropdown-item .check-icon {
  opacity: 0;
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.lang-dropdown-item.active .check-icon {
  opacity: 1;
}

/* Copy IP Button */
.copy-ip-btn {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--accent-purple);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copy-ip-btn:hover {
  background: var(--accent-purple);
  color: var(--bg-primary);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow);
}

/* Global Presence & Dashboard stats */
.presence-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-purple);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.stat-card:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15), var(--shadow-glow);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
  display: inline-block;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.presence-countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.country-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cyber);
  opacity: 0;
  transition: var(--transition-normal);
}

.country-card:hover::before {
  opacity: 1;
}

.country-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.country-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.country-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.country-tag.main-hub {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.country-tag.competitive {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.country-tag.regional {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.country-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.country-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

.country-games {
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
}

.country-games i {
  transition: var(--transition-fast);
}

.country-games i:hover {
  color: var(--accent-purple);
  transform: scale(1.15);
}

.country-ping {
  color: #00ff66;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 102, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 102, 0.15);
  font-size: 0.78rem;
}

.country-ping::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff66;
  display: inline-block;
}

/* Extra animations & styling refinements */
.server-status-widget {
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.server-status-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-normal);
  opacity: 0;
}

.server-status-widget:hover::before {
  opacity: 1;
}

/* Global utility to hide mobile-only elements on desktop */
.mobile-only {
  display: none !important;
}

/* Responsive Extensions for New Components */
@media (max-width: 1024px) {
  .presence-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .presence-countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
  .lang-dropdown-wrapper {
    margin-top: 10px;
    width: 100%;
  }
  .lang-btn {
    width: 100%;
    justify-content: space-between;
  }
  .lang-dropdown-list {
    width: 100%;
    position: relative;
    top: 8px;
    box-shadow: none;
    background: rgba(12, 20, 38, 0.3);
  }
}

@media (max-width: 576px) {
  .presence-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .presence-countries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================
   CARD HOVER + HERO VISUAL (flat, no 3D/canvas)
   ========================================== */
.game-card, .glass-card, .stat-card, .country-card, .founder-card, .value-card, .news-card, .role-card, .store-preview-wrapper {
  will-change: transform;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#hero-3d-canvas {
  width: 100%;
  height: 480px;
  position: relative;
}

.hero-fallback-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

/* Brand accents */
.logo span {
  color: var(--text-primary) !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

.highlight {
  color: var(--accent-gold) !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

