:root {
  /* Primary Colors */
  --primary-color: #3a4cb1;
  --primary-light: #5e6fd0;
  --primary-dark: #2c3a8c;
  
  /* Secondary Colors */
  --secondary-color: #6c757d;
  --secondary-light: #868e96;
  --secondary-dark: #495057;
  
  /* Monochromatic Palette */
  --mono-100: #f8f9fa;
  --mono-200: #e9ecef;
  --mono-300: #dee2e6;
  --mono-400: #ced4da;
  --mono-500: #adb5bd;
  --mono-600: #6c757d;
  --mono-700: #495057;
  --mono-800: #343a40;
  --mono-900: #212529;
  
  /* Accent Colors */
  --accent-color: #ff6b6b;
  --accent-light: #ff8787;
  --accent-dark: #fa5252;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blur: 10px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-header: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
  --z-cookie: 9999;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Roboto:wght@300;400;500;700&display=swap');

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

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--mono-800);
  background-color: var(--mono-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--mono-900);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--mono-700);
}

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

a:hover {
  color: var(--primary-light);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Section Styling */
section {
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--mono-900);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--mono-700);
  font-size: 1.1rem;
}

/* Glassmorphism Effect */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: all var(--transition-normal);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-btn {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(58, 76, 177, 0.4);
}

.primary-btn:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 76, 177, 0.5);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 76, 177, 0.3);
}

button, 
input[type="submit"] {
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li {
  margin-left: 1.5rem;
}

.desktop-nav ul li a {
  color: white;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition-fast);
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(33, 37, 41, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-normal);
}

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

.mobile-nav ul li {
  margin-bottom: 1rem;
}

.mobile-nav ul li a {
  color: white;
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--mono-200);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--mono-300);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Games Section */
.games-section {
  background-color: var(--mono-100);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-category {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.game-description {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.score {
  font-weight: 700;
  color: var(--mono-700);
}

.view-more-container {
  text-align: center;
  margin-top: 2rem;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--mono-200);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.review-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--mono-600);
  font-size: 0.9rem;
}

.review-excerpt {
  margin-bottom: 1.5rem;
}

.pros-cons {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.pros, .cons {
  flex: 1;
}

.pros h4, .cons h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.pros li, .cons li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.read-more {
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.read-more:hover:after {
  transform: translateX(3px);
}

/* Resources Section */
.resources-section {
  background: linear-gradient(135deg, var(--mono-100), var(--mono-200));
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-link {
  display: inline-block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--primary-color);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.resource-link:hover {
  border-bottom-color: var(--primary-color);
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--mono-100);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.case-study-excerpt {
  margin-bottom: 1.5rem;
}

.case-study-highlights {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}

.case-study-highlights li {
  margin-bottom: 0.5rem;
}

/* News Section */
.news-section {
  background-color: var(--mono-200);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.news-date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background: linear-gradient(135deg, var(--mono-100), var(--mono-200));
}

.behind-scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
}

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

/* Awards Section */
.awards-section {
  background-color: var(--mono-100);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.award-card {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
}

.award-icon {
  flex: 0 0 100px;
  margin-right: 1.5rem;
  text-align: center;
}

.award-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.award-content {
  flex: 1;
}

.winner {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.awards-archive {
  text-align: center;
  margin-top: 2rem;
}

/* Workshops Section */
.workshops-section {
  background-color: var(--mono-200);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.workshop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

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

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

.workshop-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.workshop-date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.workshop-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.workshop-details {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-sm);
}

.workshop-details p {
  margin-bottom: 0.5rem;
}

.workshop-details p:last-child {
  margin-bottom: 0;
}

.workshops-calendar {
  text-align: center;
  margin-top: 2rem;
}

/* Careers Section */
.careers-section {
  background: linear-gradient(135deg, var(--mono-100), var(--mono-200));
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.career-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.career-location {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.career-description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.career-requirements {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}

.career-requirements li {
  margin-bottom: 0.5rem;
}

.careers-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-md);
}

/* Contact Section */
.contact-section {
  background-color: var(--mono-200);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.contact-info {
  padding: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.icon {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.office-hours {
  margin-bottom: 2rem;
}

.office-hours h4, .social-links h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.social-icons a:hover {
  color: var(--primary-light);
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--mono-300);
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 76, 177, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

/* Media Section */
.media-section {
  background-color: var(--mono-100);
}

.media-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 250px;
}

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

.media-item:hover img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.media-item:hover .media-overlay {
  opacity: 1;
  transform: translateY(0);
}

.media-overlay h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.media-overlay p {
  color: var(--mono-300);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.video-item:hover .play-button {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Footer Section */
.footer-section {
  background-color: var(--mono-900);
  color: white;
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  margin-bottom: 1.5rem;
  max-width: 180px;
}

.footer-logo p {
  color: var(--mono-400);
}

.footer-links {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--mono-400);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: white;
}

.social-links a {
  margin-right: 1rem;
  font-size: 1rem;
  color: var(--mono-400);
}

.social-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--mono-800);
}

.footer-bottom p {
  color: var(--mono-500);
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(33, 37, 41, 0.95);
  color: white;
  padding: 1rem;
  z-index: var(--z-cookie);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  color: var(--mono-300);
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--primary-light);
}

/* Additional Pages Styles */
.page-header {
  background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  color: white;
}

.page-content {
  padding: 4rem 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

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

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-message h2 {
  margin-bottom: 1.5rem;
}

.success-message p {
  margin-bottom: 2rem;
}

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

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.privacy-content h2, .terms-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.privacy-content p, .terms-content p {
  margin-bottom: 1.5rem;
}

.privacy-content ul, .terms-content ul {
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    max-width: 600px;
    margin-top: 100px;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 1 1 50%;
    margin-bottom: 1.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-md) 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 1.5rem;
    padding: 0;
  }
  
  .pros-cons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .award-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .award-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Animation Styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

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

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

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}