/* pestigames.com - Custom Styles */

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
  min-height: 100vh;
}

body.age-verification-active {
  overflow: hidden;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #3498db;
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 0.8rem;
  border-radius: 8px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.navbar-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-link:hover,
.navbar-link.active {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.navbar-cta {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white !important;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(45deg, #2980b9, #3498db);
}

/* Mobile Navigation */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.navbar-toggle:hover {
  background: rgba(52, 152, 219, 0.1);
}

.navbar-toggle-bar {
  width: 25px;
  height: 3px;
  background: #3498db;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-link {
    padding: 1rem;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    margin: 0.5rem 0;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/ff654bae76f224d5603f9253f6e4bd07fa37aaf9.svg");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta::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;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
}

/* Section Styles */
.section {
  padding: 6rem 0;
  background: white;
}

.section-alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(142, 68, 173, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.feature-desc {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(142, 68, 173, 0.1);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.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-content {
  padding: 2rem;
}

.game-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.game-desc {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.game-play {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.game-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(45deg, #2980b9, #3498db);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(142, 68, 173, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #7f8c8d;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border: 1px solid rgba(142, 68, 173, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #3498db;
  font-weight: bold;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.2);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-name {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.testimonial-location {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  color: #3498db;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #bdc3c7;
}

.footer-section a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #9b59b6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}

/* Age Verification Popup */
.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification.show {
  opacity: 1;
  visibility: visible;
}

.age-verification-content {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(52, 152, 219, 0.3);
}

.age-verification-icon {
  margin-bottom: 1.5rem;
}

.age-badge-large {
  display: inline-block;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  font-size: 4rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.age-verification-text {
  color: #ecf0f1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.age-verification-subtext {
  color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.age-verification-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-verify-yes {
  background: linear-gradient(45deg, #27ae60, #229954);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.age-verify-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
  background: linear-gradient(45deg, #229954, #27ae60);
}

.age-verify-no {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.age-verify-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  background: linear-gradient(45deg, #c0392b, #e74c3c);
}

@media (max-width: 768px) {
  .age-verification-content {
    padding: 2rem 1.5rem;
  }

  .age-badge-large {
    font-size: 3rem;
    padding: 0.8rem 1.5rem;
  }

  .age-verification-title {
    font-size: 1.5rem;
  }

  .age-verification-text {
    font-size: 1rem;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-policy {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-policy:hover {
  color: #9b59b6;
}

.cookie-accept {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .games-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .responsible-gaming-logos {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .responsible-gaming-logos .rg-logo-image {
    height: 50px;
    max-width: 120px;
  }
}

/* Contact Grid Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid h2 {
    font-size: 1.5rem !important;
  }

  .contact-grid input,
  .contact-grid select,
  .contact-grid textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-grid p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-4 {
  margin-top: 2rem;
}
.p-4 {
  padding: 2rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.loading {
  animation: pulse 2s infinite;
}

/* Additional Utility Classes from PHP Files */

/* Max-width container */
.content-max-width {
  max-width: 900px;
  margin: 0 auto;
}

/* Paragraph styling */
.content-paragraph {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 2.5rem;
}

/* Last updated paragraph */
.last-updated {
  color: #7f8c8d;
  margin-bottom: 3rem;
  font-style: italic;
  font-size: 1.1rem;
}

/* Section heading */
.content-heading {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* List styling */
.content-list {
  color: #2c3e50;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
  font-size: 1.1rem;
}

/* Sub-heading */
.content-sub-heading {
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Team member avatar */
.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
}

/* Role title */
.role-title {
  color: #8e44ad;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

/* Info box */
.info-box {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Contact info box */
.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
}

/* Contact info paragraph */
.contact-info-paragraph {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Stats container */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Stats item */
.stats-item {
  text-align: center;
}

/* Stats number */
.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #8e44ad;
  display: block;
}

/* Stats label */
.stats-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Game badge */
.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #8e44ad;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* Icon container in stats */
.icon-container {
  margin-top: 1.5rem;
  color: #8e44ad;
  font-size: 2.5rem;
}

/* Info block */
.info-block {
  background: #e8f4fd;
  border: 1px solid #bee5eb;
  border-radius: 15px;
  padding: 2rem;
}

/* Info block text */
.info-block-text {
  color: #0c5460;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Disclaimer box */
.disclaimer-box {
  background: #e8f4fd;
  border: 1px solid #bee5eb;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

/* Form styling */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form group */
.form-group {
  margin-bottom: 2rem;
}

/* Form label */
.form-label {
  display: block;
  margin-bottom: 0.8rem;
  color: #2c3e50;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Form input */
.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #3498db;
  outline: none;
}

/* Form button */
.form-button {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Message div */
.form-message {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  display: none;
}

/* Testimonial text */
.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Section title inline */
.section-title-inline {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

/* Contact paragraph */
.contact-paragraph {
  color: #7f8c8d;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

/* Content card */
.content-card {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ card */
.faq-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* FAQ heading */
.faq-heading {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

/* FAQ paragraph */
.faq-paragraph {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* News date badge */
.news-date-badge {
  background: linear-gradient(45deg, #8e44ad, #9b59b6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-right: 1rem;
  font-weight: bold;
}

/* News header */
.news-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* News title */
.news-title {
  margin: 0;
  color: #2c3e50;
}

/* News description */
.news-description {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* News link */
.news-link {
  color: #8e44ad;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

/* News link icon */
.news-link-icon {
  margin-left: 0.5rem;
}

/* Footer disclaimer box */
.footer-disclaimer {
  background: #34495e;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
}

/* Footer disclaimer text */
.footer-disclaimer-text {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Footer disclaimer strong */
.footer-disclaimer-strong {
  color: #3498db;
}

/* Footer disclaimer link */
.footer-disclaimer-link {
  color: #3498db;
}

/* Responsible Gaming Logos */
.responsible-gaming-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.responsible-gaming-logos .rg-logo {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.responsible-gaming-logos .rg-logo:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.responsible-gaming-logos .rg-logo-image {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

/* Centered container */
.centered-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Onclick inline fix */
.contact-button-inline {
  /* This is handled by JS */
}

/* Policy page specific styles */
.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-card {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-paragraph {
  color: #2c3e50;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.policy-section-heading {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.policy-list {
  color: #2c3e50;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.policy-paragraph-mb {
  color: #2c3e50;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.policy-contact-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
}

.policy-contact-para {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.policy-contact-para-last {
  color: #2c3e50;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.policy-note-box {
  background: #e8f4fd;
  border: 1px solid #bee5eb;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
}

.policy-note-text {
  color: #0c5460;
  line-height: 1.8;
  margin: 0;
  font-size: 1.1rem;
}

/* Additional utility classes to replace remaining inline styles */

/* Game card with relative positioning */
.game-card-relative {
  position: relative;
}

/* Stats/rating spacing */
.stats-spacing {
  margin-top: 1rem;
}

.stats-item-inline {
  margin-right: 1.5rem;
}

/* Text center with margin */
.text-center-mt {
  text-align: center;
  margin-top: 3rem;
}

/* Sub-heading with color override */
.sub-heading-blue {
  color: #3498db !important;
}

/* Small text gray */
.text-small-gray {
  color: #7f8c8d;
}

/* Link styles */
.link-blue {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

.link-blue:hover {
  color: #2980b9;
}

/* Textarea resize */
.textarea-resize {
  resize: vertical;
}

/* Mobile responsive additions */
@media (max-width: 768px) {
  .content-card,
  .policy-card {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }

  .stats-container {
    gap: 1.5rem;
  }
}
