/* 
  Arcade Haven - Main Stylesheet
  A modern, responsive design for a UK arcade and gaming club website
*/

/* ----- Base Styles ----- */
:root {
  --primary-color: #7b2cbf;
  --primary-dark: #5a189a;
  --primary-light: #9d4edd;
  --secondary-color: #00b4d8;
  --accent-color: #f72585;
  --dark-color: #240046;
  --light-color: #f8f9fa;
  --gray-dark: #343a40;
  --gray-medium: #6c757d;
  --gray-light: #e9ecef;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --body-bg: #121212;
  --card-bg: #1e1e1e;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --neon-glow: 0 0 10px rgba(157, 78, 221, 0.8), 0 0 20px rgba(157, 78, 221, 0.5);
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --container-width: 1200px;
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--body-bg);
  background-image: 
    linear-gradient(to bottom, rgba(36, 0, 70, 0.3), rgba(18, 18, 18, 0.8)),
    url('images/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: white;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

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

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

/* ----- Welcome Banner ----- */
.welcome-banner {
  background: linear-gradient(90deg, var(--primary-dark), var(--dark-color));
  color: white;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.welcome-banner p {
  margin: 0;
}

/* ----- Header & Navigation ----- */
header {
  background-color: rgba(18, 18, 18, 0.9);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  max-width: 120px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  position: relative;
}

nav a:hover {
  color: white;
  background-color: rgba(157, 78, 221, 0.15);
}

nav a.active {
  color: white;
  background-color: var(--primary-dark);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(123, 44, 191, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #0096c7);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0096c7, #0077b6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 180, 216, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

/* ----- Hero Section ----- */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: var(--text-shadow);
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 44, 191, 0.5);
}

/* ----- Features Section ----- */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background-color: rgba(30, 30, 30, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(157, 78, 221, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

.feature-icon svg {
  color: white;
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

/* ----- Testimonials Section ----- */
.testimonials {
  padding: 80px 0;
  background-color: rgba(30, 30, 30, 0.4);
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.testimonial-slider.large {
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial {
  scroll-snap-align: start;
  background-color: rgba(36, 0, 70, 0.6);
  padding: 2rem;
  border-radius: var(--border-radius);
  min-width: 300px;
  max-width: 500px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  margin-bottom: 1.5rem;
}

.testimonial-text p {
  font-style: italic;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.testimonial-author p {
  margin: 0;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9rem;
  font-weight: normal;
  opacity: 0.8;
}

/* ----- Blog Preview Section ----- */
.blog-preview {
  padding: 80px 0;
}

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

.blog-card {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(157, 78, 221, 0.2);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-speed) ease;
}

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

.view-all-container {
  margin-top: 3rem;
  text-align: center;
}

/* ----- CTA Section ----- */
.cta {
  padding: 80px 0;
  background: linear-gradient(to right, rgba(36, 0, 70, 0.8), rgba(90, 24, 154, 0.8));
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern.svg');
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content {
  flex: 1;
  max-width: 650px;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.cta-image {
  flex: 1;
  max-width: 400px;
  display: none; /* Hidden on mobile, will show on larger screens */
}

.cta-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ----- Footer ----- */
footer {
  background-color: rgba(18, 18, 18, 0.9);
  color: var(--light-color);
  padding: 60px 0 20px;
}

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

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

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.company-info {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

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

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--light-color);
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
  display: inline-block;
}

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

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--light-color);
}

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

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(157, 78, 221, 0.1);
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4);
}

.social-icons svg {
  color: var(--light-color);
  width: 20px;
  height: 20px;
}

.social-icons.large {
  gap: 1.5rem;
}

.social-icons.large a {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
  gap: 0.5rem;
}

.social-icons.large a:hover {
  background: none;
  box-shadow: none;
}

.social-icons.large span {
  margin-left: 10px;
}

.opening-hours {
  margin-top: 1.5rem;
}

.opening-hours h3 {
  margin-bottom: 0.8rem;
}

.opening-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.legal-links a {
  color: var(--light-color);
  opacity: 0.8;
  transition: opacity var(--transition-speed) ease;
}

.legal-links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----- Cookie Banner ----- */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: bottom 0.5s ease;
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content a {
  font-size: 0.9rem;
  text-decoration: underline;
  opacity: 0.8;
}

/* ----- Translucent Sections ----- */
.translucent-section {
  background-color: rgba(36, 0, 70, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ----- Page Banner ----- */
.page-banner {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--text-shadow);
}

.page-banner p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--secondary-color);
}

/* ----- About Page ----- */
.our-story {
  padding: 80px 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.our-values {
  padding: 80px 0;
}

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

.value-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: rgba(30, 30, 30, 0.6);
  transition: transform var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.value-icon svg {
  color: white;
  width: 25px;
  height: 25px;
}

.team {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.team-member {
  text-align: center;
  transition: transform var(--transition-speed) ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(157, 78, 221, 0.3);
}

.team-member h3 {
  margin-bottom: 0.3rem;
}

.team-member p:first-of-type {
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.milestones {
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: rgba(30, 30, 30, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

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

.timeline-content h3 {
  color: var(--primary-light);
  margin-bottom: 0.8rem;
}

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

/* ----- Games Page ----- */
.game-categories {
  padding: 60px 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 12px 24px;
  background-color: rgba(30, 30, 30, 0.6);
  border: none;
  border-radius: var(--border-radius);
  color: var(--light-color);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.tab-btn:hover {
  background-color: rgba(157, 78, 221, 0.2);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.game-category {
  display: none;
}

.game-category.active {
  display: block;
}

.category-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.game-card {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease;
  height: 100%;
}

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

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card h3, .game-card h4 {
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  padding: 0 1rem 1rem;
  margin-bottom: 0;
}

.game-tags {
  padding: 0 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.game-tags span {
  background-color: rgba(157, 78, 221, 0.2);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.category-footer {
  margin-top: 3rem;
  text-align: center;
}

.pc-specs {
  margin-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.spec-item {
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: rgba(30, 30, 30, 0.6);
}

.spec-item h4 {
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.spec-item p {
  margin-bottom: 0;
}

.game-library {
  margin-bottom: 3rem;
}

.library-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

.console-platforms {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.platform {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.platform img {
  width: 100%;
  max-width: 350px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-info {
  flex: 1;
  min-width: 300px;
}

.platform-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.platform-info h4 {
  margin: 1.5rem 0 0.8rem;
}

.platform-info ul {
  list-style-position: inside;
}

.retro-consoles {
  margin-bottom: 3rem;
}

.retro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.retro-item {
  text-align: center;
}

.retro-item img {
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vr-systems {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.vr-system {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.vr-system img {
  width: 120px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vr-info {
  flex: 1;
}

.vr-info h3 {
  margin-bottom: 0.5rem;
}

.vr-info h4 {
  margin: 1rem 0 0.5rem;
}

.vr-safety {
  margin-bottom: 3rem;
}

.vr-safety h3 {
  margin-bottom: 1rem;
}

.vr-safety ul {
  list-style-position: inside;
}

.game-events {
  padding: 80px 0;
  background-color: rgba(36, 0, 70, 0.3);
}

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

.event-card {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-speed) ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: var(--border-radius);
  color: white;
  text-align: center;
}

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

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
}

.event-details {
  flex: 1;
}

.event-details h3 {
  margin-bottom: 0.8rem;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.events-footer {
  margin-top: 3rem;
  text-align: center;
}

.faq {
  padding: 80px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-speed) ease;
}

.accordion-toggle:hover {
  background-color: rgba(157, 78, 221, 0.1);
}

.accordion-toggle h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: white;
}

.accordion-toggle .icon {
  font-size: 1.5rem;
  color: var(--primary-light);
  transition: transform var(--transition-speed) ease;
}

.accordion-item.active .accordion-toggle .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

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

/* ----- Blog Page ----- */
.blog-section {
  padding: 60px 0;
}

.blog-layout {
  display: flex;
  gap: 3rem;
}

.blog-main {
  flex: 3;
  min-width: 0;
}

.blog-sidebar {
  flex: 1;
  min-width: 250px;
}

.blog-feature {
  margin-bottom: 3rem;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.blog-feature-image {
  height: 300px;
}

.blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-date, .blog-author, .blog-category, .post-date, .post-author, .post-category {
  font-size: 0.9rem;
  color: var(--gray-medium);
  display: flex;
  align-items: center;
}

.blog-feature-content h2 {
  margin-bottom: 1rem;
}

.blog-feature-content p {
  margin-bottom: 1.5rem;
}

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

.blog-meta .blog-author::before, .post-author::before {
  content: '•';
  margin-right: 0.5rem;
}

.sidebar-widget {
  margin-bottom: 3rem;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

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

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-color);
}

.search-form button {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0 15px;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.search-form button:hover {
  background-color: var(--primary-dark);
}

.categories-widget ul {
  list-style: none;
}

.categories-widget li {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.categories-widget a {
  display: flex;
  justify-content: space-between;
  color: var(--light-color);
}

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

.categories-widget span {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-color);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recent-post {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.recent-post-content h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.post-date {
  font-size: 0.8rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud a {
  background-color: rgba(157, 78, 221, 0.1);
  color: var(--primary-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all var(--transition-speed) ease;
}

.tag-cloud a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* ----- Blog Post ----- */
.blog-post {
  padding: 60px 0;
}

.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.8rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-image img {
  width: 100%;
  display: block;
}

.post-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.post-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 1rem;
}

.post-image {
  margin: 2rem 0;
  text-align: center;
}

.post-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-style: italic;
}

.post-tags {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.post-tags h3 {
  margin-bottom: 1rem;
}

.post-tags ul {
  display: flex;
  list-style: none;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.post-tags li a {
  background-color: rgba(157, 78, 221, 0.1);
  color: var(--primary-light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
  display: inline-block;
}

.post-tags li a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.post-share {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.post-share h3 {
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 15px;
  border-radius: var(--border-radius);
  color: var(--light-color);
  font-weight: 500;
  transition: all var(--transition-speed) ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.share-buttons a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.share-buttons a:first-child {
  background-color: rgba(59, 89, 152, 0.2);
}

.share-buttons a:first-child:hover {
  background-color: rgba(59, 89, 152, 0.3);
}

.share-buttons a:nth-child(2) {
  background-color: rgba(29, 161, 242, 0.2);
}

.share-buttons a:nth-child(2):hover {
  background-color: rgba(29, 161, 242, 0.3);
}

.share-buttons a:nth-child(3) {
  background-color: rgba(0, 119, 181, 0.2);
}

.share-buttons a:nth-child(3):hover {
  background-color: rgba(0, 119, 181, 0.3);
}

.author-bio {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--gray-medium);
}

.author-info h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.related-posts {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

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

.related-post {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease;
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1rem 1rem 0.5rem;
}

.related-post h4 a {
  color: white;
}

.related-post h4 a:hover {
  color: var(--primary-light);
}

.related-post p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.post-navigation {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
}

.nav-previous, .nav-next {
  width: 48%;
}

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

.post-navigation span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0.5rem;
}

.post-navigation a {
  font-weight: 600;
}

.comments-section {
  max-width: 800px;
  margin: 0 auto;
}

.comments-section h3 {
  margin-bottom: 1rem;
}

.comments-note {
  color: var(--gray-medium);
  font-style: italic;
  margin-bottom: 2rem;
}

.comment-form-container h4 {
  margin-bottom: 1.5rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--light-color);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
}

/* ----- Pricing Page ----- */
.pricing-intro {
  padding: 60px 0;
}

.intro-content {
  flex: 1;
  max-width: 650px;
}

.intro-image {
  flex: 1;
  max-width: 450px;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

.intro-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.intro-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-intro .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-plans {
  padding: 40px 0 80px;
}

.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.toggle-btn {
  padding: 12px 24px;
  background-color: rgba(30, 30, 30, 0.6);
  border: none;
  border-radius: var(--border-radius);
  color: var(--light-color);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.toggle-btn:hover {
  background-color: rgba(157, 78, 221, 0.2);
}

.toggle-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.plan-section {
  display: none;
}

.plan-section.active {
  display: block;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 350px;
  position: relative;
  transition: transform var(--transition-speed) ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-color));
  padding: 2rem;
  text-align: center;
  color: white;
}

.pricing-header h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
}

.price .period {
  font-size: 1.1rem;
  opacity: 0.8;
}

.price .savings {
  font-size: 0.9rem;
  background: var(--accent-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 0.8rem;
  font-weight: 600;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li svg {
  color: var(--success-color);
  margin-top: 3px;
}

.pricing-features li.not-included {
  opacity: 0.5;
}

.pricing-features li.not-included svg {
  color: var(--danger-color);
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.popular-tag, .value-tag {
  position: absolute;
  top: 15px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--accent-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.value-tag {
  background: var(--success-color);
}

.corporate-intro {
  margin-bottom: 3rem;
}

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

.corporate-option {
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease;
}

.corporate-option:hover {
  transform: translateY(-10px);
}

.option-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.option-icon svg {
  color: white;
  width: 25px;
  height: 25px;
}

.corporate-option h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.option-price {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary-light);
}

.corporate-cta {
  text-align: center;
}

.membership-benefits {
  padding: 80px 0;
  margin-top: 60px;
}

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

.benefit {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: rgba(30, 30, 30, 0.6);
  transition: transform var(--transition-speed) ease;
}

.benefit:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon svg {
  color: white;
  width: 35px;
  height: 35px;
}

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

/* ----- Contact Page ----- */
.contact-info {
  padding: 60px 0;
}

.contact-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-details h2, .contact-form-container h2 {
  margin-bottom: 1.5rem;
}

.contact-form-container p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.method-icon svg {
  color: white;
  width: 25px;
  height: 25px;
}

.method-info {
  flex: 1;
}

.method-info h3 {
  margin-bottom: 0.5rem;
}

.method-info p {
  margin-bottom: 0.3rem;
}

.method-note {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.social-contact {
  margin-top: 3rem;
}

.social-contact h3 {
  margin-bottom: 1rem;
}

.social-contact p {
  margin-bottom: 1.5rem;
}

.contact-form {
  background-color: rgba(30, 30, 30, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit {
  margin-top: 1rem;
}

.location {
  padding: 60px 0;
}

.map-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.map {
  flex: 3;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.directions {
  flex: 2;
  min-width: 250px;
}

.directions h3 {
  margin-bottom: 1.5rem;
}

.transport-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.transport {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.transport-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(157, 78, 221, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transport-icon svg {
  color: var(--primary-light);
  width: 20px;
  height: 20px;
}

.transport-info {
  flex: 1;
}

.transport-info h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.transport-info p {
  margin-bottom: 0;
}

/* ----- Modal ----- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--dark-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-medium);
  transition: color var(--transition-speed) ease;
}

.close-modal:hover {
  color: white;
}

.thank-you-message {
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-message h3 {
  margin-bottom: 1rem;
}

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

/* ----- Media Queries ----- */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text h2 {
    font-size: 1.6rem;
  }
  
  .hero .container {
    flex-direction: column-reverse;
  }
  
  .hero-image {
    margin-bottom: 2rem;
  }
  
  .cta .container {
    flex-direction: column;
  }
  
  .cta-image {
    display: block;
    margin-top: 2rem;
  }
  
  .blog-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text h2 {
    font-size: 1.4rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-feature {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-previous, .nav-next {
    width: 100%;
    text-align: left;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text h2 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
  
  .share-buttons a span {
    display: none;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
