@font-face {
  font-family: 'Montserrat';
  src: url("../assets/font/Montserrat-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../assets/font/Montserrat-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../assets/font/Montserrat-Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --accent-color: #06b6d4;
  --accent-hover: #0891b2;
  --dark-bg: #0f172a;
  --dark-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --dark-secondary: #1e293b;
  --light-bg: #f8fafc;
  --light-bg-alt: #f1f5f9;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

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

.logo a {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.logo a:hover {
  filter: brightness(1.1);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-color);
}

.main-nav a:hover::after {
  width: 100%;
}

.phone-btn {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.phone-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.phone-btn:hover::before {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background: var(--dark-bg);
  padding: 120px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/photo1.webp"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text {
  color: var(--white);
}

.hero-label {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--white);
}

.hero-description {
  display: none;
}

.hero-image {
  display: block;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

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

@media (max-width: 768px) {
  .hero-image {
    max-width: 100%;
    margin-top: 20px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Values Section */
.values-section {
  background: var(--white);
  padding: 80px 0;
}

.section-label {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.value-number {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.value-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}
.cta-section-dark {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
  background: var(--dark-bg-gradient);
  background-image: url("../img/photo3.webp"); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.cta-section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.85) 100%
  );
  z-index: 1;
}

.cta-section-dark .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-section-dark h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section-dark p {
  color: #ddd;
  margin-bottom: 30px;
}

.cta-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-section-dark h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 32px;
  font-weight: 700;
}

/* Benefits Section */
.benefits-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.benefit-label {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-main h2 {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-main p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.quote-icon {
  font-size: 60px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

/* Final CTA Section */
.final-cta-section {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.final-cta-section .container {
  position: relative;
  z-index: 2;
}

.final-cta-section .cta-label {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta-section h2 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

/* Adding games page styles */

/* Games Header Section */
.games-header {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.games-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.games-header p {
  font-size: 18px;
  color: var(--text-gray);
}

/* Games Section */
.games-section {
  background: var(--white);
  padding: 60px 0 80px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.game-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-color);
}

.game-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--dark-bg);
}

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

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

.game-info {
  padding: 24px;
  background: var(--white);
}

.game-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.game-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Game Detail Section */
.game-detail-section {
  background: var(--white);
  padding: 80px 0;
  min-height: 600px;
}

.game-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.game-detail-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-detail-image:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.game-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.game-detail-info h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.game-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.game-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
}

.btn-secondary-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary-outline:hover {
  color: var(--white);
  border-color: transparent;
}

.btn-secondary-outline:hover::before {
  left: 0;
}

.game-not-found {
  text-align: center;
  padding: 80px 20px;
}

.game-not-found h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.game-not-found p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

/* Game Navigation */
.game-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.game-nav-prev,
.game-nav-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-nav-prev {
  text-align: left;
}

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

.game-nav-prev a,
.game-nav-next a {
  font-size: 14px;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.game-nav-prev a:hover,
.game-nav-next a:hover {
  color: var(--accent-color);
  transform: translateX(3px);
}

.game-nav-next a:hover {
  transform: translateX(-3px);
}

.game-nav-prev p,
.game-nav-next p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}

/* Adding Services Page Styles */

/* Services Hero Section */
.services-hero {
  background: var(--dark-bg);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

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

.services-hero .hero-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.services-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

/* Service Pack Sections */
.service-pack {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.service-pack:nth-child(even) {
  background: var(--light-bg);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}

.service-pack-reverse .service-content {
  direction: rtl;
}

.service-pack-reverse .service-text {
  direction: ltr;
}

.service-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-pack:nth-child(even) .service-text {
  background: var(--light-bg);
}

.service-number {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}
.service-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--dark-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s ease;
}

.service-image:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-image:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .service-image {
    height: auto;
    margin-top: 20px;
  }

  .service-image img {
    height: auto;
  }
}
.service-testimonial {
  background: var(--light-bg);
  padding: 80px 0;
}

.testimonial-large {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-large:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.testimonial-large .quote-icon {
  font-size: 80px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.testimonial-large .testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-weight: 400;
}

.testimonial-large .testimonial-author {
  font-size: 13px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
  background: var(--dark-bg);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
}

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

.about-hero .hero-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

/* About Intro Section */
.about-intro {
  background: var(--light-bg);
  padding: 80px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-intro-text .section-label {
  text-align: left;
  margin-bottom: 24px;
}

.about-intro-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.about-intro-description p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-intro-description p:last-child {
  margin-bottom: 0;
}

/* About Pillars Section */
.about-pillars {
  background: var(--white);
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pillar-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}

/* About CTA Section */
.about-cta {
  background: var(--dark-bg-gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
}

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

.about-cta .cta-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-cta h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Adding Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
  background: var(--dark-bg);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.8) 100%);
}

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

.contact-hero .hero-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

/* Contact Content Section */
.contact-content {
  background: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.contact-subtitle {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-details p strong {
  color: var(--text-dark);
}

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

.contact-details li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-details li strong {
  color: var(--text-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-label {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.contact-form-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: var(--white);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}
.contact-cta {
  background: var(--dark-bg-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("../img/photo3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
  z-index: 1;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Completing contact CTA styles and adding all missing styles */
.contact-cta .container {
  position: relative;
  z-index: 2;
}

.contact-cta .cta-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-cta h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

/* Privacy Policy Page Styles */
.privacy-section {
  background: var(--light-bg);
  padding: 80px 0;
  min-height: 100vh;
}

.privacy-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}

.privacy-section-item {
  margin-bottom: 48px;
}

.privacy-section-item h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.privacy-section-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.privacy-section-item p:last-child {
  margin-bottom: 0;
}

.privacy-section-item ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.privacy-section-item li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 8px;
}

/* Footer Styles */
.site-footer {
  background: var(--dark-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.site-footer p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section-dark h2,
  .final-cta-section h2 {
    font-size: 32px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .game-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .game-detail-info h1 {
    font-size: 36px;
  }

  .game-navigation {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .game-nav-prev,
  .game-nav-next {
    text-align: center;
  }

  .services-hero h1 {
    font-size: 36px;
  }

  .service-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-pack-reverse .service-content {
    direction: ltr;
  }

  .service-text {
    padding: 60px 40px;
  }

  .service-text h2 {
    font-size: 28px;
  }

  .service-image {
    height: 350px;
  }

  .testimonial-large {
    padding: 40px 30px;
  }

  .testimonial-large .testimonial-text {
    font-size: 18px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta h2 {
    font-size: 32px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-cta h2 {
    font-size: 32px;
  }

  .privacy-section h1 {
    font-size: 32px;
  }

  .privacy-section-item h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section {
    padding: 80px 0;
    min-height: 500px;
  }

  .section-title {
    font-size: 28px;
  }

  .phone-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-section,
  .values-section,
  .cta-section-dark,
  .benefits-section,
  .testimonials-section,
  .final-cta-section {
    padding: 50px 0;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .games-header h1 {
    font-size: 32px;
  }

  .games-header p {
    font-size: 16px;
  }

  .game-detail-info h1 {
    font-size: 28px;
  }

  .game-actions {
    flex-direction: column;
  }

  .game-actions .btn {
    width: 100%;
    text-align: center;
  }

  .services-hero {
    padding: 60px 0 50px;
  }

  .services-hero h1 {
    font-size: 28px;
  }

  .service-text {
    padding: 40px 20px;
  }

  .service-text h2 {
    font-size: 24px;
  }

  .service-image {
    height: 250px;
  }

  .testimonial-large {
    padding: 30px 20px;
  }

  .testimonial-large .quote-icon {
    font-size: 60px;
  }

  .testimonial-large .testimonial-text {
    font-size: 16px;
  }

  .about-hero {
    padding: 60px 0 50px;
    min-height: 300px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .about-intro {
    padding: 50px 0;
  }

  .about-intro-text h2 {
    font-size: 24px;
  }

  .about-pillars {
    padding: 50px 0;
  }

  .about-cta {
    padding: 60px 0;
  }

  .about-cta h2 {
    font-size: 24px;
  }

  .contact-hero {
    padding: 60px 0 50px;
    min-height: 300px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-content {
    padding: 50px 0;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
  }

  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta h2 {
    font-size: 24px;
  }

  .privacy-section {
    padding: 50px 0;
  }

  .privacy-section h1 {
    font-size: 28px;
  }

  .privacy-section-item h2 {
    font-size: 20px;
  }

  .privacy-section-item {
    margin-bottom: 32px;
  }

  .site-footer {
    padding: 25px 0;
  }

  .site-footer p {
    font-size: 13px;
  }
}

