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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* success stories new section at end of file */
.success-stories-section {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid var(--gray-200);
  .process-section.alt {
    background: #111827;
    color: #fff;
  }
  .process-section.alt .process-head p {
    color: var(--gray-400);
  }
  .process-section.alt .process-head h2 {
    color: #fff;
  }
  .process-section.alt .process-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    padding-left: 18px;
  }
  .process-section.alt .process-grid:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--primary-red), #a91d42);
  }
  .process-section.alt .proc-step {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 24px;
    border-radius: 0;
  }
  .process-section.alt .proc-step:hover {
    transform: none;
  }
  .process-section.alt .proc-n {
    position: absolute;
    left: -6px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #111827;
  }
  .process-section.alt .proc-step {
    position: relative;
  }
  .process-section.alt .proc-step h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 4px;
  }
  .process-section.alt .proc-step p {
    color: var(--gray-400);
    font-size: 0.85rem;
  }
  .process-section.alt .process-foot {
    padding-top: 12px;
  }
  .process-section.alt .proc-btn.main {
    background: var(--primary-red);
  }
  .process-section.alt .proc-btn.alt {
    background: transparent;
    color: #fff;
    border-color: var(--primary-red);
  }
  .process-section.alt .proc-btn.alt:hover {
    background: var(--primary-red);
    color: #fff;
  }
  @media (min-width: 840px) {
    .process-section.alt .process-wrap {
      flex-direction: row;
      align-items: flex-start;
      gap: 60px;
    }
    .process-section.alt .process-head {
      flex: 0 0 300px;
      position: sticky;
      top: 100px;
    }
    .process-section.alt .process-grid {
      flex: 1;
    }
  }
}
.process-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.process-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.process-head h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}
.process-head p {
  margin: 0;
  color: var(--text-secondary);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}
.proc-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: var(--transition-fast);
}
.proc-step:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.proc-n {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  background: var(--primary-red);
  color: #fff;
}
.proc-step h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
}
.proc-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}
.process-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.proc-btn {
  text-decoration: none;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.95rem;
  display: inline-block;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.proc-btn.main {
  background: var(--primary-red);
  color: #fff;
}
.proc-btn.main:hover {
  background: #000;
}
.proc-btn.alt {
  background: #fff;
  border-color: var(--gray-300);
  color: var(--text-primary);
}
.proc-btn.alt:hover {
  border-color: var(--primary-red);
  color: var(--primary-red-dark);
}
@media (max-width: 900px) {
  .process-section {
    padding: 70px 0;
  }
  .process-head h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 650px) {
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .proc-step {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .proc-n {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .process-head h2 {
    font-size: 1.6rem;
  }
  .process-foot {
    flex-direction: column;
  }
  .proc-btn {
    width: 100%;
    text-align: center;
  }
}
.success-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.success-intro h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}
.success-intro p {
  margin: 0;
  color: var(--text-secondary);
}
.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.ss-card {
  background: var(--bg-secondary);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-fast);
}
.ss-card:hover {
  border-color: var(--primary-red);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.ss-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}
.ss-user {
  font-weight: 600;
  color: var(--text-primary);
}
.ss-tag {
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 30px;
}
.ss-metric {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--primary-red-dark);
}
.ss-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.success-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}
.success-note {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  flex: 1;
  min-width: 220px;
}
.success-actions {
  display: flex;
  gap: 12px;
}
.ss-btn {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}
.ss-btn.primary {
  background: var(--primary-red);
  color: #fff;
}
.ss-btn.primary:hover {
  background: #000;
}
.ss-btn.second {
  background: #fff;
  border-color: var(--gray-300);
  color: var(--text-primary);
}
.ss-btn.second:hover {
  border-color: var(--primary-red);
  color: var(--primary-red-dark);
}
@media (max-width: 900px) {
  .success-stories-section {
    padding: 60px 0;
  }
  .success-intro h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 600px) {
  .success-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
  }
  .ss-card {
    padding: 14px;
    border-radius: 12px;
  }
  .ss-metric {
    font-size: 1.15rem;
  }
  .success-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .success-actions {
    width: 100%;
  }
  .ss-btn {
    flex: 1;
    text-align: center;
  }
}
.success-stories-section {
  background: #fff !important;
  background-image: none !important;
}

.expert-analysis-section {
  background: #f8f9fb;
  padding: 70px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.ea-head {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.ea-head h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  letter-spacing: -0.5px;
}
.ea-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ea-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--primary-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.ea-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 34px;
}
.ea-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.25s ease;
}
.ea-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.ea-card h3 {
  margin: 0;
  font-size: 1rem;
}
.ea-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-secondary);
}
.ea-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.7rem;
}
.ea-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.ea-list i {
  color: var(--primary-red);
  font-size: 0.65rem;
}
.ea-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 0 28px;
}
.ea-stat {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
}
.ea-stat .n {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red-dark);
}
.ea-stat span:last-child {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-weight: 600;
}
.ea-cta {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.ea-cta p {
  margin: 0 0 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.expert-analysis-section .btn {
  padding: 14px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
}
@media (max-width: 800px) {
  .ea-head h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 560px) {
  .expert-analysis-section {
    padding: 60px 0;
  }
  .ea-grid {
    gap: 16px;
  }
  .ea-card {
    padding: 18px 16px 20px;
  }
  .ea-head h2 {
    font-size: 1.55rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  h6 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mt-150 {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .footer-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.main-content {
  margin-top: 60px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .main-content {
    margin-top: 60px;
  }
  .section-header-enhanced h2 {
    font-size: 2rem !important;
  }
}
.main-content {
  margin-top: 100px;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--bg-gradient);
  color: var(--text-white);
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.btn-primary:hover {
  color: white;
  background: #000000;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background-color: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: var(--gray-200);
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--bg-gradient);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }
}
:root {
  /* Modern Dark Red Color Palette */
  --primary-red: #0ea5e9;
  --primary-red-dark: #0284c7;
  --primary-red-light: #38bdf8;
  --secondary-purple: #8b5cf6;
  --accent-red: #06b6d4;
  --accent-green: #22c55e;
  --accent-yellow: #fbbf24;
  /* Neutral Colors */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  /* Text Colors */
  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-tertiary: #71717a;
  --text-white: #ffffff;
  --text-light: #fafafa;
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f4f4f5;
  --bg-dark: #18181b;
  --bg-gradient: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  /* Typography */
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  /* Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}
/* Ultra Modern Header with Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100vw;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 118, 210, 0.1) 0%,
    rgba(33, 150, 243, 0.05) 50%,
    rgba(25, 118, 210, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.header.scrolled {
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(25, 118, 210, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(25, 118, 210, 0.2);
}

.header.scrolled::before {
  opacity: 1;
}

.navbar {
  padding: 20px 0;
  position: relative;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0ea5e9, #a91d42, #0ea5e9);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Modern Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(25, 118, 210, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #a91d42);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #42a5f5;
  background: rgba(25, 118, 210, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover::after {
  width: 80%;
}

/* Enhanced Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  width: 200px;
  max-height: 70vh;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(25, 118, 210, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item img {
  height: 36px !important;
  width: auto;
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgb(255, 255, 255);
}

.dropdown-item:hover img {
  filter: brightness(1.5);
}

/* Ultra Modern Hamburger Menu */
.nav-hamburger,
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1020;
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle .hamburger-icon,
.nav-toggle .close-icon {
  font-size: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.nav-toggle .close-icon {
  display: none;
}

.nav-toggle.active .hamburger-icon {
  display: none;
}

.nav-toggle.active .close-icon {
  display: block;
}

/* Position close button on right when mobile menu is active */
.nav-toggle.active {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Mobile Menu Overlay */
.nav-menu.mobile-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 1000;
  animation: mobileMenuSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mobileMenuSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu.mobile-open .nav-link {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(25, 118, 210, 0.3);
  background: rgba(25, 118, 210, 0.1);
  min-width: 200px;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
  animation: mobileItemSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-menu.mobile-open .nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-menu.mobile-open .nav-link:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-menu.mobile-open .nav-link:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-menu.mobile-open .nav-link:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes mobileItemSlideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-hamburger,
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    gap: 1rem;
    z-index: 1000;
    animation: mobileMenuSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
  }

  .nav-menu.active .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 280px;
    max-width: 320px;
    width: 90%;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #ffffff !important;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    position: relative;
    overflow: hidden;
  }

  .nav-menu.active .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s;
  }

  .nav-menu.active .nav-link:hover::before {
    left: 100%;
  }

  .nav-menu.active .nav-link:hover {
    background: rgba(139, 21, 56, 0.15);
    border-color: rgba(139, 21, 56, 0.3);
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
  }

  .nav-menu.active .nav-dropdown {
    position: relative;
    width: 90%;
    max-width: 320px;
  }

  .nav-menu.active .nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Remove special gradient - use same as other buttons */
  }

  .nav-menu.active .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Remove the CSS arrow since HTML already has FontAwesome chevron */

  /* This rule will be overridden by the more specific ones below */

  .nav-menu.active .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    justify-content: center;
  }

  .nav-menu.active .dropdown-item:last-child {
    margin-bottom: 0;
  }

  .nav-menu.active .dropdown-item:hover {
    background: rgba(25, 118, 210, 0.2);
    transform: translateX(5px);
  }

  .nav-menu.active .dropdown-item img {
    height: 24px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
  }

  .nav-menu.active .dropdown-item:hover img {
    filter: brightness(1.5);
    transform: scale(1.1);
  }

  /* Mobile dropdown - same as desktop */
  .nav-menu.active .nav-dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-top: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
      0 8px 16px rgba(25, 118, 210, 0.1);
  }

  /* Show dropdown when nav-dropdown has active class */
  .nav-menu.active .nav-dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 300px !important;
    overflow: visible !important;
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .navbar {
    padding: 15px 0;
  }

  /* Mobile Menu Animations */
  @keyframes mobileMenuSlideIn {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Stagger animation for menu items */
  .nav-menu.active .nav-link:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav-menu.active .nav-link:nth-child(2) {
    animation-delay: 0.2s;
  }
  .nav-menu.active .nav-dropdown:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav-menu.active .nav-link:nth-child(4) {
    animation-delay: 0.4s;
  }
  .nav-menu.active .nav-link:nth-child(5) {
    animation-delay: 0.5s;
  }

  .nav-menu.active .nav-link,
  .nav-menu.active .nav-dropdown {
    animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }

  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  transition: var(--transition);
}

.logo-text img {
  width: 150px;
}

.logo-text:hover {
  transform: scale(1.05);
  color: var(--accent-yellow);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #a61c41;
  transform: translateY(-2px);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dropdown-arrow {
  transition: var(--transition);
  font-size: 0.8rem;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: 0 15px 35px var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: var(--transition);
  min-width: 220px;
  z-index: 1001;
  border: 1px solid rgba(255, 202, 40, 0.2);
}

.dropdown-item {
  display: block;
  padding: 12px 15px;
  text-align: center;
  transition: var(--transition);
  border-radius: 12px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border: 1px solid rgba(46, 125, 50, 0.1);
  text-decoration: none;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, var(--accent-yellow), #ffd54f);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 202, 40, 0.3);
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item img {
  height: 35px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-item:hover img {
  transform: scale(1.05);
}

/* Desktop hover only when screen is large enough */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Duplicate hamburger styles removed - using the Ultra Modern version above */

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-hamburger,
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 1020;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: left 0.3s ease-in-out;
    z-index: 1010;
    gap: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
    padding-top: 0;
    padding-bottom: 40px;
  }

  /* Mobile menu header with logo and close button */
  .nav-menu.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1015;
  }

  .nav-menu.active::after {
    content: "";
    background-image: url("/assets/supercotes.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 50px;
    position: fixed;
    top: 15px;
    left: 20px;
    z-index: 1016;
  }

  /* Prevent body scroll when mobile menu is open */
  body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 280px;
    max-width: 90vw;
    text-align: center;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .nav-dropdown {
    width: 280px;
    max-width: 90vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .dropdown-toggle {
    justify-content: center;
    width: 100% !important;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    margin: 8px 0 0 0;
    transition: all 0.3s ease;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 12px;
    padding: 0;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  .dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }

  .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }

  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 60vh;
    padding: 12px;
    margin-top: 8px;
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    color: #ffffff;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .dropdown-item img {
    max-width: 80px;
    height: auto;
  }

  .dropdown-item:hover,
  .dropdown-item:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
  }

  .dropdown-item:last-child {
    margin-bottom: 0;
  }

  .dropdown-item img {
    height: 28px;
    max-width: 90px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .nav-menu {
    padding: 60px 15px;
  }

  .dropdown-item img {
    height: 24px;
    max-width: 80px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #6d1028 100%);
  color: white;
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Enhanced Featured Platforms - Light Mode */
.featured-platforms-enhanced {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
}

.featured-platforms-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.elite-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  width: fit-content;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.elite-badge i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.featured-platforms-enhanced h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #1e293b;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.platforms-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.platform-card-enhanced {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Rugby-themed subtle texture */
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(139, 21, 56, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 21, 56, 0.02) 0%,
      transparent 50%
    );
}

.platform-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(139, 21, 56, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: var(--transition-slow);
}

.platform-card-enhanced:hover::before {
  transform: translateX(100%);
}

.platform-card-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-red-light);
}

.featured-card {
  background: linear-gradient(
    145deg,
    rgba(139, 21, 56, 0.05),
    var(--bg-primary)
  );
  border: 2px solid var(--primary-red);
  box-shadow: 0 15px 35px rgba(139, 21, 56, 0.15);
}

.featured-card:hover {
  box-shadow: var(--shadow-2xl), 0 0 0 1px var(--primary-red-light);
  border-color: var(--primary-red-light);
}

.card-badges {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  height: 35px;
}

.rank-badge {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.favorite-badge {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.platform-logo-enhanced {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 100%;
}

.bwin-logo {
  color: #f59e0b;
  font-style: italic;
}

.unibet-logo {
  flex-direction: column;
  gap: 0.25rem;
}

.unibet-main {
  color: #1e293b;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.unibet-dots {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.dot.green {
  background: #10b981;
}

.vbet-logo {
  color: #ec4899;
  align-items: center;
}

.vbet-logo i {
  font-size: 1.2rem;
  margin-right: 0.3rem;
}

.betclic-logo {
  color: #ef4444;
  font-style: italic;
}

.platform-rating-enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.stars-enhanced {
  display: flex;
  gap: 2px;
}

.stars-enhanced i {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-score {
  color: #1e293b;
  font-weight: 600;
  font-size: 1rem;
}

.bonus-info {
  margin-bottom: 1.5rem;
  color: #1e293b;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-type {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.featured-card .bonus-amount {
  color: #f59e0b;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.bonus-details {
  color: #475569;
  font-size: 0.9rem;
}

.platform-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-review {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--gray-300);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-review:hover {
  background: var(--gray-50);
  color: var(--text-primary);
  border-color: var(--gray-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-visit {
  background: var(--bg-gradient);
  color: var(--text-white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.025em;
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(
    135deg,
    var(--primary-red-dark) 0%,
    var(--secondary-purple) 100%
  );
}

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

@media (max-width: 768px) {
  .featured-platforms-enhanced h2 {
    font-size: 2.5rem;
  }

  .platforms-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-card-enhanced {
    padding: 1.5rem;
    min-height: 380px;
  }

  .bonus-amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .featured-platforms-enhanced {
    padding: 60px 0;
  }

  .featured-platforms-enhanced h2 {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .unibet-main {
    font-size: 1.3rem;
  }

  .platform-card-enhanced {
    min-height: 350px;
  }
}

/* Enhanced Tips Section */
.tips-section-enhanced {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.tips-section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b35' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.section-header-tips {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.tips-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, #0ea5e9, #6d1028);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  animation: tipsBadgePulse 3s ease-in-out infinite;
}

@keyframes tipsBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  }
}

.tips-badge i {
  font-size: 1.2rem;
  animation: lightbulbGlow 2s ease-in-out infinite alternate;
}
.section-header-tips h2 {
  color: white !important;
}
@keyframes lightbulbGlow {
  0% {
    color: #fff;
  }
  100% {
    color: #ffc107;
  }
}

.section-header-tips h2 {
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  position: relative;
  background: linear-gradient(45deg, #333, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes underlineExpand {
  0% {
    width: 100px;
  }
  100% {
    width: 150px;
  }
}

.section-header-tips p {
  font-size: 1.3rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.tips-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
  text-decoration: none;
}

.tip-card-enhanced {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  cursor: pointer;
}

.tip-card-enhanced.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tip-card-enhanced:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tip-card-enhanced:hover::before {
  transform: scaleX(1);
}

.tip-icon-wrapper {
  padding: 2rem 2rem 1rem;
  position: relative;
}

.tip-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9, #6d1028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(-2deg);
  }
}

.tip-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: iconShine 3s linear infinite;
}

@keyframes iconShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.tip-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.tip-category {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #0ea5e9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tip-content-enhanced {
  padding: 0 2rem 2rem;
}

.tip-content-enhanced h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tip-content-enhanced p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.tip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999;
}

.tip-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tip-meta i {
  color: #0ea5e9;
}

.tip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(144, 0, 0, 0.95),
    rgba(73, 0, 0, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tip-card-enhanced:hover .tip-overlay {
  opacity: 1;
}

.tip-action {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.tip-card-enhanced:hover .tip-action {
  transform: scale(1);
  animation: actionPulse 1s ease-in-out infinite;
}

@keyframes actionPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.tips-cta {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.tips-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.05),
    transparent
  );
  animation: ctaShine 3s linear infinite;
}

@keyframes ctaShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.tips-cta h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.tips-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.tips-cta-btn {
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, #0ea5e9, #6d1028);
  border: none;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.tips-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #6d1028, #0ea5e9);
}

.tips-cta-btn i {
  margin-right: 0.5rem;
  animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Responsive Design for Enhanced Tips */
@media (max-width: 768px) {
  .tips-section-enhanced {
    padding: 80px 0;
  }

  .section-header-tips h2 {
    font-size: 2.5rem;
  }

  .tips-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tip-card-enhanced {
    margin: 0 1rem;
  }

  .tips-cta {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .tips-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-header-tips h2 {
    font-size: 2rem;
  }

  .tip-icon {
    width: 60px;
    height: 60px;
  }

  .tip-icon i {
    font-size: 1.5rem;
  }

  .tip-content-enhanced h3 {
    font-size: 1.3rem;
  }

  .tip-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #0ea5e9;
}

.footer-section p,
.footer-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

.footer-section a:hover {
  color: #0ea5e9;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #0ea5e9;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-overlay-max {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 11000;
  backdrop-filter: blur(5px);
}

.popup-overlay-max.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  margin-bottom: 1rem;
  color: #333;
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: #666;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    padding-top: 0;
    gap: 0.8rem;
    display: flex;
    /* justify-items: inherit; */
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile dropdown content improvements */
  .nav-dropdown .dropdown-content {
    position: static !important;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-dropdown.active .dropdown-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 300px !important;
    overflow: visible !important;
    padding: 8px 0;
  }

  .nav-dropdown .dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-align: center;
    transition: var(--transition);
    border-radius: 6px;
    margin: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--text-primary) !important;
    font-size: 0.95rem;
  }

  .nav-dropdown .dropdown-content a:hover,
  .nav-dropdown .dropdown-content a:active {
    background: rgba(139, 21, 56, 0.2);
    border-color: rgba(139, 21, 56, 0.3);
    transform: scale(1.02);
    color: var(--primary-red) !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .platforms-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .featured-platforms,
  .tips-section {
    padding: 40px 0;
  }

  .featured-platforms h2,
  .tips-section h2 {
    font-size: 2rem;
  }

  /* Fix small screen navigation */
  .nav-menu.active {
    padding-top: 0;
    gap: 0.8rem;
    display: flex;
    /* justify-items: inherit; */
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .nav-menu.active .nav-link {
    font-size: 1rem;
    padding: 14px 28px;
    min-width: 260px;
    max-width: 300px;
  }

  .nav-menu.active .dropdown-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
  }

  .nav-menu.active .dropdown-item img {
    height: 22px;
    width: auto;
  }

  /* Improve button spacing */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Modern Hero Section */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 21, 56, 0.9) 0%,
    rgba(169, 29, 66, 0.85) 50%,
    rgba(17, 24, 39, 0.9) 100%
  );
  z-index: -1;
}

.hero-content-modern {
  position: relative;
  z-index: 1;
  width: 100%;
  color: white;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.hero-badge i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.title-line {
  display: block;
  font-weight: 400;
  color: white;
}

.title-highlight {
  display: block;
  background: linear-gradient(45deg, #a20000, #540000, #790000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
}

.hero-description {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
  color: white;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta {
  background: linear-gradient(45deg, #fff, #f8f9fa);
  color: #0ea5e9;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #0ea5e9;
}

.hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  border-color: white;
  color: white;
  transform: scale(1.1);
}

/* New Simplified Hero */
.hero-new {
  position: relative;
  background: #10141b;
  background-image: linear-gradient(
    135deg,
    #111827 0%,
    #1f2937 60%,
    #0ea5e9 130%
  );
  color: #fff;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-new:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.hero-new-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}
.hero-new-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #fff;
}
.hero-new-text .hero-accent {
  color: #f5f5f5;
  font-weight: 600;
  display: inline-block;
}
.hero-new-text p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 560px;
  margin: 0 0 2rem;
  color: #d1d5db;
}
.hero-new-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.2rem;
}
.hero-new-btn {
  min-width: 180px;
}
.hero-new-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
}
.hero-new-stats .n {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.hero-new-side {
  position: relative;
}
.hero-new-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  background: #1f2937;
}
.hero-new-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
  z-index: 1;
}
.hero-new-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
@media (max-width: 900px) {
  .hero-new {
    padding: 120px 0 60px;
  }
  .hero-new-inner {
    gap: 40px;
  }
  .hero-new-stats {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .hero-new {
    padding: 110px 0 50px;
  }
  .hero-new-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-new-btn {
    width: 100%;
  }
  .hero-new-stats {
    gap: 16px;
  }
  .hero-new-card img {
    aspect-ratio: 16/10;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-new-card img {
    transform: scale(1.05);
    transition: transform 14s ease;
  }
  .hero-new-card:hover img {
    transform: scale(1.12);
  }
}

/* Redesigned Featured Platforms Simplified */
.featured-platforms-enhanced {
  background: #f8fafc;
  padding: 70px 0;
  position: relative;
}
.featured-simple {
  max-width: 1200px;
  margin: 0 auto;
}
.fp-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 660px;
}
.fp-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.fp-head p {
  margin: 0;
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}
.fp-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.fp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: 0.3s ease;
  min-height: 190px;
}
.fp-card.top {
  border: 2px solid #0ea5e9;
}
.fp-card:hover {
  box-shadow: 0 6px 26px -8px rgba(15, 23, 42, 0.18);
  transform: translateY(-4px);
}
.fp-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0ea5e9;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.fp-logo {
  height: 46px;
  display: flex;
  align-items: center;
}
.fp-logo img {
  max-height: 40px;
  width: auto;
  filter: grayscale(0.1);
}
.fp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 500;
}
.fp-meta span {
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}
.fp-rating {
  background: #fde68a !important;
  color: #92400e !important;
  font-weight: 600;
}
.fp-bonus {
  background: #e0f2fe !important;
  color: #075985 !important;
  font-weight: 600;
}
.fp-tag {
  background: #f1f5f9;
}
.fp-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.fp-actions a {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}
.fp-link {
  background: #f1f5f9;
  color: #334155;
}
.fp-link:hover {
  background: #e2e8f0;
}
.fp-visit {
  background: #0ea5e9;
  color: #fff;
}
.fp-visit:hover {
  background: #6d1028;
}
@media (max-width: 680px) {
  .featured-platforms-enhanced {
    padding: 60px 0;
  }
  .fp-grid {
    gap: 20px;
  }
  .fp-card {
    padding: 18px 16px;
  }
  .fp-actions {
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .fp-meta {
    gap: 6px;
  }
  .fp-meta span {
    font-size: 0.65rem;
    padding: 4px 6px;
  }
  .fp-logo {
    height: 40px;
  }
  .fp-logo img {
    max-height: 34px;
  }
}
.fp-desc {
  font-size: 0.76rem;
  line-height: 1.35;
  color: #475569;
  margin-top: -2px;
}
.fp-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 6px;
  padding: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.fp-features li {
  background: #f1f5f9;
  padding: 4px 6px;
  border-radius: 5px;
  color: #334155;
}
.fp-card.top .fp-features li {
  background: #fff0f4;
}
.fp-footer {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fp-more {
  display: inline-block;
  background: #111827;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: 0.25s ease;
}
.fp-more:hover {
  background: #0ea5e9;
}
.fp-note {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}
@media (max-width: 700px) {
  .fp-footer {
    margin-top: 34px;
  }
  .fp-desc {
    font-size: 0.74rem;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #0ea5e9, #6d1028);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.step-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-item::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #0ea5e9, #6d1028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9, #6d1028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.step-item:hover .step-icon::before {
  left: 100%;
}

.step-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.stats-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(139, 21, 56, 0.9) 50%,
    rgba(99, 102, 241, 0.9) 100%
  );
  z-index: -1;
}

.section-header-white {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.section-header-white h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  color: white;
}

.section-header-white h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-yellow), var(--accent-red));
  border-radius: var(--radius);
}

.section-header-white p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0ea5e9, #6d1028);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-number-large {
  font-size: 3rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label-large {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Redesigned */
.faq-block {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafbff 0%, #f3f5fa 50%, #eef0f6 100%);
}
.faq-head {
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}
.faq-head h2 {
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #0ea5e9, #531024);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-head p {
  margin: 0;
  color: #4a4f57;
  font-size: 1.05rem;
  font-weight: 500;
}
.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.25rem 1.5rem;
  align-items: start;
}
.faq-row {
  position: relative;
  border: 1px solid #dde1e8;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 10px -2px rgba(20, 25, 40, 0.05), 0 1px 0 0 #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(139, 21, 56, 0.03)
  );
}
.faq-row:before {
  content: counter(faq);
  counter-increment: faq;
  position: absolute;
  top: 10px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0ea5e9;
  color: #fff;
  font: 600 0.95rem/34px "Inter", sans-serif;
  text-align: center;
  opacity: 0.9;
}
.faq-list {
  counter-reset: faq;
}
.faq-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.3rem 1.15rem 3.4rem;
  font: 600 1.02rem/1.35 "Inter", sans-serif;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #1f2430;
  letter-spacing: 0.3px;
}
.faq-toggle:hover {
  color: #0ea5e9;
}
.faq-row.open {
  border-color: #b0436a;
  box-shadow: 0 6px 18px -4px rgba(139, 21, 56, 0.25), 0 1px 0 0 #ede0e5;
  transform: translateY(-2px);
}
.faq-q {
  flex: 1;
}
.faq-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f0f1f5;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.35s;
}
.faq-row.open .faq-icon {
  background: #0ea5e9;
  color: #fff;
  transform: rotate(135deg);
}
.faq-panel {
  padding: 0 1.3rem 0 3.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.65, 0.05, 0.36, 1), padding 0.3s;
  color: #343a45;
}
.faq-row.open .faq-panel {
  padding: 0 1.3rem 1.25rem 3.4rem;
}
.faq-panel p {
  margin: 0;
  color: #2d323b;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}
.faq-row.open .faq-panel p {
  animation: faqFade 0.4s ease 0.05s both;
}
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-icon,
  .faq-panel,
  .faq-row.open {
    transition: none;
    animation: none;
  }
}
@media (max-width: 1080px) {
  .faq-list {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
}
@media (max-width: 820px) {
  .faq-head h2 {
    font-size: 2.1rem;
  }
  .faq-head p {
    font-size: 0.95rem;
  }
  .faq-toggle {
    padding: 1.15rem 1rem 1rem 3.1rem;
    font-size: 0.98rem;
  }
  .faq-panel {
    padding: 0 1rem 0 3.1rem;
  }
  .faq-row.open .faq-panel {
    padding: 0 1rem 1.1rem 3.1rem;
  }
}
@media (max-width: 620px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-block {
    padding: 70px 0;
  }
  .faq-head h2 {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .faq-toggle {
    padding: 1rem 0.9rem 0.9rem 3rem;
    font-size: 0.95rem;
  }
  .faq-panel {
    padding: 0 0.9rem 0 3rem;
  }
  .faq-row.open .faq-panel {
    padding: 0 0.9rem 1rem 3rem;
  }
  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .section-header h2,
  .section-header-white h2 {
    font-size: 2rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number-large {
    font-size: 2.5rem;
  }
}

/* Redesigned Payment Methods Section */
.payment-methods-section {
  --pm-bg: #050607;
  --pm-border: rgba(255, 255, 255, 0.08);
  --pm-glow1: rgba(25, 118, 210, 0.15);
  --pm-glow2: rgba(138, 35, 87, 0.18);
  padding: 4.5rem 0 4rem;
  background: linear-gradient(145deg, var(--pm-bg) 0%, #0d1014 100%);
  position: relative;
  overflow: hidden;
}

.payment-methods-section::before,
.payment-methods-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 18% 40%,
      var(--pm-glow1) 0%,
      transparent 55%
    ),
    radial-gradient(circle at 82% 65%, var(--pm-glow2) 0%, transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.65;
}

.payment-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.payment-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.75rem;
}

.payment-title {
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.35rem);
  line-height: 1.15;
  background: linear-gradient(90deg, #fff 0%, #b9d4ff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 0.85rem;
}

.payment-desc {
  color: #b4c2d3;
  font-size: 0.975rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

.payment-logos {
  --min-col-width: 110px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--min-col-width), 1fr));
  gap: clamp(1rem, 0.75rem + 0.8vw, 1.75rem);
  position: relative;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid var(--pm-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: clamp(0.75rem, 0.6rem + 0.4vw, 1rem)
    clamp(0.5rem, 0.4rem + 0.5vw, 1.25rem);
  position: relative;
  isolation: isolate;
  min-height: 88px;
  transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  overflow: hidden;
}

.payment-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 65% 35%,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.payment-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.payment-item img {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.05) saturate(1.1);
  opacity: 0.9;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease, opacity 0.35s ease;
  image-rendering: -webkit-optimize-contrast;
}

.payment-item:focus-within,
.payment-item:focus,
.payment-item:hover {
  border-color: rgba(120, 175, 255, 0.45);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(120, 175, 255, 0.25), 0 0 22px -4px rgba(69, 140, 255, 0.55);
  transform: translateY(-4px);
}

.payment-item:hover img,
.payment-item:focus img {
  transform: scale(1.08) translateY(-2px);
  filter: brightness(1.15) contrast(1.15) saturate(1.15);
  opacity: 1;
}

.payment-item:hover::before,
.payment-item:focus::before {
  opacity: 1;
}
.payment-item:hover::after,
.payment-item:focus::after {
  opacity: 1;
}

.payment-note {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #94a8bd;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pm-border);
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.payment-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(120, 175, 255, 0.15),
    rgba(138, 35, 87, 0.15)
  );
  opacity: 0.35;
  pointer-events: none;
}

.payment-note .note-icon {
  color: #b9d4ff;
  font-size: 0.95rem;
}
.payment-note .note-text {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .payment-item {
    min-height: 80px;
  }
  .payment-item img {
    max-width: 110px;
  }
}

@media (max-width: 768px) {
  .payment-wrap {
    padding: 0 1.25rem;
  }
  .payment-head {
    margin-bottom: 2.25rem;
  }
  .payment-item {
    min-height: 72px;
    border-radius: 12px;
  }
  .payment-item img {
    max-width: 95px;
  }
  .payment-note {
    flex-direction: row;
    gap: 0.65rem;
    font-size: 0.72rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 520px) {
  .payment-methods-section {
    padding: 3.5rem 0 3.25rem;
  }
  .payment-title {
    font-size: clamp(1.45rem, 1.3rem + 2vw, 1.9rem);
  }
  .payment-desc {
    font-size: 0.9rem;
  }
  .payment-logos {
    --min-col-width: 46%;
  }
  .payment-item {
    min-height: 66px;
    padding: 0.6rem 0.75rem;
  }
  .payment-item img {
    max-width: 90px;
  }
}

@media (hover: none) {
  .payment-item:hover {
    transform: none;
  }
  .payment-item:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-item,
  .payment-item img {
    transition: none !important;
  }
}

/* Reviews Section Styles */
.reviews-section {
  background: var(--bg-dark);
  padding: 120px 0;
}

.reviews-section .text-white {
  color: var(--text-white) !important;
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.reviews-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: var(--radius);
}

.reviews-section .section-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .reviews-section {
    padding: 80px 0;
  }

  .reviews-section .section-title {
    font-size: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-section .section-title {
    font-size: 1.75rem;
  }

  .reviews-section .section-subtitle {
    font-size: 1rem;
  }
}

.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-red-light);
}
.mt-40 {
  margin-top: 200px !important;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.reviewer-details h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.review-date {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-rating .stars {
  color: var(--accent-yellow);
  font-size: 1rem;
}

.review-rating span {
  color: var(--text-secondary);
  font-weight: 600;
}

.review-content h5 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.review-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-site {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tertiary-black);
}

.review-logo {
  height: 25px;
  width: auto;
  margin-bottom: 3rem;
}

.review-site span {
  color: var(--text-light);
  font-weight: 600;
}

/* Review Form Section */
.review-form-section {
  margin-top: 4rem;
  position: relative;
}

.review-form-section::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--bg-gradient);
  border-radius: var(--radius);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-primary);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xl);
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(25, 118, 210, 0.05) 0%,
    transparent 25%,
    rgba(33, 150, 243, 0.05) 50%,
    transparent 75%,
    rgba(25, 118, 210, 0.05) 100%
  );
  background-size: 200% 200%;
  animation: formShimmer 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes formShimmer {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.form-container h3 {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.form-container p {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

  .form-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 1.5rem;
  }

  .form-container h3 {
    font-size: 1.8rem;
  }
}

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

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
  transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Rating Input Styles */
.rating-input {
  display: flex;
  gap: 0.25rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label.star {
  font-size: 2rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.25rem;
}

.rating-input label.star:hover,
.rating-input label.star:hover ~ label.star,
.rating-input input[type="radio"]:checked ~ label.star {
  color: var(--accent-yellow);
  transform: scale(1.1);
}

.rating-input label.star:hover {
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

/* Form Submit Button */
.review-form .btn {
  margin-top: 1rem;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  .rating-input label.star {
    font-size: 1.75rem;
    padding: 0.125rem;
  }
}

@media (max-width: 480px) {
  .rating-input label.star {
    font-size: 1.5rem;
  }
}

/* Success Message */
.form-success-message {
  background: linear-gradient(135deg, var(--accent-green), #0d9488);
  color: var(--text-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: none;
}

.form-success-message.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.form-success-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.form-success-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(45deg);
  }
  50% {
    transform: scale(1.2) rotate(45deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.form-success-message h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success-message p {
  color: var(--text-white);
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .form-success-message {
    padding: 1.5rem;
  }

  .form-success-message i {
    font-size: 2.5rem;
  }

  .form-success-message h3 {
    font-size: 1.25rem;
  }

  .form-success-message p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .form-success-message {
    padding: 1rem;
    margin-top: 1rem;
  }

  .form-success-message i {
    font-size: 2rem;
  }

  .form-success-message h3 {
    font-size: 1.125rem;
  }

  .form-success-message p {
    font-size: 0.9rem;
  }
}

/* Modern Responsible Gaming Section */
.responsible-gambling-section {
  background: #1e293b;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.responsible-gambling-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(244, 67, 54, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(25, 118, 210, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 193, 7, 0.1) 0%,
      transparent 60%
    );
  animation: responsibleLightPulse 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes responsibleLightPulse {
  0%,
  100% {
    opacity: 0.8;
    transform: rotate(0deg) scale(1);
  }
  25% {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    opacity: 0.9;
    transform: rotate(180deg) scale(1.05);
  }
  75% {
    opacity: 1;
    transform: rotate(270deg) scale(1.15);
  }
}

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

.responsible-header {
  margin-bottom: 5rem;
}

.responsible-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(244, 67, 54, 0.2);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(244, 67, 54, 0.4);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  animation: responsibleBadgeWarning 3s ease-in-out infinite;
}

@keyframes responsibleBadgeWarning {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(244, 67, 54, 0.6);
    border-color: rgba(244, 67, 54, 0.6);
  }
}

.responsible-badge-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  animation: responsibleBadgeAlert 4s ease-in-out infinite;
}

@keyframes responsibleBadgeAlert {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  50% {
    transform: rotate(0deg) scale(1.2);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

.responsible-badge-text {
  color: var(--accent-white);
  font-weight: 600;
  font-size: 1rem;
}

.responsible-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f44336, #ff9800, #ffc107);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: responsibleTitleGlow 4s ease-in-out infinite;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@keyframes responsibleTitleGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.responsible-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  perspective: 1200px;
}

.responsible-card {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.responsible-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.1) 0%,
    transparent 25%,
    rgba(255, 193, 7, 0.1) 50%,
    transparent 75%,
    rgba(244, 67, 54, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 24px;
  z-index: 1;
}

.responsible-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(244, 67, 54, 0.2),
    transparent
  );
  animation: responsibleCardAlert 15s linear infinite;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

@keyframes responsibleCardAlert {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.responsible-card:hover::before {
  opacity: 1;
}

.responsible-card:hover::after {
  opacity: 1;
}

.responsible-card:hover {
  transform: translateY(-15px) rotateY(8deg) rotateX(5deg) scale(1.05);
  border-color: rgba(244, 67, 54, 0.6);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(244, 67, 54, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
}

.responsible-card-content {
  position: relative;
  z-index: 2;
}

.responsible-card .card-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f44336, #ff5722);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease;
  animation: responsibleIconPulse 4s ease-in-out infinite;
  position: relative;
}

@keyframes responsibleIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.6);
  }
}

.responsible-card:hover .card-icon {
  transform: scale(1.2) rotateY(360deg);
  background: linear-gradient(135deg, #ff5722, #ff9800);
  box-shadow: 0 20px 50px rgba(244, 67, 54, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation-duration: 2s;
}

.responsible-card .card-icon::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(244, 67, 54, 0.3),
    transparent
  );
  border-radius: 50%;
  animation: responsibleIconGlow 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

@keyframes responsibleIconGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.responsible-card:hover .card-icon::before {
  opacity: 1;
}

.responsible-card h3 {
  color: var(--accent-white);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.4s ease;
}

.responsible-card:hover h3 {
  color: #ff9800;
  transform: translateY(-5px);
  text-shadow: 0 0 20px rgba(255, 152, 0, 0.5);
}

.responsible-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  opacity: 0.9;
}

.responsible-card:hover p {
  color: var(--accent-white);
  opacity: 1;
  transform: translateY(-3px);
}

.help-resources {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.help-resources::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(244, 67, 54, 0.05) 0%,
    transparent 25%,
    rgba(255, 193, 7, 0.05) 50%,
    transparent 75%,
    rgba(244, 67, 54, 0.05) 100%
  );
  background-size: 200% 200%;
  animation: helpShimmer 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes helpShimmer {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.help-resources h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 2;
}

.help-resources p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.help-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.help-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(255, 140, 0);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2);
}

.help-contact i {
  color: #ff9800;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 152, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.help-contact:hover i {
  background: rgb(255, 153, 0);
  transform: scale(1.1) rotate(10deg);
}

.help-contact div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.help-contact strong {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.help-contact span {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(244, 67, 54, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.age-restriction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.1) 0%,
    transparent 50%,
    rgba(244, 67, 54, 0.1) 100%
  );
  animation: ageShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ageShimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.age-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: ageBadgePulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes ageBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(244, 67, 54, 0.6);
  }
}

.age-text {
  position: relative;
  z-index: 2;
}

.age-text h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
}
.text-white {
  color: white !important;
}
.age-text p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.responsible-logos a {
  transition: all 0.4s ease;
  padding: 20px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.responsible-logos a:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.responsible-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.responsible-logos a:hover img {
  filter: brightness(1.2) invert(1);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .age-restriction {
    flex-direction: column;
    text-align: center;
  }

  .responsible-logos {
    gap: 1rem;
  }

  .responsible-logos a {
    min-width: 100px;
    padding: 12px 15px;
  }

  .responsible-logos img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .popup-content {
    padding: 1.5rem;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .responsible-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .responsible-logos a {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .help-resources {
    padding: 2rem; /* Reduce padding for mobile */
    margin-bottom: 2rem;
  }

  .help-resources h3 {
    font-size: 1.6rem; /* Smaller heading */
  }

  .help-resources p {
    font-size: 1rem; /* Smaller paragraph text */
    line-height: 1.5;
  }

  .help-contacts {
    grid-template-columns: 1fr; /* Stack contacts vertically */
    gap: 1.5rem; /* Reduce gap between items */
  }

  .help-contact {
    padding: 1rem; /* Reduce padding */
    flex-direction: row; /* Ensure icon and text stay side-by-side */
    align-items: center;
  }

  .help-contact i {
    font-size: 1.5rem; /* Smaller icon */
    width: 40px; /* Adjust icon container size */
    height: 40px;
  }

  .help-contact strong {
    font-size: 1rem; /* Smaller title */
  }

  .help-contact span {
    font-size: 0.9rem; /* Smaller subtitle */
  }
}

@media (max-width: 480px) {
  .help-resources {
    padding: 1.5rem;
  }

  .help-resources h3 {
    font-size: 1.4rem;
  }

  .help-resources p {
    font-size: 0.9rem;
  }

  .help-contact {
    flex-direction: column; /* Stack icon and text for very small screens */
    text-align: center;
    gap: 0.75rem;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent-white);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    width: 100%;
    justify-content: center;
  }
  .help-contact i {
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 768px) {
  .responsible-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 1.5rem; /* Reduce gap */
    perspective: none; /* Disable 3D perspective for performance */
  }

  .responsible-card {
    padding: 0.5rem; /* Reduce padding */
    transform: none !important; /* Disable 3D transforms on mobile */
    border-radius: 16px; /* Slightly smaller border radius */
  }

  .responsible-card::before,
  .responsible-card::after {
    animation: none; /* Disable heavy animations for performance */
  }

  .responsible-card .card-icon {
    width: 40px; /* Smaller icon */
    height: 40px;
    font-size: 2rem;
    animation: responsibleIconPulse 3s ease-in-out infinite; /* Shorten animation */
  }

  .responsible-card h3 {
    font-size: 1.4rem; /* Smaller heading */
    margin-bottom: 1rem;
  }

  .responsible-card p {
    font-size: 0.95rem; /* Smaller text */
    line-height: 1.5;
  }

  .responsible-card:hover {
    transform: translateY(-5px) !important; /* Simplified hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .responsible-card:hover .card-icon {
    transform: scale(1.1); /* Simplified hover animation */
    animation-duration: 1.5s;
  }
}

@media (max-width: 480px) {
  .responsible-grid {
    gap: 1rem;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    gap: 2rem;
  }
  .responsible-card {
    padding: 0.5rem;
  }

  .responsible-card .card-icon {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }

  .responsible-card h3 {
    font-size: 1.2rem;
  }

  .responsible-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .responsible-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 1.5rem; /* Reduce gap */
    perspective: none; /* Disable 3D perspective for performance */
  }

  .responsible-card {
    padding: 0.5rem; /* Reduce padding */
    transform: none !important; /* Disable 3D transforms on mobile */
    border-radius: 16px; /* Slightly smaller border radius */
  }

  .responsible-card::before,
  .responsible-card::after {
    animation: none; /* Disable heavy animations for performance */
  }

  .responsible-card .card-icon {
    width: 40px; /* Smaller icon */
    height: 40px;
    font-size: 2rem;
    animation: responsibleIconPulse 3s ease-in-out infinite; /* Shorten animation */
  }

  .responsible-card h3 {
    font-size: 1.4rem; /* Smaller heading */
    margin-bottom: 1rem;
  }

  .responsible-card p {
    font-size: 0.95rem; /* Smaller text */
    line-height: 1.5;
  }

  .responsible-card:hover {
    transform: translateY(-5px) !important; /* Simplified hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .responsible-card:hover .card-icon {
    transform: scale(1.1); /* Simplified hover animation */
    animation-duration: 1.5s;
  }
}

@media (max-width: 480px) {
  .responsible-grid {
    gap: 1rem;
  }

  .responsible-card {
    padding: 1rem;
  }

  .responsible-card .card-icon {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }

  .responsible-card h3 {
    font-size: 1.2rem;
  }

  .responsible-card p {
    font-size: 0.9rem;
  }
}
/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.961);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--tertiary-black);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--accent-white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
}

.footer-logo .logo-text {
  color: var(--primary-red, #0ea5e9);
}

.footer-section h4 {
  color: var(--accent-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer-section p {
  font-size: 1rem;
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-white);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-white);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.footer-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: white;
}
/* all 3 section */

.help-resources {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.9),
    rgba(51, 65, 85, 0.8)
  );
  backdrop-filter: blur(30px);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.help-intro {
  color: #1565c0;
}
.help-resources::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(244, 67, 54, 0.05) 0%,
    transparent 25%,
    rgba(255, 193, 7, 0.05) 50%,
    transparent 75%,
    rgba(244, 67, 54, 0.05) 100%
  );
  background-size: 200% 200%;
  animation: helpShimmer 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes helpShimmer {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

.help-resources h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.help-resources p {
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.help-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.help-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(255, 140, 0);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2);
}

.help-contact i {
  color: #ff9800;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 152, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.help-contact:hover i {
  background: transparent;
  transform: scale(1.1) rotate(10deg);
}

.help-contact div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.help-contact strong {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.help-contact span {
  color: #e2e8f0;
  opacity: 0.95;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(
    145deg,
    rgba(220, 38, 38, 0.9),
    rgba(153, 27, 27, 0.85)
  );
  backdrop-filter: blur(30px);
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.age-restriction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.1) 0%,
    transparent 50%,
    rgba(244, 67, 54, 0.1) 100%
  );
  animation: ageShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ageShimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.age-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #991b1b, #7f1d1d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4),
    0 5px 12px rgba(220, 38, 38, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: ageBadgePulse 3s ease-in-out infinite;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

@keyframes ageBadgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(244, 67, 54, 0.6);
  }
}

.age-text {
  position: relative;
  z-index: 2;
}

.age-text h4 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.text-white {
  color: white !important;
}
.age-text p {
  color: #ffffff;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.responsible-logos a {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 25px 30px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  background: linear-gradient(
    145deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 64, 175, 0.05)
  );
  border: 2px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.responsible-logos a:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.responsible-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.responsible-logos a:hover img {
  filter: brightness(1.2) invert(1);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .age-restriction {
    flex-direction: column;
    text-align: center;
  }

  .responsible-logos {
    gap: 0.5rem;
  }

  .responsible-logos a {
    min-width: 80px;
    padding: 8px 12px;
  }

  .responsible-logos img {
    height: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .popup-content {
    padding: 1.5rem;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .responsible-logos {
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .responsible-logos a {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .help-resources {
    padding: 2rem; /* Reduce padding for mobile */
    margin-bottom: 2rem;
  }

  .help-resources h3 {
    font-size: 1.6rem; /* Smaller heading */
  }

  .help-resources p {
    font-size: 1rem; /* Smaller paragraph text */
    line-height: 1.5;
  }

  .help-contacts {
    grid-template-columns: 1fr; /* Stack contacts vertically */
    gap: 1.5rem; /* Reduce gap between items */
  }

  .help-contact {
    padding: 1rem; /* Reduce padding */
    flex-direction: row; /* Ensure icon and text stay side-by-side */
    align-items: center;
  }

  .help-contact i {
    font-size: 1.5rem; /* Smaller icon */
    width: 40px; /* Adjust icon container size */
    height: 40px;
  }

  .help-contact strong {
    font-size: 1rem; /* Smaller title */
  }

  .help-contact span {
    font-size: 0.9rem; /* Smaller subtitle */
  }
}

@media (max-width: 480px) {
  .help-resources {
    padding: 1.5rem;
  }

  .help-resources h3 {
    font-size: 1.4rem;
  }

  .help-resources p {
    font-size: 0.9rem;
  }

  .help-contact {
    flex-direction: column; /* Stack icon and text for very small screens */
    text-align: center;
    gap: 0.75rem;
  }
}

.tips-new {
  background: #10141b;
  padding: 90px 0;
  position: relative;
}
.tips-new:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 15%,
    rgba(139, 21, 56, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.tips-wrap {
  position: relative;
  z-index: 1;
}
.tips-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.2rem;
}
.tips-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4.2vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.tips-head p {
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.5;
}
.tips-grid-new {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.tip-mini {
  background: #1b2330;
  border: 1px solid #253140;
  border-radius: 16px;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px;
  transition: 0.3s ease;
  position: relative;
}
.tip-mini:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.08),
    transparent 65%
  );
  opacity: 0;
  transition: 0.35s ease;
}
.tip-mini:hover {
  transform: translateY(-4px);
  border-color: #334458;
}
.tip-mini:hover:before {
  opacity: 1;
}
.tip-mini h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.tip-mini p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #94a3b8;
  flex: 1;
}
.tip-more {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}
.tip-more:hover {
  background: #6d1028;
}
.tips-footer {
  margin-top: 46px;
  text-align: center;
}
.tips-cta-new {
  display: inline-block;
  background: #fff;
  color: #111827;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.25s ease;
}
.tips-cta-new:hover {
  background: #0ea5e9;
  color: #fff;
}
@media (max-width: 860px) {
  .tips-new {
    padding: 80px 0;
  }
  .tips-grid-new {
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .tips-new {
    padding: 70px 0;
  }
  .tip-mini {
    padding: 16px 16px 18px;
  }
  .tip-mini h3 {
    font-size: 0.95rem;
  }
  .tip-mini p {
    font-size: 0.74rem;
  }
  .tips-cta-new {
    width: 100%;
    padding: 15px 0;
  }
}

.tips-grid-new {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .tips-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tips-grid-new {
    grid-template-columns: 1fr;
  }
}
.tip-mini {
  min-height: 170px;
}

/* compact tips adjustments */
.tips-grid-new {
  gap: 18px;
}
.tip-mini {
  min-height: auto;
  padding: 14px 14px 16px;
  border-radius: 14px;
  gap: 8px;
}
.tip-mini h3 {
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.tip-mini p {
  font-size: 0.7rem;
  line-height: 1.3;
}
.tip-more {
  padding: 5px 9px;
  font-size: 0.62rem;
  border-radius: 6px;
}
@media (min-width: 981px) {
  .tips-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .tips-grid-new {
    gap: 16px;
  }
  .tip-mini {
    padding: 13px 13px 15px;
  }
}

.compare-section {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.compare-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.compare-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.compare-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.compare-head p {
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.55;
}
.compare-grid {
  display: grid;
  gap: 0;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}
.compare-col {
  display: grid;
  grid-template-rows: repeat(7, auto);
}
.compare-col.head {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
}
.compare-col:not(.head) {
  background: #fff;
  border-right: 1px solid #e2e8f0;
}
.compare-col:last-child {
  border-right: none;
}
.c-cell {
  padding: 18px 18px;
  font-size: 0.8rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e2e8f0;
  min-width: 140px;
  font-weight: 500;
  color: #334155;
}
.compare-col .c-cell:last-child {
  border-bottom: none;
}
.c-title {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0ea5e9;
  background: #f1f5f9;
}
.compare-col:not(.head) .c-title {
  background: #fff0f4;
  color: #0ea5e9;
}
.compare-grid::-webkit-scrollbar {
  height: 10px;
}
.compare-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 20px;
}
.compare-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 20px;
}
.compare-grid::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.compare-footer {
  margin-top: 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-cta {
  display: inline-block;
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 0.9rem;
  transition: 0.25s ease;
}
.compare-cta:hover {
  background: #6d1028;
}
.compare-note {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
@media (max-width: 960px) {
  .compare-section {
    padding: 80px 0;
  }
  .c-cell {
    padding: 16px 14px;
    font-size: 0.75rem;
  }
}
@media (max-width: 640px) {
  .compare-section {
    padding: 70px 0;
  }
  .compare-head h2 {
    font-size: 2.1rem;
  }
  .compare-head p {
    font-size: 0.9rem;
  }
  .c-cell {
    min-width: 120px;
    padding: 14px 12px;
  }
  .compare-cta {
    width: 100%;
  }
}

.value-section {
  background: #f9fafb;
  padding: 90px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.value-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.value-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.value-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.value-head p {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: #475569;
  line-height: 1.55;
}
.value-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 6px 26px -8px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}
.value-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #111827;
}
.value-card p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: #475569;
}
.value-footer {
  margin-top: 42px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-cta {
  display: inline-block;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: 14px;
  font-size: 0.9rem;
  transition: 0.25s ease;
}
.value-cta:hover {
  background: #0ea5e9;
}
.value-note {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
@media (max-width: 960px) {
  .value-section {
    padding: 80px 0;
  }
  .value-card {
    padding: 22px 20px;
  }
}
@media (max-width: 640px) {
  .value-section {
    padding: 70px 0;
  }
  .value-card {
    padding: 20px 18px;
  }
  .value-cta {
    width: 100%;
  }
}

/* tips section light adaptation */
.tips-new.light-adapt {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 60%, #e2e8f0 100%);
}
.tips-new.light-adapt:before {
  background: radial-gradient(
    circle at 75% 20%,
    rgba(139, 21, 56, 0.12),
    transparent 65%
  );
}
.tips-new.light-adapt .tip-mini {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
.tips-new.light-adapt .tip-mini:hover {
  border-color: #d1d9e2;
}
.tips-new.light-adapt .tip-mini p {
  color: #475569;
}
.tips-new.light-adapt .tips-head h2 {
  color: #111827;
}
.tips-new.light-adapt .tips-head p {
  color: #4b5563;
}
.tips-new.light-adapt .tips-cta-new {
  background: #111827;
  color: #fff;
}
.tips-new.light-adapt .tips-cta-new:hover {
  background: #0ea5e9;
}
.tips-new.light-adapt .tip-more {
  background: #0ea5e9;
}
.tips-new.light-adapt .tip-more:hover {
  background: #6d1028;
}

.reviews-section.redesigned {
  background: linear-gradient(135deg, #111827 0%, #1e2533 60%, #111827 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews-section.redesigned:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.07),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.05),
      transparent 65%
    );
  pointer-events: none;
}
.rev-wrap {
  display: flex;
  flex-direction: column;
  gap: 42px;
  position: relative;
  z-index: 2;
}
.rev-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.rev-head-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 720px) {
  .rev-head-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.rev-head h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (max-width: 600px) {
  .rev-head h2 {
    font-size: 1.8rem;
  }
}
.rev-sub {
  margin: 0;
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 680px;
}
.rev-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.rev-stars {
  letter-spacing: 2px;
  font-size: 0.95rem;
  color: #f5d768;
}
.rev-score {
  font-size: 1rem;
  color: #fff;
}
.rev-count {
  color: #64748b;
  font-weight: 500;
}
.rev-scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rev-scroller::-webkit-scrollbar {
  display: none;
}
.rev-list {
  display: flex;
  list-style: none;
  gap: 18px;
  padding: 4px;
  margin: 0;
}
.rev-item {
  flex: 0 0 310px;
  background: #1d2735;
  border: 1px solid #2a3747;
  border-radius: 20px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.4);
}
.rev-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: 0.4s;
}
.rev-item:hover {
  transform: translateY(-6px);
  border-color: #3c4c60;
}
.rev-item:hover:before {
  opacity: 1;
}
@media (min-width: 1100px) {
  .rev-item {
    flex: 0 0 340px;
  }
}
@media (max-width: 480px) {
  .rev-item {
    flex: 0 0 78%;
    min-width: 260px;
  }
}
.rev-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #64748b;
}
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec1f4c, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 0 0 4px #1d2735;
}
.rev-id {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.rev-id strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.rev-id .t {
  font-size: 0.65rem;
  color: #cbd5e1;
  font-weight: 500;
}
.rev-rating {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  background: #253243;
  padding: 6px 10px;
  border-radius: 30px;
  color: #f5d768;
}
.rev-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.rev-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #f1f5f9;
}
.rev-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid #32465d;
  font-size: 0.7rem;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #cbd5e1;
}
.rev-tagline img {
  height: 20px;
  width: auto;
  filter: brightness(1.1);
}
.rev-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.rev-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec1f4c, #0ea5e9);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.rev-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s;
}
.rev-btn:hover:after {
  opacity: 1;
}
.rev-btn.alt {
  background: #253243;
  color: #fff;
}
.rev-btn.alt:hover {
  background: #314255;
}
.rev-form-wrap {
  max-width: 880px;
  margin: 24px auto 0;
  background: #1a2330;
  border: 1px solid #2d3a4a;
  border-radius: 26px;
  padding: 34px 40px;
  position: relative;
  box-shadow: 0 10px 36px -12px rgba(0, 0, 0, 0.5);
}
@media (max-width: 680px) {
  .rev-form-wrap {
    padding: 28px 22px;
    border-radius: 22px;
  }
}
.rev-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rev-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.rev-form input[type="text"],
.rev-form select,
.rev-form textarea {
  background: #121a24;
  border: 1px solid #303d4d;
  color: #fff;
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  resize: vertical;
  outline: none;
  transition: 0.3s;
}
.rev-form input[type="text"]:focus,
.rev-form select:focus,
.rev-form textarea:focus {
  border-color: #ec1f4c;
  box-shadow: 0 0 0 3px rgba(236, 31, 76, 0.25);
}
.rev-rate {
  display: flex;
  gap: 6px;
  align-items: center;
  background: #121a24;
  border: 1px solid #303d4d;
  padding: 8px 12px;
  border-radius: 12px;
}
.rev-rate input {
  display: none;
}
.rev-rate label {
  cursor: pointer;
  font-size: 0.75rem;
  background: #253243;
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
.rev-rate input:checked + label {
  background: #ec1f4c;
}
.rev-form textarea {
  min-height: 120px;
}
.rev-form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.rev-submit {
  background: linear-gradient(135deg, #ec1f4c, #0ea5e9);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: 0.35s;
}
.rev-submit:hover {
  filter: brightness(1.15);
}
.rev-cancel {
  background: #253243;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.85rem;
}
.rev-cancel:hover {
  background: #314255;
}
.rev-success {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #5dd18c;
  font-weight: 600;
}
@media (max-width: 600px) {
  .reviews-section.redesigned {
    padding: 64px 0;
  }
  .rev-list {
    gap: 14px;
  }
  .rev-item {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }
  .rev-form-actions {
    flex-direction: column;
  }
  .rev-submit,
  .rev-cancel {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 900px) {
  .rev-scroller {
    overflow: visible;
  }
  .rev-list {
    flex-wrap: wrap;
  }
  .rev-item {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
  }
}
@media (min-width: 1300px) {
  .rev-item {
    flex: 1 1 calc(20% - 18px);
  }
}
.rev-form-wrap[hidden] {
  display: none !important;
}

.responsible-gambling-section.rg-redesigned {
  background: #f8fafc;
  position: relative;
  padding: 80px 0;
  color: #111827;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.responsible-gambling-section.rg-redesigned:before {
  display: none;
}
.rg-wrap {
  position: relative;
  z-index: 2;
}
.rg-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1000px) {
  .rg-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}
.rg-intro {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@media (min-width: 1000px) {
  .rg-intro {
    position: sticky;
    top: 110px;
  }
}
.rg-badge {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #ec1f4c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.rg-intro h2 {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111827;
}
@media (max-width: 640px) {
  .rg-intro h2 {
    font-size: 1.85rem;
  }
}
.rg-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #334155;
  max-width: 460px;
}
.rg-pill-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rg-pill-list li {
  background: #fff;
  color: #0f172a;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.rg-pill-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ec1f4c;
  border-radius: 50%;
  opacity: 0.85;
}
.rg-alert {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #334155;
  font-weight: 600;
}
.rg-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
@media (min-width: 1200px) {
  .rg-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.rg-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: 0.25s;
  min-height: 170px;
}
.rg-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.rg-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ec1f4c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}
.rg-card h3 {
  margin: 2px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #0f172a;
}
.rg-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #334155;
}
.rg-meta {
  margin-top: auto;
  font-size: 0.58rem;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: #475569;
  font-weight: 600;
  background: #f1f5f9;
  padding: 4px 7px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid #e2e8f0;
}
.rg-resources {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rg-res-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0f172a;
}
.rg-help {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.rg-help li {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  transition: 0.22s;
}
.rg-help li:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.h-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ec1f4c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.h-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: #0f172a;
}
.h-body em {
  font-style: normal;
  font-weight: 500;
  color: #475569;
  font-size: 0.58rem;
}
.rg-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rg-toggle {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font: inherit;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.35px;
  font-size: 0.62rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}
.rg-toggle:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.rg-selftest {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rg-questions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #334155;
}
.rg-questions li {
  position: relative;
  padding-left: 14px;
}
.rg-questions li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ec1f4c;
}
.rg-selfnote {
  font-size: 0.58rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #047857;
  font-weight: 700;
}
.rg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.rg-logos a {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.rg-logos a:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.rg-logos img {
  height: 32px;
  width: auto;
  display: block;
  filter: none;
}
@media (max-width: 900px) {
  .responsible-gambling-section.rg-redesigned {
    padding: 70px 0;
  }
  .rg-layout {
    gap: 40px;
  }
  .rg-grid {
    gap: 14px;
  }
  .rg-intro {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .responsible-gambling-section.rg-redesigned {
    padding: 56px 0;
  }
  .rg-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .rg-card {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .rg-badge {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }
}
.rg-selftest[hidden] {
  display: none !important;
}
