/* =========== Root Variables =========== */
:root {
  /* Primary color palette */
  --primary-color: #5000ca;
  --primary-light: #7a32e8;
  --primary-dark: #3a0095;
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  
  /* Secondary color palette */
  --secondary-color: #00c9ff;
  --secondary-light: #50e3ff;
  --secondary-dark: #0096c2;
  
  /* Neutral colors */
  --neutral-dark: #1a1a2e;
  --neutral-medium: #333344;
  --neutral-light: #e0e0e0;
  --neutral-white: #ffffff;
  
  /* Text colors */
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #f8f9fa;
  
  /* UI colors */
  --success-color: #2ed573;
  --warning-color: #ffa502;
  --error-color: #ff4757;
  
  /* 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-circle: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-back: -1;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* =========== Base Styles =========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--neutral-light);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.section-padding {
  padding: var(--space-lg) 0;
}

/* =========== Section Headers =========== */
.section-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-divider {
  height: 4px;
  width: 80px;
  background: var(--primary-gradient);
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--neutral-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--neutral-white);
  color: var(--neutral-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-primary:hover {
  background: rgba(80, 0, 202, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* =========== Navigation =========== */
.navbar {
  background-color: transparent;
  padding: 1.5rem 0;
  transition: all var(--transition-normal);
  z-index: var(--z-fixed);
}

.navbar.scrolled {
  background-color: var(--neutral-dark);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  color: var(--neutral-white);
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: var(--neutral-white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: all var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* =========== Hero Section =========== */
.hero-section {
  position: relative;
  background-image: url('../image/cosmic-birds-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(58, 0, 149, 0.8));
  z-index: 0;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
  color: var(--neutral-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: var(--space-md);
  color: var(--neutral-white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--neutral-white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--neutral-white);
}

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

.floating-animation {
  animation: floating 3s ease-in-out infinite;
}

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

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

/* Particle styling will be handled by JavaScript */

/* =========== About Section =========== */
.about-section {
  position: relative;
  background-color: var(--neutral-white);
  overflow: hidden;
}

.about-content {
  padding: var(--space-md);
}

.progress-container {
  margin-top: var(--space-md);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress {
  height: 8px;
  margin-bottom: var(--space-md);
  background-color: var(--neutral-light);
  border-radius: var(--radius-circle);
  overflow: hidden;
}

.progress-bar {
  background: var(--primary-gradient);
  border-radius: var(--radius-circle);
}

.rounded-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.rounded-image:hover {
  transform: scale(1.02);
}

/* =========== Features Section =========== */
.features-section {
  background-color: var(--neutral-light);
  position: relative;
}

.feature-card {
  height: 100%;
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card-content {
  padding: var(--space-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

/* =========== Mission Section =========== */
.mission-section {
  background-color: var(--neutral-white);
  position: relative;
}

.mission-content {
  padding: var(--space-md);
}

.mission-quote {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-md);
}

.mission-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.mission-quote cite {
  font-style: normal;
  font-weight: 500;
}

/* =========== Gallery Section =========== */
.gallery-section {
  background-color: var(--neutral-light);
}

.gallery-container {
  margin-top: var(--space-md);
}

.gallery-item {
  margin-bottom: var(--space-md);
}

.gallery-item .image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* =========== Press Section =========== */
.press-section {
  background-color: var(--neutral-white);
}

.press-card {
  height: 100%;
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.rating {
  color: var(--warning-color);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

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

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

.press-quotes {
  padding: var(--space-md);
}

.press-quote {
  background-color: var(--neutral-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  height: 100%;
}

.press-quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.press-quote cite {
  font-style: normal;
  font-weight: 500;
  color: var(--primary-color);
}

/* =========== Resources Section =========== */
.resources-section {
  background-color: var(--neutral-light);
}

.resources-grid {
  margin-top: var(--space-md);
}

.resource-card {
  background-color: var(--neutral-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--primary-gradient);
  color: var(--neutral-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-top: auto;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--neutral-white);
}

/* =========== Events Section =========== */
.events-section {
  background-color: var(--neutral-white);
}

.events-timeline {
  margin-top: var(--space-md);
}

.event-card {
  display: flex;
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: var(--primary-gradient);
  color: var(--neutral-white);
  text-align: center;
  min-width: 100px;
}

.event-date .month {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 900;
}

.event-content {
  padding: var(--space-md);
  flex-grow: 1;
}

.event-location {
  color: var(--text-medium);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

/* =========== Instructors (Game Characters) Section =========== */
.instructors-section {
  background-color: var(--neutral-light);
}

.character-card {
  height: 100%;
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-md);
}

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

.character-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.character-stats {
  width: 100%;
  margin-top: var(--space-sm);
}

.character-stats .stat {
  margin-bottom: var(--space-xs);
}

.character-stats .stat span {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.character-stats .progress {
  height: 6px;
  margin-bottom: var(--space-xs);
}

.character-stats .progress-bar {
  background: var(--primary-gradient);
}

/* =========== Partners Section =========== */
.partners-section {
  background-color: var(--neutral-white);
}

.partners-grid {
  margin-top: var(--space-md);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  height: 120px;
  transition: transform var(--transition-normal);
}

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

/* =========== Behind the Scenes Section =========== */
.behind-scenes-section {
  background-color: var(--neutral-light);
}

.behind-scenes-content {
  padding: var(--space-md);
}

.development-stats {
  margin-top: var(--space-lg);
}

.stat-card {
  background-color: var(--neutral-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  margin-bottom: var(--space-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-medium);
}

/* =========== History Section =========== */
.history-section {
  background-color: var(--neutral-white);
  position: relative;
}

.timeline {
  position: relative;
  margin-top: var(--space-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-gradient);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: var(--radius-circle);
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-date {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--neutral-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: var(--space-md);
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  margin-bottom: var(--space-sm);
}

.timeline-content .image-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content img {
  width: 100%;
  transition: transform var(--transition-normal);
}

.timeline-content:hover img {
  transform: scale(1.05);
}

/* =========== Contact Section =========== */
.contact-section {
  background-color: var(--neutral-light);
}

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

.info-item {
  margin-bottom: var(--space-md);
}

.info-item h3 {
  margin-bottom: var(--space-sm);
}

.info-item p {
  margin-bottom: var(--space-xs);
}

.social-links {
  margin-top: var(--space-md);
}

.social-links h3 {
  margin-bottom: var(--space-sm);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.social-icons a {
  padding: 0.5rem 1rem;
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-form-container {
  background-color: var(--neutral-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-control {
  height: auto;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(80, 0, 202, 0.25);
}

textarea.form-control {
  resize: vertical;
}

/* =========== Footer =========== */
.footer-section {
  background-color: var(--neutral-dark);
  color: var(--neutral-light);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-info {
  margin-bottom: var(--space-md);
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.app-badges {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-links h3 {
  color: var(--neutral-white);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

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

.footer-social h3 {
  color: var(--neutral-white);
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.footer-social .social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-social .social-links a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  margin-bottom: var(--space-sm);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--neutral-light);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* =========== Cookie Consent =========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  color: var(--neutral-white);
  padding: var(--space-md);
  z-index: var(--z-modal);
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: var(--space-md);
}

/* =========== Success Page =========== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--neutral-light);
  text-align: center;
}

.success-container {
  max-width: 600px;
  padding: var(--space-lg);
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

/* =========== Privacy & Terms Pages =========== */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-lg);
}

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

/* =========== Responsive Styles =========== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot, .timeline-date {
    left: 30px;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    margin-top: var(--space-sm);
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: var(--space-md) 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--neutral-dark);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-platforms {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-content {
    padding: var(--space-sm);
  }
  
  .partner-logo {
    height: 80px;
  }
  
  .social-icons {
    flex-direction: column;
  }
}

/* =========== Animation Classes =========== */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

.zoom-in {
  animation: zoomIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  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.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}