/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Thambi:wght@400;500;600;700;800&display=swap');

/* TIP: For production, use PurgeCSS or Vite's built-in CSS optimizer to remove unused CSS and reduce bundle size. */
/* Layout container */
.container {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
}

/* Global font settings */
body, html {
  font-family: 'Baloo Thambi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-display: swap;
}

/* Force Baloo Thambi to load and apply */
@font-face {
  font-family: 'Baloo Thambi';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/baloothambi/v13/va9B4kXJzNhTFoA7CYcS8sHuQQ.ttf) format('truetype');
}

/* Apply Baloo Thambi to headings and brand elements */
h1, h2, h3, h4, h5, h6,
.company-name,
.hero-content h1,
.panel-text h2,
.services-section h2,
.games-section h2,
.testimonials-section h2,
.locations-section h2,
.why-choose-section h2,
.french-hosting-section h3,
.modern-service-content h3,
.game-card span,
.service-card h3,
.feature-card-white h3 {
  font-family: 'Baloo Thambi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 400;
}

/* Force Baloo Thambi on specific elements with maximum specificity */
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
html body .company-name,
html body .hero-content h1 {
  font-family: 'Baloo Thambi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 400;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 260px;
  min-width: 260px;
  background: rgba(24,31,42,0.98);
  color: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: 8px 0 32px rgba(24,31,42,0.18);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
}
.sidebar.open {
  box-shadow: 8px 0 32px rgba(24,31,42,0.18);
  scale: 1;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.company-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.company-name {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.company-name .hosting {
  color: #0d73ac;
  font-weight: 500;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-links a:hover {
  background: #273043;
}

/* Main content styles */
.main-content {
  position: relative;
  z-index: 1;
  flex: 1 1 0%;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  max-width: none;
  background: #fff !important;
  min-height: 100vh;
  transition: none;
  left: 0;
}

/* Override any other background styles - CLIENT AREA ONLY */
.site-wrapper.dashboard .main-content,
.site-wrapper.client-profile .main-content,
.site-wrapper.order-index .main-content,
.site-wrapper.invoice-index .main-content,
.site-wrapper.support-tickets .main-content,
.site-wrapper.support-ticket .main-content,
.site-wrapper.order-manage .main-content,
.site-wrapper.order-list .main-content,
.site-wrapper.order-product .main-content,
.site-wrapper.support-contact-us .main-content,
.site-wrapper.support-contact-us-conversation .main-content,
.site-wrapper.kb-index .main-content,
.site-wrapper.kb-category .main-content,
.site-wrapper.kb-article .main-content,
.site-wrapper.email-index .main-content,
.site-wrapper.email-email .main-content,
.site-wrapper.invoice-invoice .main-content,
.site-wrapper.client-balance .main-content,
.site-wrapper.news-index .main-content,
.site-wrapper.news-post .main-content,
.site-wrapper.custom-page .main-content,
.site-wrapper.tos .main-content,
.site-wrapper.privacy-policy .main-content,
.site-wrapper.about-us .main-content {
  background: #fff !important;
  background-image: none !important;
}

/* Force override for all possible selectors - CLIENT AREA ONLY */
.site-wrapper.dashboard .main-content,
.site-wrapper.client-profile .main-content,
.site-wrapper.order-index .main-content,
.site-wrapper.invoice-index .main-content,
.site-wrapper.support-tickets .main-content,
.site-wrapper.support-ticket .main-content,
.site-wrapper.order-manage .main-content,
.site-wrapper.order-list .main-content,
.site-wrapper.order-product .main-content,
.site-wrapper.support-contact-us .main-content,
.site-wrapper.support-contact-us-conversation .main-content,
.site-wrapper.kb-index .main-content,
.site-wrapper.kb-category .main-content,
.site-wrapper.kb-article .main-content,
.site-wrapper.email-index .main-content,
.site-wrapper.email-email .main-content,
.site-wrapper.invoice-invoice .main-content,
.site-wrapper.client-balance .main-content,
.site-wrapper.news-index .main-content,
.site-wrapper.news-post .main-content,
.site-wrapper.custom-page .main-content,
.site-wrapper.tos .main-content,
.site-wrapper.privacy-policy .main-content,
.site-wrapper.about-us .main-content {
  background: #fff !important;
  background-image: none !important;
}

/* Override site-wrapper background - CLIENT AREA ONLY */
.site-wrapper.dashboard,
.site-wrapper.client-profile,
.site-wrapper.order-index,
.site-wrapper.invoice-index,
.site-wrapper.support-tickets,
.site-wrapper.support-ticket,
.site-wrapper.order-manage,
.site-wrapper.order-list,
.site-wrapper.order-product,
.site-wrapper.support-contact-us,
.site-wrapper.support-contact-us-conversation,
.site-wrapper.kb-index,
.site-wrapper.kb-category,
.site-wrapper.kb-article,
.site-wrapper.email-index,
.site-wrapper.email-email,
.site-wrapper.invoice-invoice,
.site-wrapper.client-balance,
.site-wrapper.news-index,
.site-wrapper.news-post,
.site-wrapper.custom-page,
.site-wrapper.tos,
.site-wrapper.privacy-policy,
.site-wrapper.about-us {
  background: #fff !important;
  background-image: none !important;
}

/* Override any inline styles - CLIENT AREA ONLY */
.site-wrapper.dashboard .main-content[style*="background"],
.site-wrapper.client-profile .main-content[style*="background"],
.site-wrapper.order-index .main-content[style*="background"],
.site-wrapper.invoice-index .main-content[style*="background"],
.site-wrapper.support-tickets .main-content[style*="background"],
.site-wrapper.support-ticket .main-content[style*="background"],
.site-wrapper.order-manage .main-content[style*="background"],
.site-wrapper.order-list .main-content[style*="background"],
.site-wrapper.order-product .main-content[style*="background"],
.site-wrapper.support-contact-us .main-content[style*="background"],
.site-wrapper.support-contact-us-conversation .main-content[style*="background"],
.site-wrapper.kb-index .main-content[style*="background"],
.site-wrapper.kb-category .main-content[style*="background"],
.site-wrapper.kb-article .main-content[style*="background"],
.site-wrapper.email-index .main-content[style*="background"],
.site-wrapper.email-email .main-content[style*="background"],
.site-wrapper.invoice-invoice .main-content[style*="background"],
.site-wrapper.client-balance .main-content[style*="background"],
.site-wrapper.news-index .main-content[style*="background"],
.site-wrapper.news-post .main-content[style*="background"],
.site-wrapper.custom-page .main-content[style*="background"],
.site-wrapper.tos .main-content[style*="background"],
.site-wrapper.privacy-policy .main-content[style*="background"],
.site-wrapper.about-us .main-content[style*="background"] {
  background: #fff !important;
  background-image: none !important;
}

.content {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Client area content styling for dark background */
.clientarea-content {
  padding: 2rem;
}

.clientarea-content h1,
.clientarea-content h2,
.clientarea-content h3,
.clientarea-content h4,
.clientarea-content h5,
.clientarea-content h6 {
  color: #fff;
  font-family: 'Baloo Thambi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.clientarea-content .data-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.clientarea-content .data-container {
  background: transparent;
}

.clientarea-content .data-container header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.clientarea-content .data-container header h2 {
  color: #fff;
}

.clientarea-content .table {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clientarea-content .table thead th {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.clientarea-content .table tbody td {
  color: #bfc9da;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clientarea-content .table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.clientarea-content .btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.clientarea-content .btn-primary {
  background: linear-gradient(135deg, #0d73ac 0%, #0ea5e9 100%);
  border: none;
  color: #fff;
}

.clientarea-content .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 115, 172, 0.4);
}

.clientarea-content .btn-dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.clientarea-content .btn-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.clientarea-content .btn-info {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  border: none;
  color: #fff;
}

.clientarea-content .btn-info:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.clientarea-content .badge {
  border-radius: 6px;
  font-weight: 500;
}

.clientarea-content dl.row dt {
  color: #bfc9da;
  font-weight: 500;
}

.clientarea-content dl.row dd {
  color: #fff;
  font-weight: 600;
}

.clientarea-content .breadcrumb {
  background: transparent;
  color: #bfc9da;
}

.clientarea-content .breadcrumb a {
  color: #0ea5e9;
  text-decoration: none;
}

.clientarea-content .breadcrumb a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.clientarea-content .breadcrumb-item.active {
  color: #fff;
}

/* Mobile styles */
.mobile-header {
  display: none;
  align-items: center;
  padding: 1rem 0;
  background: #181f2a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 101;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 1rem;
}
.bar {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-title {
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #181f2a 60%, #0d73ac 100%);
  color: #fff;
  border-radius: 0;
  padding: 3rem 2rem;
  margin: 0;
  box-shadow: 0 4px 24px rgba(24,31,42,0.08);
  flex-wrap: wrap;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  position: relative;
}

.hero-content {
  flex: 1 1 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.7rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.cta-btn {
  display: inline-block;
  background: #0d73ac;
  color: #181f2a;
  font-weight: 700;
  padding: 0.9em 2.2em;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,115,172,0.12);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #0d73ac;
  color: #fff;
}
.hero-image {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
.hero-image img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  background: #fff;
}

.left-wave {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 1;
  pointer-events: none;
}

.left-wave-fixed {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 40px;
  z-index: 150;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* --- Intro Section --- */
.intro-section {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(24,31,42,0.06);
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  max-width: none;
}
.intro-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #181f2a;
  font-weight: 700;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.features-list li {
  background: #f7fafc;
  color: #181f2a;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(24,31,42,0.04);
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Collapsible Sidebar Styles */
.sidebar.collapsed {
  width: 64px;
  min-width: 64px;
  padding: 1.2rem 0.5rem;
  align-items: center;
  transition: width 0.3s, min-width 0.3s, padding 0.3s;
}
.sidebar.open {
  width: 260px;
  min-width: 260px;
  padding: 2rem 1rem;
  align-items: center;
  transition: width 0.3s, min-width 0.3s, padding 0.3s;
}
.company-logo.small {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 12px;
  transition: width 0.3s, height 0.3s, border-radius 0.3s, margin-bottom 0.3s;
}
.company-logo {
  transition: width 0.3s, height 0.3s, border-radius 0.3s, margin-bottom 0.3s;
}
.logo-section {
  margin-bottom: 2rem;
  transition: margin-bottom 0.3s;
}
.sidebar.collapsed .logo-section {
  margin-bottom: 1rem;
}
.company-name {
  transition: opacity 0.3s, max-width 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar.collapsed .company-name {
  opacity: 0;
  max-width: 0;
  pointer-events: none;
}
.nav-links {
  width: 100%;
  transition: width 0.3s;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, font-size 0.3s, padding 0.3s;
}
.sidebar.collapsed .nav-links a {
  justify-content: center;
  font-size: 1.3rem;
  padding: 0.7rem 0.2rem;
}
.sidebar.collapsed .nav-links a span + span {
  display: none;
}

/* Remove main-content shifting for sidebar overlay */
.container.sidebar-expanded .main-content,
.container.sidebar-collapsed .main-content {
  margin-left: 0 !important;
  transition: none;
}

.main-content {
  margin-left: 0 !important;
}

/* --- Features Row --- */
.features-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
}
.feature-card {
  background: #fff;
  color: #181f2a;
  border-radius: 10px;
  padding: 1.1rem 1.7rem;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(24,31,42,0.07);
  min-width: 180px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.7em;
}

/* --- Services Section --- */
.services-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.services-section h2 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
  font-weight: 800;
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,31,42,0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(24,31,42,0.13);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.1rem;
}
.service-price {
  font-size: 1.05rem;
  color: #0d73ac;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-price span {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d73ac;
}
.service-btn {
  background: #0d73ac;
  color: #181f2a;
  font-weight: 700;
  padding: 0.6em 1.5em;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,115,172,0.10);
  transition: background 0.2s, color 0.2s;
}
.service-btn:hover {
  background: #0d73ac;
  color: #fff;
}

/* --- Trust Signals --- */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0 2rem 0;
  flex-wrap: wrap;
}
.trust-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(24,31,42,0.07);
  padding: 1.1rem 2rem;
  text-align: center;
  min-width: 150px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-item strong {
  font-size: 1.3rem;
  color: #0d73ac;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.trust-item span {
  color: #181f2a;
  font-size: 0.98rem;
  font-weight: 500;
}

/* --- Locations Section --- */
.locations-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.locations-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.locations-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: #181f2a;
  font-weight: 600;
}

/* --- Testimonials Section --- */
.testimonials-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(24,31,42,0.07);
  padding: 1.5rem 2rem;
  min-width: 220px;
  max-width: 340px;
  font-size: 1.08rem;
  color: #181f2a;
  font-style: italic;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.98rem;
  color: #0d73ac;
  font-style: normal;
  font-weight: 700;
}

/* --- Responsive --- */
@media (min-width: 1200px) {
  .hero, .intro-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media (max-width: 900px) {
  .main-content {
    padding: 0;
  }
  .hero {
    padding: 2rem 1rem;
    min-height: 80vh;
  }
  .hero-image {
    margin-top: 2rem;
    align-self: center;
    height: auto;
  }
  .intro-section {
    padding: 1.2rem 0.5rem;
  }
  .features-row, .trust-signals, .services-cards, .testimonials-list, .locations-list {
    gap: 1rem;
  }
  .service-card, .testimonial {
    min-width: 160px;
    max-width: 100%;
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 1.2rem 0.5rem;
    min-height: 70vh;
  }
  .intro-section {
    padding: 1.2rem 0.5rem;
  }
  .features-list li {
    min-width: 120px;
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
}

/* Mobile: sidebar overlays */
@media (max-width: 700px) {
  .sidebar.collapsed, .sidebar.open {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 200;
    width: 220px;
    min-width: 220px;
    transform: translateX(-100%);
    box-shadow: none;
    transition: transform 0.3s, width 0.3s, min-width 0.3s;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 2px 0 12px rgba(0,0,0,0.12);
  }
  .container.sidebar-expanded .main-content,
  .container.sidebar-collapsed .main-content {
    margin-left: 0;
  }
}

body, .container {
  background: #f7fafc;
}

.tech-bg {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Override for hero section with tech-bg */
.hero-section.tech-bg {
  background: linear-gradient(135deg, #181f2a 0%, #0d73ac 100%) !important;
  background-image: linear-gradient(135deg, #181f2a 0%, #0d73ac 100%) !important;
  background-color: transparent !important;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* .tech-bg::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px);
  pointer-events: none;
  z-index: 0;
  animation: bg-move 8s linear infinite;
} */
/* @keyframes bg-move {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
} */
.hero-content, .hero-image {
  position: relative;
  z-index: 1;
}

/* Sidebar Language Selector */
.sidebar-lang {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}
.sidebar-lang select {
  background: #232b3a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.4em 1.2em 0.4em 0.7em;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.sidebar-lang select:hover, .sidebar-lang select:focus {
  background: #0d73ac;
  color: #181f2a;
}

.panel-section {
  margin: 3rem 0 2rem 0;
  padding: 2.5rem 0;
  background: none;
  position: relative;
}
.panel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.panel-text {
  max-width: 400px;
  text-align: left;
}
.panel-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.panel-text p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1.2rem;
}
.panel-btn {
  background: #0d73ac;
  color: #181f2a;
  font-weight: 700;
  padding: 0.7em 2em;
  border-radius: 8px;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,115,172,0.10);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.panel-btn:hover {
  background: #0d73ac;
  color: #fff;
}
.panel-image img {
  width: 340px;
  max-width: 90vw;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(24,31,42,0.10);
  background: #fff;
}

.tech-bg-light {
  background: linear-gradient(120deg, #e6f7f7 60%, #f7fafc 100%);
}

.games-section {
  margin: 3rem 0 2rem 0;
  text-align: center;
  position: relative;
}
.games-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.game-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(24,31,42,0.07);
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
  min-width: 160px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 24px rgba(24,31,42,0.13);
}
.game-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  background: #e6f7f7;
}
.game-card span {
  font-size: 1.08rem;
  font-weight: 700;
  color: #181f2a;
}

.tech-bg-fade {
  background: linear-gradient(120deg, #f7fafc 60%, #e6f7f7 100%);
}

@media (max-width: 900px) {
  .panel-content {
    flex-direction: column;
    gap: 2rem;
  }
  .panel-image img {
    width: 90vw;
    max-width: 340px;
  }
  .games-grid {
    gap: 1rem;
  }
}

/* --- Animated Card Hover Effects --- */
.service-card, .game-card, .feature-card {
  transition: transform 0.22s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.22s, border 0.22s;
}
.service-card:hover, .game-card:hover, .feature-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(24,31,42,0.18);
  border-color: #0d73ac;
}

/* --- Animated Gradient Border --- */
.animated-border {
  border: 2px solid;
  border-image: linear-gradient(120deg, #0d73ac, #0d73ac, #181f2a) 1;
  animation: border-move 3s linear infinite;
}
@keyframes border-move {
  0% { border-image-source: linear-gradient(120deg, #0d73ac, #0d73ac, #181f2a); }
  100% { border-image-source: linear-gradient(240deg, #181f2a, #0d73ac, #0d73ac); }
}

.panel-section.animated-border, .game-card.animated-border, .service-card.animated-border {
  border-radius: 16px;
}

/* --- Button Animation --- */
.cta-btn, .panel-btn, .service-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-btn::after, .panel-btn::after, .service-btn::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  background: rgba(13,115,172,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
  opacity: 0;
  z-index: -1;
}
.cta-btn:active::after, .panel-btn:active::after, .service-btn:active::after {
  width: 200%; height: 200%; opacity: 1;
  transition: 0s;
}

.cta-btn:hover, .panel-btn:hover, .service-btn:hover {
  box-shadow: 0 4px 24px #0d73ac55;
  background: linear-gradient(90deg, #0d73ac 60%, #0d73ac 100%);
  color: #181f2a;
}

/* --- Section Fade-in/Slide-in Animations --- */
.animated { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
.animated.visible { opacity: 1; transform: none; }
.fade-in { animation: fadeIn 1.2s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.slide-in { animation: slideIn 1.2s both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

/* --- Animated SVG Shapes --- */
.hero .svg-shape, .panel-section .svg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero .svg-shape {
  top: 10%; left: 70%; width: 120px; height: 120px; opacity: 0.18;
  animation: floatShape 6s ease-in-out infinite alternate;
}
.panel-section .svg-shape {
  bottom: 10%; right: 10%; width: 80px; height: 80px; opacity: 0.13;
  animation: floatShape 7s ease-in-out infinite alternate-reverse;
}
@keyframes floatShape {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.08) rotate(8deg); }
}

/* Remove .tech-bg and .tech-bg::before backgrounds for a clean canvas-only effect */
.hero.tech-bg {
  color: #fff;
  position: relative;
  min-height: 60vh;
  padding-bottom: 3rem;
  overflow: hidden;
}
/* .tech-bg::before { ... } removed */
.hero-glow-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.5;
}
.hero-glow-shape.shape1 {
  top: 10%; left: 10%; width: 220px; height: 220px; background: radial-gradient(circle, #0d73ac 0%, transparent 80%);
}
.hero-glow-shape.shape2 {
  top: 40%; right: 5%; width: 180px; height: 180px; background: radial-gradient(circle, #3a1c71 0%, transparent 80%);
}
.hero-glow-shape.shape3 {
  bottom: 0; left: 50%; width: 300px; height: 120px; background: radial-gradient(circle, #0d73ac 0%, transparent 80%);
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.hero-content .hero-sub {
  font-size: 1.25rem;
  color: #cfd8ff;
  margin-bottom: 2.2rem;
}

/* Glassmorphic features row */
.features-row {
  background: rgba(24,31,42,0.65);
  border-radius: 18px;
  box-shadow: 0 4px 32px #181f2a33;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: -2.5rem;
  padding: 1.5rem 2rem;
  z-index: 2;
  position: relative;
}
.features-row .feature-card {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
}

.panel-section.tech-bg-light {
  background: #fff;
  color: #fff;
}

.games-section.tech-bg-fade {
  background: linear-gradient(120deg, #232b3a 60%, #232b3a 100%);
  color: #fff;
}

.services-section {
  background: #f7fafc;
  color: #181f2a;
  border-radius: 18px;
  margin: 3rem 0 2rem 0;
  padding: 2.5rem 0;
}

.trust-signals {
  background: #232b3a;
  color: #fff;
  border-radius: 18px;
  margin: 3rem 0 2rem 0;
  padding: 2rem 0;
}

.locations-section {
  background: #f7fafc;
  color: #181f2a;
  border-radius: 18px;
  margin: 3rem 0 2rem 0;
  padding: 2rem 0;
}

.testimonials-section {
  background: #232b3a;
  color: #fff;
  border-radius: 18px;
  margin: 3rem 0 2rem 0;
  padding: 2.5rem 0;
}

.services-section h2, .locations-section h2 {
  color: #181f2a;
}
.panel-section h2, .games-section h2, .testimonials-section h2, .trust-signals .trust-item span {
  color: #fff;
}

.service-card, .game-card, .feature-card, .trust-item, .testimonial {
  background: #232b3a;
  color: #fff;
}
.service-card h3, .game-card span, .feature-card, .service-price span {
  color: #0d73ac;
}

@media (max-width: 900px) {
  .services-section, .games-section, .panel-section, .testimonials-section, .trust-signals, .locations-section {
    border-radius: 10px;
    padding: 1.2rem 0.5rem;
  }
}

.services-section, .locations-section {
  position: relative;
  overflow: hidden;
}
/* .section-bg-animated::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(135deg, rgba(13,115,172,0.07) 0 2px, transparent 2px 40px);
  pointer-events: none;
  z-index: 0;
  animation: bg-move 12s linear infinite;
  opacity: 0.7;
} */
/* @keyframes bg-move {
  0% { background-position: 0 0; }
  100% { background-position: 120px 120px; }
} */

/* Sidebar overlay for focus */
.sidebar-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,31,42,0.45);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.sidebar-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
}
.hero-left {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
.hero-right {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-illustration {
  width: 480px;
  max-width: 100%;
  height: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.trust-signals-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.trust-google {
  width: 32px;
  height: 32px;
}
.trust-stars {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.trust-rating {
  color: #cfd8ff;
  font-size: 1rem;
  font-weight: 500;
}

.feature-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: -2.5rem auto 2.5rem auto;
  max-width: 1100px;
  z-index: 3;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 100%;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.feature-card-white {
  background: #232b3a;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,31,42,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  height: auto;
}
.feature-card-white:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(24,31,42,0.13);
}
.feature-card-white img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.7rem;
}
.feature-card-white h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card-white p {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .hero-illustration {
    width: 90vw;
    max-width: 340px;
  }
  .feature-cards-row {
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 1.5rem 0;
  }
}

.games-section-iceline {
  background: #181f2a;
  color: #fff;
  border-radius: 18px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 0 2.5rem 0;
  max-width: 1200px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(24,31,42,0.10);
  position: relative;
}
.games-section-iceline h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
  margin-left: 2.5rem;
}
.games-section-iceline .games-sub {
  font-size: 1.15rem;
  color: #0d73ac;
  font-weight: 700;
  margin-left: 2.5rem;
  margin-bottom: 0.2rem;
}
.games-section-iceline .games-desc {
  font-size: 1.05rem;
  color: #cfd8ff;
  margin-left: 2.5rem;
  margin-bottom: 2.2rem;
}
.games-desc {
  color: #000 !important;
}

.games-cards-iceline {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  flex-wrap: wrap;
}
.game-card-iceline {
  background: #232b3a;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(24,31,42,0.13);
  padding: 0.7rem 0.7rem 1.2rem 0.7rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
}
.game-card-iceline:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(24,31,42,0.18);
}
.game-card-iceline img {
  width: 180px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.game-card-iceline span {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.2rem;
  text-shadow: 0 2px 8px #181f2a55;
}
@media (max-width: 900px) {
  .games-cards-iceline {
    flex-direction: column;
    gap: 1.2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .games-section-iceline h2, .games-section-iceline .games-sub, .games-section-iceline .games-desc {
    margin-left: 0.5rem;
  }
}

.why-choose-section {
  width: 100%;
  background: #fff;
  color: #fff;
  padding: 3.5rem 0 3rem 0;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px rgba(24,31,42,0.10);
  position: relative;
}
.why-choose-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}
.why-choose-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.why-choose-desc {
  font-size: 1.15rem;
  color: #cfd8ff;
  margin-bottom: 2.2rem;
  max-width: 700px;
}
.why-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 1.13rem;
  font-weight: 700;
}
.why-feature {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: rgba(24,31,42,0.7);
  border-radius: 10px;
  padding: 0.8em 1.3em;
  box-shadow: 0 1px 6px rgba(24,31,42,0.07);
  margin-bottom: 0.5rem;
  color: #fff;
  transition: background 0.18s;
}
.why-feature span {
  font-size: 1.3em;
}
.why-feature:hover {
  background: #0d73ac;
  color: #181f2a;
}
@media (max-width: 900px) {
  .why-choose-inner {
    padding: 0 0.5rem;
  }
  .why-features-list {
    flex-direction: column;
    gap: 0.7rem;
  }
}

.panel-desc-white {
  color: #fff !important;
}

.footer-section {
  background: #181f2a;
  color: #cfd8ff;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 3rem;
  width: 100%;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: 128px;
  height: 128px;
  border-radius: 10px;
  background: none;
  box-shadow: 0 2px 8px #181f2a22;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  color: #cfd8ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #0d73ac;
}
.footer-social {
  display: flex;
  gap: 1.1rem;
}
.footer-social-icon {
  font-size: 1.5rem;
  color: #cfd8ff;
  transition: color 0.18s;
  text-decoration: none;
}
.footer-social-icon:hover {
  color: #0d73ac;
}
.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 2rem;
  padding: 0 2rem;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .footer-bottom {
    padding: 0 0.5rem;
  }
}

.games-viewall-row {
  display: flex;
  justify-content: flex-start;
  margin-left: 2.5rem;
  margin-top: 2.2rem;
}
.games-viewall-btn {
  background: #0d73ac;
  color: #181f2a;
  font-weight: 700;
  padding: 0.9em 2.2em;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(13,115,172,0.12);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.games-viewall-btn:hover {
  background: #0d73ac;
  color: #fff;
}
@media (max-width: 900px) {
  .games-viewall-row {
    margin-left: 0.5rem;
    justify-content: center;
  }
}

.game-placeholder-stack {
  position: relative;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  z-index: 1;
}
.game-placeholder-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  border-radius: 12px;
  background: linear-gradient(120deg, #7f5fffcc 0%, #a685ffcc 100%);
  opacity: 0.5;
  z-index: 2;
}
.game-placeholder-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: none;
  box-shadow: 0 2px 8px #181f2a22;
  z-index: 3;
}

.why-choose-section, .panel-section, .testimonials-section, .french-hosting-section {
  background: #232b3a !important;
  color: #fff !important;
}

.french-hosting-section {
  background: #e3f2fd !important;
}

.services-section h2,
.games-section-iceline h2,
.why-choose-section h2,
.panel-section h2,
.locations-section h2,
.testimonials-section h2 {
  color: #181f2a;
}

.services-section,
.games-section-iceline,
.why-choose-section,
.panel-section,
.locations-section,
.testimonials-section {
  color: #181f2a;
}

/* Optionally, add a subtle white background with opacity for readability: */
/*
.services-section,
.games-section-iceline,
.why-choose-section,
.panel-section,
.locations-section,
.testimonials-section {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 16px rgba(24,31,42,0.05);
}
*/

.why-choose-section, .feature-cards-row, .testimonials-section, .services-section {
  background: #232b3a;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(24,31,42,0.12);
  padding: 2.5rem 2rem;
  margin: 3rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

/* For dark card look, use this instead for testimonials-section if desired: */
/*
.testimonials-section {
  background: #232b3a;
  color: #fff;
}
*/

.why-choose-section h2,
.panel-section h2,
.services-section h2,
.testimonials-section h2 {
  color: #fff !important;
}

/* Modern Services Section Redesign */
.modern-services {
  position: relative;
  padding: 4rem 0 4rem 0;
  background: #232b3a;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0d73ac11;
  overflow: hidden;
  margin-bottom: 3rem;
}
.services-subtitle {
  text-align: center;
  font-size: 1.18rem;
  color: #0d73ac;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.modern-services-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}
.modern-service-card {
  background: rgba(24,31,42,0.98);
  border-radius: 18px;
  box-shadow: 0 2px 16px #0d73ac22;
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 320px;
  padding: 2.2rem 2rem 2.2rem 0.7rem;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.modern-service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #0d73ac33;
}
.service-accent-bar {
  width: 8px;
  height: 80%;
  background: #fff;
  border-radius: 8px;
  margin-right: 1.5rem;
  min-height: 90px;
  align-self: stretch;
}
.modern-service-icon {
  font-size: 2.7rem;
  margin-right: 1.5rem;
  color: #0d73ac;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px #0d73ac22);
}
.modern-service-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.modern-service-content p {
  font-size: 1.08rem;
  color: #cfd8ff;
  margin-bottom: 1.1rem;
}
.modern-service-content .service-price {
  color: #0d73ac;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.services-bg-shape {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #0d73ac22 0%, transparent 80%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
@media (max-width: 900px) {
  .modern-services-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .modern-service-card {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
  .services-bg-shape {
    width: 220px;
    height: 220px;
    right: -60px;
    top: 20px;
  }
}

.french-hosting-section {
  min-height: 500px;
  display: flex;
  align-items: stretch;
  background: #232b3a;
  color: #fff;
  border-radius: 18px;
  margin: 2rem 0 1.2rem 0;
  box-shadow: 0 2px 16px #0d73ac22;
  position: relative;
  padding-left: 3vw;
  padding-right: 3vw;
}
.french-hosting-inner.french-hosting-row {
  min-height: 500px;
  align-items: stretch;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 2.5rem;
}
.french-hosting-text {
  flex: 2;
  text-align: left;
  align-self: flex-start;
}
.french-hosting-section h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.french-hosting-desc {
  font-size: 1rem;
  color: #cfd8ff;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
  padding-right: 0.2rem;
}
.french-hosting-desc strong {
  display: inline;
  color: #0d73ac;
  font-size: 1.01rem;
  margin: 0 0.2em 0 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.french-hosting-image {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.french-hosting-img {
  width: 100%;
  max-width: 900;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 900;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0d73ac22;
  background: #fff;
  margin-top: 0;
}
@media (max-width: 900px) {
  .french-hosting-section {
    padding-left: 1vw;
    padding-right: 1vw;
    min-height: unset;
  }
  .french-hosting-inner.french-hosting-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
    min-height: unset;
    max-width: 98vw;
  }
  .french-hosting-image {
    justify-content: flex-start;
    align-items: center;
    height: auto;
  }
  .french-hosting-img {
    max-width: 98vw;
    max-height: 98vw;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
  }
}

/* --- Custom Language Dropdown --- */
.lang-dropdown-btn {
  background: #232b3a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.4em 1.2em 0.4em 0.7em;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  min-width: 60px;
  transition: background 0.2s, color 0.2s;
}
.lang-dropdown-btn:hover, .lang-dropdown-btn:focus {
  background: #0d73ac;
  color: #181f2a;
}
.lang-dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #232b3a;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px #0002;
  padding: 0.2em 0;
  margin: 0;
  list-style: none;
  z-index: 100;
  min-width: 100px;
  animation: fadeInLangMenu 0.18s;
}
@keyframes fadeInLangMenu {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.lang-dropdown-menu li {
  width: 100%;
}
.lang-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 6px;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.lang-dropdown-menu button[aria-selected="true"], .lang-dropdown-menu button:hover, .lang-dropdown-menu button:focus {
  background: #0d73ac;
  color: #181f2a;
}
@media (max-width: 700px) {
  .lang-dropdown-menu {
    min-width: 80px;
    right: 0;
    left: auto;
  }
  .lang-dropdown-btn {
    font-size: 0.98rem;
    padding: 0.3em 0.7em 0.3em 0.5em;
  }
}

@keyframes sidebarOpenAnim {
  0% {
    transform: translateX(-100%) scale(0.98);
    opacity: 0;
    box-shadow: 0 0 0 rgba(24,31,42,0);
  }
  80% {
    box-shadow: 8px 0 32px rgba(24,31,42,0.18);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
    box-shadow: 8px 0 32px rgba(24,31,42,0.18);
  }
}
.sidebar.sidebar-animating-open {
  animation: sidebarOpenAnim 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  will-change: transform, opacity, box-shadow;
}

/* --- Sidebar Footer Actions --- */
.sidebar-footer-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
  position: absolute;
  bottom: 3.5em;
  left: 0;
  padding: 0 0 1.2em 0;
  z-index: 10;
  min-height: 90px;
}
.sidebar-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 5px;
  padding: 0.38em 0.5em;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin: 0;
  outline: none;
  border: none;
  cursor: pointer;
  gap: 0.3em;
  width: 90%;
  max-width: 210px;
  align-self: center;
}
.sidebar-action-btn-panel {
  background: #0d73ac;
  color: #fff;
  border: none;
}
.sidebar-action-btn-panel:hover, .sidebar-action-btn-panel:focus {
  background: #0b5c8e;
  color: #fff;
}
.sidebar-action-btn-client {
  background: #232b3a;
  color: #fff;
  border: 1.5px solid #0d73ac;
}
.sidebar-action-btn-client:hover, .sidebar-action-btn-client:focus {
  background: #0d73ac;
  color: #fff;
}
@media (max-width: 700px) {
  .sidebar-footer-actions {
    padding: 0 0.4em;
    bottom: 0.7em;
  }
  .sidebar-action-btn {
    font-size: 0.95rem;
    padding: 0.45em 0.5em;
  }
}

/* Sidebar collapsed/expanded states */
.left-wave-hotspot {
  position: fixed;
  left: 0;
  top: 0;
  width: 40px;
  height: 100vh;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.2s;
  pointer-events: auto;
}
.left-wave-hotspot .wave-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #0d73ac;
  font-size: 2em;
  opacity: 0.7;
  pointer-events: none;
}
body.sidebar-collapsed .sidebar {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
}
body.sidebar-expanded .sidebar {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
}
.sidebar {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
  z-index: 1002;
}
body.sidebar-collapsed .left-wave-hotspot {
  display: flex;
}
body.sidebar-expanded .left-wave-hotspot {
  display: none;
}

.hero-section.tech-bg {
  background: linear-gradient(135deg, #181f2a 0%, #0d73ac 100%) !important;
  background-image: linear-gradient(135deg, #181f2a 0%, #0d73ac 100%) !important;
  background-color: transparent !important;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px 40px;
}
.hero-left {
  flex: 1 1 50%;
  z-index: 2;
}
.hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.hero-illustration {
  max-width: 340px;
  width: 100%;
  height: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.hero-section h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.3rem;
  color: #e0f7fa;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 40px 10px 20px 10px;
  }
  .hero-left, .hero-right {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-illustration {
    max-width: 220px;
    margin-top: 24px;
  }
}

.sidebar-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1100;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sidebar-close-btn:hover {
  opacity: 1;
}
.sidebar {
  position: relative;
}

.site-wrapper {
  display: flex;
  flex-direction: row;
  width: 100vw;
  min-height: 100vh;
  position: relative;
  background: #fff !important;
  background-image: none !important;
  background-color: transparent !important;
}
.sidebar {
  position: relative;
  left: 0;
  top: 0;
  height: 100vh;
  width: 260px;
  min-width: 0;
  background: rgba(24,31,42,0.98);
  color: #fff;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: 8px 0 32px rgba(24,31,42,0.18);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s;
  overflow: hidden;
}
body.sidebar-collapsed .sidebar {
  width: 0;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}
body.sidebar-expanded .sidebar {
  width: 260px;
  min-width: 260px;
  opacity: 1;
  pointer-events: auto;
  padding: 2rem 1rem;
}
.main-content {
  flex: 1 1 0%;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  max-width: none;
  background: #fff !important;
  min-height: 100vh;
  transition: none;
  position: relative;
  z-index: 1;
  left: 0;
}
.left-wave-hotspot {
  position: fixed;
  left: 0;
  top: 0;
  width: 40px;
  height: 100vh;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.2s;
  pointer-events: auto;
}
body.sidebar-collapsed .left-wave-hotspot {
  display: flex;
}
body.sidebar-expanded .left-wave-hotspot {
  display: none;
}

body, html, .site-wrapper, .container {
  overflow: visible !important;
  position: static !important;
  z-index: auto !important;
}

.sidebar {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  height: 100vh !important;
  width: 260px !important;
  z-index: 99999 !important;
  background: rgba(24,31,42,0.98) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 2rem 1rem !important;
  box-shadow: 8px 0 32px rgba(24,31,42,0.18) !important;
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s !important;
  overflow: hidden !important;
}

/* Remove background from subtitle in services/games section */
.services-section .services-subtitle, .games-section-iceline .games-sub {
  background: none !important;
}

/* Ensure Lap Panel section has correct background */
.panel-section {
  background: #232b3a !important;
  color: #fff !important;
}

.panel-content, .french-hosting-section {
  background: #232b3a !important;
  color: #fff !important;
}

.games-section-iceline {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Login/Register Page Custom Styles */
.login-register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181f2a;
}
.login-register-card {
  background: #232b3a;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(24,31,42,0.25);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-register-logo img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.login-register-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.login-register-card label {
  color: #bfc9da;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.login-register-card .form-group {
  width: 100%;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}
.login-register-card .form-control, .login-register-card .form-select {
  background: #202736;
  color: #fff;
  border: 1.5px solid #273043;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  margin-top: 0.2rem;
  transition: border 0.2s;
}
.login-register-card .form-control:focus, .login-register-card .form-select:focus {
  border-color: #0d73ac;
  outline: none;
}
.login-register-card .btn-primary {
  background: #0d73ac;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.7rem 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.login-register-card .btn-primary:hover {
  background: #0b5c8c;
}
.login-register-links {
  margin-top: 1.2rem;
  text-align: center;
}
.login-register-links a {
  color: #6c8cff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 0.3rem;
  transition: color 0.2s;
}
.login-register-links a:hover {
  color: #0d73ac;
}
@media (max-width: 600px) {
  .login-register-card {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .login-register-title {
    font-size: 1.3rem;
  }
}

/* FINAL OVERRIDE - ULTIMATE PRIORITY - CLIENT AREA ONLY */
/* REMOVED: This was forcing white background and overriding theme preferences */

/* Override any remaining white backgrounds - CLIENT AREA ONLY */
/* REMOVED: This was forcing white background and overriding theme preferences */

/* ULTIMATE CLIENT AREA OVERRIDE - MUST BE LAST */
/* REMOVED: This was forcing white background and overriding theme preferences */

/* NUCLEAR OPTION - FORCE ALL CLIENT AREA BACKGROUNDS */
/* REMOVED: This was forcing white background and overriding theme preferences */

body .site-wrapper.dashboard .main-content,
body .site-wrapper.client-profile .main-content,
body .site-wrapper.order-index .main-content,
body .site-wrapper.invoice-index .main-content,
body .site-wrapper.support-tickets .main-content,
body .site-wrapper.support-ticket .main-content,
body .site-wrapper.order-manage .main-content,
body .site-wrapper.order-list .main-content,
body .site-wrapper.order-product .main-content,
body .site-wrapper.support-contact-us .main-content,
body .site-wrapper.support-contact-us-conversation .main-content,
body .site-wrapper.kb-index .main-content,
body .site-wrapper.kb-category .main-content,
body .site-wrapper.kb-article .main-content,
body .site-wrapper.email-index .main-content,
body .site-wrapper.email-email .main-content,
body .site-wrapper.invoice-invoice .main-content,
body .site-wrapper.client-balance .main-content,
body .site-wrapper.news-index .main-content,
body .site-wrapper.news-post .main-content,
body .site-wrapper.custom-page .main-content,
body .site-wrapper.tos .main-content,
body .site-wrapper.privacy-policy .main-content,
body .site-wrapper.about-us .main-content {
  background: #fff !important;
  background-image: none !important;
}

/* Fallback: Always show a gradient in client area */
.site-wrapper,
.site-wrapper .main-content {
  background: #fff !important;
  background-image: none !important;
  background-color: transparent !important;
}
