/* Top Gaming Pro - Complete Redesign for France */
:root {
  --topgamingpro-primary: #2563eb;
  --topgamingpro-primary-dark: #1d4ed8;
  --topgamingpro-primary-light: #3b82f6;
  --topgamingpro-secondary: #dc2626;
  --topgamingpro-secondary-dark: #b91c1c;
  --topgamingpro-accent: #f59e0b;
  --topgamingpro-accent-dark: #d97706;
  --topgamingpro-success: #059669;
  --topgamingpro-warning: #d97706;
  --topgamingpro-error: #dc2626;
  --topgamingpro-background: #ffffff;
  --topgamingpro-card-bg: #f8fafc;
  --topgamingpro-card-hover: #f1f5f9;
  --topgamingpro-text: #1e293b;
  --topgamingpro-text-muted: #64748b;
  --topgamingpro-border: #e2e8f0;
  --topgamingpro-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --topgamingpro-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --topgamingpro-gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --topgamingpro-gradient-secondary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --topgamingpro-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --topgamingpro-gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

/* Modern Typography */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--topgamingpro-text);
  background: var(--topgamingpro-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Container constraints to prevent horizontal overflow */
.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  overflow-x: hidden;
}

/* Ensure all content stays within viewport */
.topgamingpro-header,
.topgamingpro-hero,
.topgamingpro-section,
.topgamingpro-features,
.topgamingpro-trust,
.topgamingpro-footer {
  max-width: 100vw;
  overflow-x: hidden;
}

h1, .topgamingpro-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--topgamingpro-text);
}

h2, .topgamingpro-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--topgamingpro-text);
  position: relative;
}

h2::after, .topgamingpro-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--topgamingpro-gradient-primary);
  border-radius: 2px;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--topgamingpro-text);
}

h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--topgamingpro-text);
}

h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--topgamingpro-text);
}

p {
  margin-bottom: 1rem;
  color: var(--topgamingpro-text-muted);
}

a {
  color: var(--topgamingpro-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Header Styles */
.topgamingpro-header {
  background: var(--topgamingpro-background);
  box-shadow: var(--topgamingpro-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Base header styles - will be overridden by responsive media queries */
.topgamingpro-header-top {
  background: var(--topgamingpro-gradient-primary);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  z-index: 1001;
  height: 36px; /* Fixed height for consistent spacing */
  display: flex;
  align-items: center;
  overflow: hidden; /* Prevent internal scrolling */
}

.topgamingpro-header-top-content {
  display: flex;
  justify-content: flex-start; /* Left-aligned by default */
  align-items: center;
  height: 100%;
  overflow: hidden; /* Prevent internal scrolling */
  white-space: nowrap; /* Keep content on single line */
}

.topgamingpro-header-contact {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.topgamingpro-header-contact span {
  margin-right: 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 2px; /* Add small padding to prevent descenders from being cut off */
}

.topgamingpro-header-contact i {
  margin-right: 5px;
}

/* Emoji styling for better display */
.topgamingpro-header-contact span {
  font-size: 14px;
  line-height: 1;
}

.topgamingpro-navbar {
  padding: 15px 0;
  background: white;
  margin-top: 0; /* No margin needed since header top is not fixed */
  position: sticky;
  top: 0; /* Position at the top since header top is not fixed */
  z-index: 1000;
}

.topgamingpro-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 20px; /* Add gap between elements */
}

.topgamingpro-navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.topgamingpro-navbar-center {
  display: flex;
  align-items: center;
}

.topgamingpro-navbar-right {
  display: flex;
  align-items: center;
}

.topgamingpro-navbar-home-link {
  display: flex;
  align-items: center;
  color: var(--topgamingpro-text);
  font-weight: 700;
  font-size: 1.5rem;
}

.topgamingpro-navbar-logo {
  margin-right: 12px;
  border-radius: 8px;
}

/* Desktop Navigation */
.topgamingpro-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

/* Mobile Navigation - Completely New System */
.topgamingpro-mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Hide mobile menu on desktop by default */
@media (min-width: 1025px) {
  .topgamingpro-mobile-menu-overlay {
    display: none !important;
  }
}

.topgamingpro-mobile-menu-overlay.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.topgamingpro-mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: auto;
  min-height: 400px;
  max-height: 80vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 0 12px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow: hidden; /* Prevent content overflow */
}

.topgamingpro-mobile-menu-overlay.show .topgamingpro-mobile-menu-container {
  transform: translateX(0);
}

/* Mobile Menu Close Button */
.topgamingpro-mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.topgamingpro-mobile-close:hover {
  background: #333;
  transform: scale(1.1);
}

.topgamingpro-mobile-close:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}

.topgamingpro-mobile-close i {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive close button sizing */
@media (max-width: 768px) {
  .topgamingpro-mobile-close {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
  
  .topgamingpro-mobile-close i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .topgamingpro-mobile-close {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
  }
  
  .topgamingpro-mobile-close i {
    font-size: 12px;
  }
}

/* Close button removed - menu closes by clicking outside or on links */

.topgamingpro-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 60px 20px 20px 20px; /* Increased top padding to accommodate close button */
  flex: 1;
  overflow-y: auto; /* Allow vertical scrolling if needed */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.topgamingpro-mobile-menu-list li {
  margin: 15px 0;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.4s ease-out forwards;
}

.topgamingpro-mobile-menu-overlay.show .topgamingpro-mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.topgamingpro-mobile-menu-overlay.show .topgamingpro-mobile-menu-list li:nth-child(2) { animation-delay: 0.2s; }
.topgamingpro-mobile-menu-overlay.show .topgamingpro-mobile-menu-list li:nth-child(3) { animation-delay: 0.3s; }
.topgamingpro-mobile-menu-overlay.show .topgamingpro-mobile-menu-list li:nth-child(4) { animation-delay: 0.4s; }

.topgamingpro-mobile-menu-link {
  display: block;
  padding: 15px 20px;
  color: var(--topgamingpro-text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.topgamingpro-mobile-menu-link:hover,
.topgamingpro-mobile-menu-link.active {
  background: var(--topgamingpro-primary);
  color: white;
  transform: translateX(5px);
}

.topgamingpro-mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--topgamingpro-border);
}

.topgamingpro-mobile-cta-button {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topgamingpro-mobile-cta-button:hover {
  background: var(--topgamingpro-gradient-primary-dark);
  transform: translateY(-2px);
  color: white;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.topgamingpro-nav-link {
  color: var(--topgamingpro-text);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.topgamingpro-nav-link:hover,
.topgamingpro-nav-link.active {
  color: var(--topgamingpro-primary);
  background: var(--topgamingpro-card-bg);
}

.topgamingpro-cta-button {
  background: var(--topgamingpro-gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--topgamingpro-shadow);
}

.topgamingpro-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--topgamingpro-shadow-lg);
  color: white;
}

.topgamingpro-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 8px; /* Increased padding for better touch target */
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10000;
  min-height: 48px; /* Increased height for better touch target */
  min-width: 48px; /* Increased width for better touch target */
  margin-left: 10px; /* Add margin to prevent overlap */
}

.topgamingpro-mobile-toggle:hover {
  background: var(--topgamingpro-card-bg);
}

.topgamingpro-mobile-toggle-bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--topgamingpro-text);
  margin: 6px 0; /* Increased margin for better spacing */
  transition: 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

/* Improved hamburger animation to prevent overlap */
.topgamingpro-mobile-toggle[aria-expanded="true"] .topgamingpro-mobile-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.topgamingpro-mobile-toggle[aria-expanded="true"] .topgamingpro-mobile-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.topgamingpro-mobile-toggle[aria-expanded="true"] .topgamingpro-mobile-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.topgamingpro-hero {
  background: var(--topgamingpro-gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.topgamingpro-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--topgamingpro-gradient-primary);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.topgamingpro-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.topgamingpro-hero-title {
  margin-bottom: 1.5rem;
}

.topgamingpro-hero-highlight {
  background: var(--topgamingpro-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.topgamingpro-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--topgamingpro-text-muted);
}

.topgamingpro-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topgamingpro-hero-cta {
  background: var(--topgamingpro-gradient-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--topgamingpro-shadow);
}

.topgamingpro-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--topgamingpro-shadow-lg);
  color: white;
}

.topgamingpro-hero-secondary {
  background: transparent;
  color: var(--topgamingpro-primary);
  padding: 16px 32px;
  border: 2px solid var(--topgamingpro-primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.topgamingpro-hero-secondary:hover {
  background: var(--topgamingpro-primary);
  color: white;
}

.topgamingpro-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.topgamingpro-hero-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--topgamingpro-shadow-lg);
  transition: all 0.3s ease;
}

.topgamingpro-hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.topgamingpro-hero-card-icon {
  font-size: 3rem;
  color: var(--topgamingpro-primary);
  margin-bottom: 15px;
}

.topgamingpro-hero-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.topgamingpro-hero-card p {
  color: var(--topgamingpro-text-muted);
  margin: 0;
}

/* Features Section */
.topgamingpro-features {
  padding: 80px 0;
  background: var(--topgamingpro-card-bg);
}

.topgamingpro-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--topgamingpro-text-muted);
  margin-bottom: 3rem;
}

.topgamingpro-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.topgamingpro-feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--topgamingpro-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--topgamingpro-border);
}

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

.topgamingpro-feature-icon {
  font-size: 3rem;
  color: var(--topgamingpro-primary);
  margin-bottom: 20px;
}

.topgamingpro-feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.topgamingpro-feature-card p {
  color: var(--topgamingpro-text-muted);
  margin: 0;
}

/* Casino Section */
.topgamingpro-section {
  padding: 80px 0;
}

.topgamingpro-casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.topgamingpro-casino-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--topgamingpro-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--topgamingpro-border);
}

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

.topgamingpro-casino-header {
  padding: 25px;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  display: flex;
  align-items: center;
}



.topgamingpro-casino-info {
  flex: 1;
}

.topgamingpro-casino-name {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.topgamingpro-casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topgamingpro-rating-stars {
  color: #fbbf24;
}

.topgamingpro-rating-score {
  font-weight: 600;
  font-size: 1.1rem;
}

.topgamingpro-casino-body {
  padding: 25px;
}

.topgamingpro-casino-bonus {
  margin-bottom: 20px;
  text-align: center;
}

.topgamingpro-casino-bonus h4 {
  margin: 0 0 8px 0;
  color: var(--topgamingpro-primary);
  font-size: 1.1rem;
}

.topgamingpro-casino-bonus p {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
}

.topgamingpro-casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.topgamingpro-feature-tag {
  background: var(--topgamingpro-card-bg);
  color: var(--topgamingpro-text-muted);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.topgamingpro-play-button {
  display: block;
  width: 100%;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.topgamingpro-play-button:hover {
  background: var(--topgamingpro-primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* Trust Section */
.topgamingpro-trust {
  padding: 80px 0;
  background: var(--topgamingpro-gradient-hero);
}

.topgamingpro-trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.topgamingpro-trust-left h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.topgamingpro-trust-left h2::after {
  left: 0;
  transform: none;
}

.topgamingpro-trust-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.topgamingpro-trust-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.topgamingpro-trust-list i {
  color: var(--topgamingpro-success);
  margin-right: 15px;
  font-size: 1.2rem;
}

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

.topgamingpro-stat {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: var(--topgamingpro-shadow);
}

.topgamingpro-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--topgamingpro-primary);
  margin-bottom: 10px;
}

.topgamingpro-stat-label {
  color: var(--topgamingpro-text-muted);
  font-weight: 500;
}

/* Footer */
.topgamingpro-footer {
  background: var(--topgamingpro-text);
  color: white;
  padding: 60px 0 30px;
}

.topgamingpro-footer h4 {
  color: white;
  margin-bottom: 20px;
}

.topgamingpro-footer p {
  color: #cbd5e1;
}

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

.topgamingpro-footer-links li {
  margin-bottom: 10px;
}

.topgamingpro-footer-links a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.topgamingpro-footer-links a:hover {
  color: white;
}

.topgamingpro-footer-divider {
  border-color: #475569;
  margin: 40px 0;
}

.topgamingpro-footer-bottom {
  text-align: center;
}

.topgamingpro-footer-bottom p {
  margin: 0;
  color: #94a3b8;
}

/* Cookie Consent */
.topgamingpro-cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 500px;
  margin: 0 auto;
}

.topgamingpro-cookie-content {
  padding: 25px;
}

.topgamingpro-cookie-text h5 {
  margin-bottom: 15px;
  color: var(--topgamingpro-primary);
}

.topgamingpro-cookie-text p {
  margin-bottom: 20px;
  color: var(--topgamingpro-text-muted);
}

.topgamingpro-cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.topgamingpro-cookie-actions .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.topgamingpro-cookie-actions .btn-success {
  background: var(--topgamingpro-success);
  color: white;
}

.topgamingpro-cookie-actions .btn-outline-secondary {
  background: transparent;
  color: var(--topgamingpro-text-muted);
  border: 2px solid var(--topgamingpro-border);
}

.topgamingpro-cookie-actions .btn:hover {
  transform: translateY(-2px);
}

.topgamingpro-hidden {
  display: none;
}

.topgamingpro-visible {
  display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .topgamingpro-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .topgamingpro-header-top {
    display: flex !important; /* Make header top visible on mobile */
    height: 28px !important; /* Reduce height for mobile */
    padding: 4px 0 !important; /* Reduce padding for mobile */
    font-size: 12px !important; /* Smaller font for mobile */
  }
  
  .topgamingpro-header-top-content {
    display: flex !important;
    justify-content: center !important; /* Center content on mobile */
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
    overflow: hidden !important; /* Prevent internal scrolling */
    white-space: nowrap !important; /* Keep content on single line */
  }
  
  .topgamingpro-header-contact {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important; /* Prevent wrapping to second line */
    gap: 15px !important; /* Use gap instead of margin for better spacing */
    white-space: nowrap !important; /* Ensure text stays on one line */
  }
  
  .topgamingpro-header-contact span {
    margin-right: 0 !important; /* Remove margin, use gap instead */
    display: flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    font-size: 12px !important; /* Ensure consistent font size */
  }
  
  .topgamingpro-header-contact i {
    margin-right: 4px !important; /* Reduce icon margin for mobile */
  }
  
  .topgamingpro-navbar {
    padding: 8px 0 !important; /* Reduce navbar padding for mobile */
    margin-top: 0 !important; /* No margin needed since header top is not fixed */
    position: sticky !important;
    top: 0 !important; /* Position at the top since header top is not fixed */
    z-index: 1000 !important;
  }
  
  .topgamingpro-navbar-center {
    display: none;
  }
  
  .topgamingpro-navbar-right {
    display: none;
  }
  
  .topgamingpro-mobile-toggle {
    display: block !important;
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Ensure mobile menu overlay is properly positioned */
  .topgamingpro-mobile-menu-overlay {
    display: block;
  }
  
  /* Tablet-specific adjustments */
  .topgamingpro-mobile-menu-container {
    max-width: 350px;
    min-height: 350px;
    max-height: 70vh;
  }
  
  .topgamingpro-mobile-menu-link {
    font-size: 1rem;
    padding: 12px 18px;
    min-height: 40px;
  }
  
  .topgamingpro-mobile-menu-list {
    padding: 55px 20px 20px 20px; /* Adjusted for tablet */
  }
  
  .topgamingpro-mobile-menu-footer {
    padding: 15px 20px;
  }
  
  .topgamingpro-navbar-inner {
    justify-content: space-between;
    align-items: center;
  }
  
  .topgamingpro-navbar-left {
    flex: 1;
  }
  
  .topgamingpro-navbar-title {
    font-size: 1.2rem;
  }
  
  .topgamingpro-navbar-logo {
    width: 35px;
    height: 35px;
  }
  
  /* Additional tablet optimizations */
  .topgamingpro-navbar {
    padding: 8px 0; /* Keep reduced padding */
  }
  
  .topgamingpro-navbar-title {
    font-size: 1.1rem;
  }
  
  .topgamingpro-navbar-logo {
    width: 40px;
    height: 40px;
  }
  
  .topgamingpro-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .topgamingpro-hero-visual {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Prevent horizontal overflow on tablets */
  .topgamingpro-hero,
  .topgamingpro-section,
  .topgamingpro-features,
  .topgamingpro-trust,
  .topgamingpro-footer {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Ensure grid items don't overflow */
  .topgamingpro-features-grid,
  .topgamingpro-casino-grid,
  .topgamingpro-trust-grid {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .topgamingpro-trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .topgamingpro-trust-left h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .topgamingpro-trust-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .topgamingpro-features-grid {
    grid-template-columns: 1fr;
  }
  
  .topgamingpro-casino-grid {
    grid-template-columns: 1fr;
  }
  
  .topgamingpro-hero-actions {
    justify-content: center;
  }
  
  .topgamingpro-cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .topgamingpro-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .topgamingpro-contact-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .topgamingpro-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .topgamingpro-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .topgamingpro-header-top {
    height: 24px !important; /* Even more compact for small mobile */
    padding: 2px 0 !important;
    font-size: 11px !important; /* Smaller font for small mobile */
  }
  
  .topgamingpro-header-top-content {
    justify-content: center !important;
    padding: 0 10px !important; /* Add horizontal padding */
  }
  
  .topgamingpro-header-contact {
    gap: 10px !important; /* Reduce gap for small mobile */
    font-size: 11px !important;
  }
  
  .topgamingpro-header-contact span {
    font-size: 11px !important;
  }
  
  .topgamingpro-header-contact i {
    margin-right: 3px !important; /* Reduce icon margin further */
    font-size: 10px !important; /* Smaller icons for mobile */
  }
  
  .topgamingpro-navbar {
    padding: 6px 0 !important; /* Further reduce navbar padding */
    margin-top: 0 !important; /* No margin needed since header top is not fixed */
  }
  
  .topgamingpro-navbar-title {
    font-size: 1rem; /* Smaller title for mobile */
  }
  
  .topgamingpro-navbar-logo {
    width: 32px; /* Smaller logo for mobile */
    height: 32px;
  }
  
  .topgamingpro-hero {
    padding: 60px 0;
  }
  
  .topgamingpro-mobile-menu-container {
    max-width: 100%;
    min-height: 300px;
    max-height: 80vh;
  }
  
  .topgamingpro-mobile-menu-link {
    font-size: 1rem;
    padding: 12px 20px;
    min-height: 40px;
  }
  
  .topgamingpro-mobile-menu-list {
    padding: 50px 15px 15px 15px; /* Adjusted for mobile */
  }
  
  .topgamingpro-mobile-menu-footer {
    padding: 15px;
  }
  
  /* Prevent horizontal overflow on mobile */
  .topgamingpro-hero,
  .topgamingpro-section,
  .topgamingpro-features,
  .topgamingpro-trust,
  .topgamingpro-footer {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Ensure all content fits mobile screen */
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Prevent text overflow */
  .topgamingpro-hero-title,
  .topgamingpro-section-title,
  h1, h2, h3, h4, h5 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
}

/* Medium tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .topgamingpro-header-top {
    height: 32px !important; /* Medium height for tablets */
    padding: 6px 0 !important;
    font-size: 13px !important; /* Medium font size for tablets */
  }
  
  .topgamingpro-header-top-content {
    justify-content: center !important;
  }
  
  .topgamingpro-header-contact {
    gap: 20px !important; /* Larger gap for tablets */
  }
  
  .topgamingpro-navbar {
    padding: 10px 0 !important; /* Medium padding for tablets */
    margin-top: 0 !important; /* No margin needed since header top is not fixed */
  }
  
  .topgamingpro-mobile-menu-container {
    max-width: 400px;
    min-height: 400px;
    max-height: 75vh;
  }
  
  .topgamingpro-mobile-menu-link {
    font-size: 1.1rem;
    padding: 15px 20px;
    min-height: 45px;
  }
  
  .topgamingpro-mobile-menu-list {
    padding: 60px 25px 25px 25px; /* Adjusted for medium tablets */
  }
  
  .topgamingpro-mobile-menu-footer {
    padding: 20px 25px;
  }
  
  .topgamingpro-mobile-cta-button {
    padding: 18px 25px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .topgamingpro-features,
  .topgamingpro-section,
  .topgamingpro-trust {
    padding: 60px 0;
  }
  
  .topgamingpro-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .topgamingpro-hero-cta,
  .topgamingpro-hero-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .topgamingpro-casino-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .topgamingpro-casino-rating {
    justify-content: center;
  }
  
  .topgamingpro-contact-hero,
  .topgamingpro-contact-form-section,
  .topgamingpro-faq-section,
  .topgamingpro-trust-indicators {
    padding: 60px 0;
  }
  
  .topgamingpro-contact-form-card {
    padding: 25px;
  }
  
  .topgamingpro-trust-grid {
    grid-template-columns: 1fr;
  }
  
  .topgamingpro-faq-question {
    padding: 20px;
  }
  
  .topgamingpro-faq-answer {
    padding: 20px;
  }
  
  .topgamingpro-privacy-hero,
  .topgamingpro-privacy-content,
  .topgamingpro-terms-hero,
  .topgamingpro-terms-content,
  .topgamingpro-cookies-hero,
  .topgamingpro-cookies-content {
    padding: 60px 0;
  }
  
  .topgamingpro-privacy-section,
  .topgamingpro-terms-section,
  .topgamingpro-cookies-section {
    padding: 25px;
  }
  
  .topgamingpro-cookies-table {
    font-size: 0.9rem;
  }
  
  .topgamingpro-cookies-table th,
  .topgamingpro-cookies-table td {
    padding: 10px;
  }
}

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

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

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

/* Contact Page Styles */
.topgamingpro-contact-hero {
  background: var(--topgamingpro-gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.topgamingpro-contact-hero-title {
  margin-bottom: 1.5rem;
}

.topgamingpro-contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--topgamingpro-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.topgamingpro-contact-form-section {
  padding: 80px 0;
}

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

.topgamingpro-contact-info h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.topgamingpro-contact-info h2::after {
  left: 0;
  transform: none;
}

.topgamingpro-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 2rem;
}

.topgamingpro-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--topgamingpro-shadow);
  transition: all 0.3s ease;
}

.topgamingpro-contact-method:hover {
  transform: translateY(-3px);
  box-shadow: var(--topgamingpro-shadow-lg);
}

.topgamingpro-contact-method-icon {
  width: 50px;
  height: 50px;
  background: var(--topgamingpro-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.topgamingpro-contact-method-content h4 {
  margin: 0 0 8px 0;
  color: var(--topgamingpro-text);
}

.topgamingpro-contact-method-content p {
  margin: 0 0 5px 0;
  color: var(--topgamingpro-text-muted);
}

.topgamingpro-contact-method-content small {
  color: var(--topgamingpro-text-muted);
  font-size: 0.9rem;
}

.topgamingpro-contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--topgamingpro-shadow-lg);
  border: 1px solid var(--topgamingpro-border);
}

.topgamingpro-contact-form-card h3 {
  margin-bottom: 10px;
  text-align: center;
}

.topgamingpro-contact-form-card > p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--topgamingpro-text-muted);
}

.topgamingpro-form-group {
  margin-bottom: 25px;
}

.topgamingpro-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--topgamingpro-text);
}

.topgamingpro-form-input,
.topgamingpro-form-select,
.topgamingpro-form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--topgamingpro-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.topgamingpro-form-input:focus,
.topgamingpro-form-select:focus,
.topgamingpro-form-textarea:focus {
  outline: none;
  border-color: var(--topgamingpro-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.topgamingpro-checkbox-label {
  display: flex;
  align-items: flex-start;
  /* gap: 12px; */
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--topgamingpro-text-muted);
}

.topgamingpro-checkbox-custom {
  padding-left: 10px;
}

.topgamingpro-checkbox {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--topgamingpro-primary);
}

.topgamingpro-form-submit {
  width: 100%;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topgamingpro-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--topgamingpro-shadow-lg);
}

.topgamingpro-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* FAQ Section */
.topgamingpro-faq-section {
  padding: 80px 0;
  background: var(--topgamingpro-card-bg);
}

.topgamingpro-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.topgamingpro-faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--topgamingpro-shadow);
  border: 1px solid var(--topgamingpro-border);
}

.topgamingpro-faq-question {
  padding: 25px;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.topgamingpro-faq-question:hover {
  background: var(--topgamingpro-primary-dark);
}

.topgamingpro-faq-question h4 {
  margin: 0;
  color: white;
}

.topgamingpro-faq-question i {
  transition: transform 0.3s ease;
}

.topgamingpro-faq-item.active .topgamingpro-faq-question i {
  transform: rotate(180deg);
}

.topgamingpro-faq-answer {
  padding: 25px;
  display: none;
}

.topgamingpro-faq-item.active .topgamingpro-faq-answer {
  display: block;
}

.topgamingpro-faq-answer p {
  margin: 0;
  color: var(--topgamingpro-text-muted);
}

/* Trust Indicators */
.topgamingpro-trust-indicators {
  padding: 80px 0;
}

.topgamingpro-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.topgamingpro-trust-item {
  text-align: center;
  padding: 30px 20px;
}

.topgamingpro-trust-icon {
  width: 80px;
  height: 80px;
  background: var(--topgamingpro-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.topgamingpro-trust-item h4 {
  margin-bottom: 15px;
  color: var(--topgamingpro-text);
}

.topgamingpro-trust-item p {
  color: var(--topgamingpro-text-muted);
  margin: 0;
}

/* Privacy Policy Page Styles */
.topgamingpro-privacy-hero {
  background: var(--topgamingpro-gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.topgamingpro-privacy-hero-title {
  margin-bottom: 1.5rem;
}

.topgamingpro-privacy-hero-subtitle {
  font-size: 1.25rem;
  color: var(--topgamingpro-text-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.topgamingpro-privacy-hero-date {
  color: var(--topgamingpro-primary);
  font-weight: 600;
  margin: 0;
}

.topgamingpro-privacy-content {
  padding: 80px 0;
}

.topgamingpro-privacy-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--topgamingpro-shadow-lg);
  border: 1px solid var(--topgamingpro-border);
  overflow: hidden;
}

.topgamingpro-privacy-section {
  padding: 40px;
  border-bottom: 1px solid var(--topgamingpro-border);
}

.topgamingpro-privacy-section:last-child {
  border-bottom: none;
}

.topgamingpro-privacy-section h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--topgamingpro-primary);
}

.topgamingpro-privacy-section h2::after {
  left: 0;
  transform: none;
}

.topgamingpro-privacy-section h3 {
  margin: 1.5rem 0 1rem 0;
  color: var(--topgamingpro-text);
  font-size: 1.3rem;
}

.topgamingpro-privacy-section p {
  margin-bottom: 1rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.7;
}

.topgamingpro-privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.topgamingpro-privacy-section li {
  margin-bottom: 0.5rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.6;
}

.topgamingpro-privacy-section a {
  color: var(--topgamingpro-primary);
  text-decoration: underline;
}

.topgamingpro-privacy-section a:hover {
  color: var(--topgamingpro-primary-dark);
}

.topgamingpro-contact-details {
  background: var(--topgamingpro-card-bg);
  padding: 20px;
  border-radius: 12px;
  margin: 1rem 0;
}

.topgamingpro-contact-details p {
  margin: 0.5rem 0;
}

/* Terms Page Styles */
.topgamingpro-terms-hero {
  background: var(--topgamingpro-gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.topgamingpro-terms-hero-title {
  margin-bottom: 1.5rem;
}

.topgamingpro-terms-hero-subtitle {
  font-size: 1.25rem;
  color: var(--topgamingpro-text-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.topgamingpro-terms-hero-date {
  color: var(--topgamingpro-primary);
  font-weight: 600;
  margin: 0;
}

.topgamingpro-terms-content {
  padding: 80px 0;
}

.topgamingpro-terms-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--topgamingpro-shadow-lg);
  border: 1px solid var(--topgamingpro-border);
  overflow: hidden;
}

.topgamingpro-terms-section {
  padding: 40px;
  border-bottom: 1px solid var(--topgamingpro-border);
}

.topgamingpro-terms-section:last-child {
  border-bottom: none;
}

.topgamingpro-terms-section h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--topgamingpro-primary);
}

.topgamingpro-terms-section h2::after {
  left: 0;
  transform: none;
}

.topgamingpro-terms-section h3 {
  margin: 1.5rem 0 1rem 0;
  color: var(--topgamingpro-text);
  font-size: 1.3rem;
}

.topgamingpro-terms-section p {
  margin-bottom: 1rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.7;
}

.topgamingpro-terms-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.topgamingpro-terms-section li {
  margin-bottom: 0.5rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.6;
}

.topgamingpro-terms-section a {
  color: var(--topgamingpro-primary);
  text-decoration: underline;
}

.topgamingpro-terms-section a:hover {
  color: var(--topgamingpro-primary-dark);
}

/* Cookie Policy Page Styles */
.topgamingpro-cookies-hero {
  background: var(--topgamingpro-gradient-hero);
  padding: 80px 0;
  text-align: center;
}

.topgamingpro-cookies-hero-title {
  margin-bottom: 1.5rem;
}

.topgamingpro-cookies-hero-subtitle {
  font-size: 1.25rem;
  color: var(--topgamingpro-text-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.topgamingpro-cookies-hero-date {
  color: var(--topgamingpro-primary);
  font-weight: 600;
  margin: 0;
}

.topgamingpro-cookies-content {
  padding: 80px 0;
}

.topgamingpro-cookies-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--topgamingpro-shadow-lg);
  border: 1px solid var(--topgamingpro-border);
  overflow: hidden;
}

.topgamingpro-cookies-section {
  padding: 40px;
  border-bottom: 1px solid var(--topgamingpro-border);
}

.topgamingpro-cookies-section:last-child {
  border-bottom: none;
}

.topgamingpro-cookies-section h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--topgamingpro-primary);
}

.topgamingpro-cookies-section h2::after {
  left: 0;
  transform: none;
}

.topgamingpro-cookies-section h3 {
  margin: 1.5rem 0 1rem 0;
  color: var(--topgamingpro-text);
  font-size: 1.3rem;
}

.topgamingpro-cookies-section p {
  margin-bottom: 1rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.7;
}

.topgamingpro-cookies-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.topgamingpro-cookies-section li {
  margin-bottom: 0.5rem;
  color: var(--topgamingpro-text-muted);
  line-height: 1.6;
}

.topgamingpro-cookies-section a {
  color: var(--topgamingpro-primary);
  text-decoration: underline;
}

.topgamingpro-cookies-section a:hover {
  color: var(--topgamingpro-primary-dark);
}

.topgamingpro-cookies-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.topgamingpro-cookies-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--topgamingpro-shadow);
}

.topgamingpro-cookies-table th,
.topgamingpro-cookies-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--topgamingpro-border);
}

.topgamingpro-cookies-table th {
  background: var(--topgamingpro-gradient-primary);
  color: white;
  font-weight: 600;
}

.topgamingpro-cookies-table tr:hover {
  background: var(--topgamingpro-card-bg);
}

.topgamingpro-cookies-table td:last-child {
  font-weight: 600;
  color: var(--topgamingpro-primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.topgamingpro-feature-card,
.topgamingpro-casino-card {
  animation: fadeInUp 0.6s ease-out;
}

.topgamingpro-feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.topgamingpro-feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.topgamingpro-feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Global overflow prevention */
* {
  box-sizing: border-box;
}

/* Ensure all sections are properly constrained */
.topgamingpro-hero,
.topgamingpro-section,
.topgamingpro-features,
.topgamingpro-trust,
.topgamingpro-footer,
.topgamingpro-contact-section,
.topgamingpro-faq-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Ensure grid layouts don't overflow */
.topgamingpro-features-grid,
.topgamingpro-casino-grid,
.topgamingpro-trust-grid,
.topgamingpro-contact-grid,
.topgamingpro-faq-grid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  display: grid;
  gap: 20px;
}

/* Desktop Header Styles - Only apply to larger screens */
@media (min-width: 1025px) {
  .topgamingpro-header-top {
    display: flex !important;
    height: 36px;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
    overflow: hidden; /* Prevent internal scrolling */
  }
  
  .topgamingpro-header-top-content {
    display: flex;
    justify-content: flex-start; /* Left-aligned on desktop */
    align-items: center;
    height: 100%;
    overflow: hidden; /* Prevent internal scrolling */
    white-space: nowrap; /* Keep content on single line */
  }
  
  .topgamingpro-header-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden; /* Prevent internal scrolling */
    white-space: nowrap; /* Keep content on single line */
  }
  
  .topgamingpro-header-contact span {
    margin-right: 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
  }
  
  .topgamingpro-header-contact i {
    margin-right: 5px;
  }
  
  .topgamingpro-navbar {
    padding: 15px 0;
    background: white;
    margin-top: 0; /* No margin needed since header top is not fixed */
    position: sticky;
    top: 0; /* Position at the top since header top is not fixed */
    z-index: 1000;
  }
}

/* Additional CSS to ensure header-top content stays on single line without scrolling */
.topgamingpro-header-contact {
  overflow: hidden !important; /* Prevent internal scrolling */
  white-space: nowrap !important; /* Keep content on single line */
}

/* Ensure header-top itself has no scrolling issues */
.topgamingpro-header-top {
  overflow: hidden !important; /* Prevent any internal scrolling */
  white-space: nowrap !important; /* Keep all content on single line */
}

/* Back to Top Button Styles */
.topgamingpro-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--topgamingpro-gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.topgamingpro-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.topgamingpro-back-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
  .topgamingpro-back-to-top {
    bottom: 20px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .topgamingpro-back-to-top {
    bottom: 15px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

.topgamingpro-casino-card h3 {
  color: #FFF;
}