:root {
  /* Color scheme */
  --primary-color: #ff4d5a;
  --primary-color-dark: #e02e3d;
  --secondary-color: #2c3e50;
  --secondary-color-dark: #1a2530;
  --accent-color: #3498db;
  --accent-color-dark: #2980b9;
  --highlight-color: #f39c12;
  --highlight-color-dark: #d35400;
  --text-light: #f8f9fa;
  --text-dark: #343a40;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #121212;
  --bg-gradient-primary: linear-gradient(135deg, #ff4d5a 0%, #ff8370 100%);
  --bg-gradient-secondary: linear-gradient(135deg, #2c3e50 0%, #4a6583 100%);
  --bg-gradient-accent: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  --bg-gradient-dark: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --card-bg: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 4rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  
  /* Container */
  --container-padding: 1.5rem;
  --container-max-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

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

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

a:hover {
  color: var(--accent-color-dark);
}

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

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--bg-gradient-primary);
  margin: var(--space-sm) auto var(--space-lg);
  border-radius: var(--border-radius-full);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button styles */
.btn,
button,
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: var(--bg-gradient-primary);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 10px rgba(255, 77, 90, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(255, 77, 90, 0.4);
}

.btn:active,
button:active,
input[type='submit']:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(255, 77, 90, 0.4);
}

.btn::after,
button::after,
input[type='submit']::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.btn:hover::after,
button:hover::after,
input[type='submit']:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.btn-secondary,
.secondary {
  background: var(--bg-gradient-secondary);
  box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.btn-secondary:hover,
.secondary:hover {
  box-shadow: 0 7px 15px rgba(44, 62, 80, 0.4);
}

.btn-accent,
.accent {
  background: var(--bg-gradient-accent);
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.btn-accent:hover,
.accent:hover {
  box-shadow: 0 7px 15px rgba(52, 152, 219, 0.4);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  background: var(--bg-gradient-primary);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: 0 6px 15px rgba(255, 77, 90, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 77, 90, 0.5);
}

.play-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: var(--bg-gradient-primary);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 10px rgba(255, 77, 90, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.play-button.secondary {
  background: var(--bg-gradient-secondary);
  box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.read-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-normal);
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--accent-color-dark);
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 var(--space-md);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-md);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px;
  transition: all var(--transition-normal);
}

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: 1;
}

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

.hero-content {
  max-width: 800px;
  margin-left: 0;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  color: var(--text-light);
  max-width: 700px;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.stat-label {
  font-size: var(--font-size-md);
  color: var(--text-light);
  margin-top: var(--space-xs);
}

/* Games section */
.games-section {
  padding: var(--space-2xl) 0;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.game-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.game-card.featured {
  grid-column: 1 / -1;
}

.card-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

.game-card:hover .card-image img {
  transform: scale(1.05);
}

.game-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  z-index: 2;
}

.game-badge.free {
  top: auto;
  bottom: var(--space-md);
  left: var(--space-md);
  background-color: var(--highlight-color);
}

.card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--secondary-color);
}

.game-rating {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.stars {
  color: var(--highlight-color);
  font-size: var(--font-size-md);
  letter-spacing: 2px;
}

.rating-count {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.game-features {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
}

.game-features li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
}

.game-features li span {
  color: var(--accent-color);
  font-weight: 700;
  margin-right: var(--space-sm);
}

/* About section */
.about-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: var(--card-shadow);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* History section */
.history-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.history-section .section-title {
  color: var(--text-light);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: var(--space-xl) auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--border-radius-full);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-right: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: var(--space-xl);
}

.timeline-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 0;
  right: -12px;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(255, 77, 90, 0.3);
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: -12px;
}

.timeline-content {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  margin-bottom: 0;
}

/* Resources section */
.resources-section {
  padding: var(--space-2xl) 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-card:hover {
  transform: translateY(-10px) rotateZ(1deg);
  box-shadow: var(--card-shadow-hover);
}

.resource-icon {
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-md);
  border-radius: var(--border-radius-full);
  overflow: hidden;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.resource-card:hover .resource-icon img {
  transform: scale(1.1);
}

.resource-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  color: var(--secondary-color);
}

.resource-card p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Blog section */
.blog-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

.blog-card p {
  margin-bottom: var(--space-lg);
}

/* Press section */
.press-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-gradient-secondary);
  color: var(--text-light);
}

.press-section .section-title {
  color: var(--text-light);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.press-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.press-logo {
  height: 80px;
  margin-bottom: var(--space-lg);
}

.press-logo img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.press-item:hover .press-logo img {
  transform: scale(1.1);
}

.press-item blockquote {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.press-item blockquote::before,
.press-item blockquote::after {
  content: '"';
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  line-height: 0;
  color: var(--primary-color);
  position: absolute;
}

.press-item blockquote::before {
  left: -15px;
  top: 15px;
}

.press-item blockquote::after {
  right: -15px;
  bottom: -5px;
  content: '"';
}

.press-source {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary-color);
}

/* Contact section */
.contact-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-info {
  padding-right: var(--space-xl);
}

.contact-methods {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.method-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.method-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-details h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-xs);
}

.method-details p {
  font-size: var(--font-size-md);
  margin-bottom: 0;
  color: var(--text-muted);
}

.contact-form-container {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  padding: var(--space-xl);
}

.contact-form-container h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.progress-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bg-gradient-accent);
  transition: width var(--transition-normal);
  border-bottom-left-radius: var(--border-radius-md);
}

.form-group input:focus ~ .progress-indicator,
.form-group textarea:focus ~ .progress-indicator,
.form-group select:focus ~ .progress-indicator {
  width: 100%;
  border-bottom-right-radius: var(--border-radius-md);
}

.submit-button {
  justify-self: start;
  margin-top: var(--space-md);
  padding: 0.75rem 2rem;
}

/* Footer */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  background-color: var(--secondary-color-dark);
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-logo p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
  color: var(--primary-color);
  font-size: var(--font-size-md);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: var(--space-sm);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer ul li a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-social ul li a::before {
  content: '›';
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.footer-social ul li a:hover::before {
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Success page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--bg-light);
}

.success-container {
  max-width: 600px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
}

.success-page h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.success-page p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  color: var(--text-muted);
}

/* Privacy & Terms pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--container-padding);
}

.content-wrapper h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-xl);
}

.content-wrapper h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

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

.content-wrapper ul {
  margin-bottom: var(--space-lg);
}

/* Media queries */
@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text,
  .about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-image {
    order: -1;
    margin-bottom: var(--space-xl);
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 70px;
  }
  
  .timeline-marker {
    left: 18px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    left: 18px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
  }
  
  .nav-links {
    position: absolute;
    right: 0;
    top: 8vh;
    height: 92vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-links li {
    opacity: 0;
  }
  
  .burger {
    display: block;
  }
  
  .nav-active {
    transform: translateX(0%);
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  
  .hero-content p {
    font-size: var(--font-size-lg);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: var(--space-xl);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer ul li a:hover {
    transform: translateX(0);
  }
  
  .footer-social ul li a {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

.slide-in-left {
  animation: slideInLeft var(--transition-slow) forwards;
}

.slide-in-right {
  animation: slideInRight var(--transition-slow) forwards;
}

.zoom-in {
  animation: zoomIn var(--transition-slow) forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.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-0 {
  margin-top: 0;
}

.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);
}