/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color variables */
  --primary-color: #00f9ff;
  --primary-dark: #00c6d9;
  --primary-light: #60fdff;
  --secondary-color: #111111;
  --background-dark: #0a0a0a;
  --background-light: #1e1e1e;
  --text-color: #ffffff;
  --text-dark: #aaaaaa;
  --text-light: #ffffff;
  --accent-color: #ff347f;
  --success: #00e676;
  --warning: #ffd600;
  --error: #ff1744;
  --neutral-100: #f5f5f5;
  --neutral-200: #e0e0e0;
  --neutral-300: #b0b0b0;
  --neutral-400: #808080;
  --neutral-500: #606060;
  --neutral-600: #404040;
  --neutral-700: #303030;
  --neutral-800: #202020;
  --neutral-900: #101010;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  
  /* Font sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --font-huge: 3rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: var(--font-huge); }
h2 { font-size: var(--font-xxl); }
h3 { font-size: var(--font-xl); }
h4 { font-size: var(--font-lg); }
h5 { font-size: var(--font-md); }
h6 { font-size: var(--font-sm); }

p {
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Section styles */
section {
  padding: var(--space-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.section-header h1 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* Button styles */
.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 249, 255, 0.5);
}

.cta-button:hover {
  background: transparent;
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 249, 255, 0.8);
}

.icon {
  color: #FED700;
  font-size: 48px;   /* Increases size of icon */
  width: 48px;       /* Optional: if you want fixed width */
  height: 48px;      /* Optional: if you want fixed height */
  display: inline-block;
  text-align: center;
  line-height: 48px; /* Vertically centers icon inside block */
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Media Queries */
@media screen and (max-width: 768px) {
  :root {
    --font-huge: 2.5rem;
    --font-xxl: 1.75rem;
    --font-xl: 1.25rem;
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
  }
}

@media screen and (max-width: 480px) {
  :root {
    --font-huge: 2rem;
    --font-xxl: 1.5rem;
    --font-xl: 1.125rem;
  }
  
  .cta-button {
    padding: var(--space-sm) var(--space-md);
  }
}
.Game_card {
  padding: 0 25px; /* top/bottom 0, left/right 20px */
}