/* Custom Styles */

body {
    font-family: 'Poppins', sans-serif;
}

.btn-brutal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif; /* Changed */
    font-weight: 700;
    color: #000000;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-brutal:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px #000000;
}

.btn-brutal:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.btn-brutal-primary {
    background-color: #FAFF00;
}

.card-brutal {
    background-color: #FFFFFF;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    padding: 1.5rem;
    font-family: 'Poppins', sans-serif; /* Added */
}

/* Animation Classes */
.animate-on-scroll {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #000000;
    color: #FFFFFF;
    border-top: 4px solid #FAFF00;
    box-shadow: 0 -8px 0px 0px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.4s ease-out;
    font-family: 'Poppins', sans-serif; /* Added */
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text a {
    color: #FAFF00;
    font-weight: 700;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-buttons .btn-brutal {
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif; /* Added */
}

.faq-item:hover {
    background-color: #f4f4f5;
}

.faq-question {
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Added */
}

.faq-question:hover h3 {
    color: #000000;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    transition: all 0.3s ease;
    overflow: hidden;
    font-family: 'Poppins', sans-serif; /* Added */
}

.faq-answer.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* NAVBAR BASE */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 30px;
  height: 30px;
  color: #ff0000;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: #ff0000;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  transition: 0.3s ease;
}

/* Underline Animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #ff0000;
}

/* CTA Button */
.nav-btn {
  background: #ff0000;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,0,0,0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
}

.mobile-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #1e293b;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mobile-menu a {
  text-decoration: none;
  padding: 12px 0;
  font-weight: 600;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #ff0000;
}

/* Responsive */
@media (max-width: 992px) {

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

}

/* SECTION BACKGROUND */
.iptv-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 100px 20px;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-header h2 span {
  background: linear-gradient(90deg, #ff4d4d, #ff0000);
  padding: 6px 14px;
  border-radius: 6px;
}

.section-header p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  color: #cbd5e1;
}

/* GRID */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.domain-card {
  background: #ffffff;
  color: #1e293b;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.domain-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* IMAGE */
.card-image {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.domain-card:hover img {
  transform: scale(1.1);
}

/* TITLE */
.domain-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff0000;
}

/* TEXT */
.domain-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* CONSUMER NOTICE */
.consumer-notice {
  margin-top: 80px;
  background: #ff0000;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.consumer-notice h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}

.consumer-notice p {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }

  .consumer-notice {
    padding: 25px;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;   /* Full screen height */
  display: flex;
  align-items: center; /* Vertical center */
  padding: 0 20px;     /* Only left-right spacing */
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
}

/* Subtle Pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,0,0,0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 40%);
  z-index: 0;
}

/* Container */
.hero-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Warning Strip */
.warning-strip {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 70px;
  backdrop-filter: blur(8px);
}

.warning-strip span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ff4d4d;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center; /* center content within each column */
}

/* LEFT SIDE */
.hero-left h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-left h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #ff4d4d, #ff0000);
  padding: 8px 18px;
  border-radius: 8px;
}

.hero-left p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff0000;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #cc0000;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255,0,0,0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #1e293b;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* RIGHT SIDE CARD */
.hero-right { display: flex; justify-content: center; }
.risk-card {
  background: #ffffff;
  color: #1e293b;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.4s ease;
  max-width: 100%;
  width: 100%;
  /* constrain width so card doesn't stick to left on large screens */
  max-width: 480px;
  margin: 0 auto;
}

.risk-card:hover {
  transform: translateY(-10px);
}

.risk-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff0000;
}

.risk-card ul {
  list-style: none;
  padding: 0;
}

.risk-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 16px;
}

.risk-card ul li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 30px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* SECTION BASE */
.ci-section {
  background: #f8fafc;
  padding: 100px 20px;
}

.ci-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.ci-header {
  text-align: center;
  margin-bottom: 70px;
}

.ci-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
}

.ci-header p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  color: #475569;
}

/* GRID */
.ci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT CARD */
.ci-details-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.ci-details-card:hover {
  transform: translateY(-8px);
}

.ci-details-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff0000;
}

.ci-details-content p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}

/* RIGHT COLUMN */
.ci-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* SOURCE CARD */
.ci-source-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.ci-source-card:hover {
  transform: translateY(-8px);
}

.ci-source-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1e293b;
}

.ci-source-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 12px;
}

/* RISK CARD */
.ci-risk-card {
  background: linear-gradient(135deg, #ff4d4d, #ff0000);
  color: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.ci-risk-card:hover {
  transform: translateY(-8px);
}

.ci-risk-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.ci-risk-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* BOTTOM DISCLAIMER */
.ci-bottom-disclaimer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.ci-bottom-disclaimer p {
  max-width: 850px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ci-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ci-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .ci-details-card,
  .ci-source-card,
  .ci-risk-card {
    padding: 25px;
  }

  .ci-header h2 {
    font-size: 26px;
  }

  .ci-header p {
    font-size: 16px;
  }
}

/* SECTION */
.analysis-section {
  background: #f8fafc;
  padding: 100px 20px;
}

.analysis-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.analysis-header {
  margin-bottom: 60px;
}

.analysis-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1e293b;
}

.analysis-header p {
  font-size: 18px;
  color: #475569;
}

/* GRID */
.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */
.analysis-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.analysis-card:hover {
  transform: translateY(-6px);
}

.analysis-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.analysis-icon {
  width: 32px;
  height: 32px;
  color: #ff0000;
}

.analysis-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

.analysis-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

/* QUOTE */
.analysis-quote {
  background: #f1f5f9;
  padding: 15px;
  border-left: 4px solid #ff0000;
  font-size: 14px;
  color: #334155;
}

/* PROGRESS */
.analysis-progress {
  margin-top: 20px;
}

.analysis-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.analysis-bar {
  position: relative;
  flex: 1;
  height: 35px;
  background: #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.analysis-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.analysis-fill.negative {
  width: 80%;
  background: #ff4d4d;
}

.analysis-fill.positive {
  width: 20%;
  background: #22c55e;
}

.analysis-bar span {
  position: relative;
  z-index: 2;
  padding-left: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #1e293b;
}

.analysis-percent {
  font-weight: 700;
  color: #1e293b;
}

/* WARNING */
.analysis-warning {
  color: #ff0000;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .analysis-card {
    padding: 25px;
  }

  .analysis-header h2 {
    font-size: 26px;
  }

  .analysis-header p {
    font-size: 16px;
  }
}

/* SECTION */
.cmp-section {
  background: #f8fafc;
  padding: 100px 20px;
}

.cmp-container {
  max-width: 1200px;
  margin: auto;
}

.cmp-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

/* TABLE WRAPPER */
.cmp-table-wrapper {
  overflow-x: auto;
}

/* TABLE */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  min-width: 800px;
}

/* HEADER */
.cmp-table thead tr {
  background: #1e293b;
  color: #ffffff;
}

.cmp-table th {
  padding: 18px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.cmp-table th.highlight-head {
  background: #ff0000;
}

/* BODY */
.cmp-table td {
  padding: 18px;
  font-size: 15px;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.cmp-table tr:last-child td {
  border-bottom: none;
}

/* FEATURE COLUMN */
.cmp-table td.feature {
  font-weight: 700;
  color: #1e293b;
}

/* NEGATIVE COLUMN */
.cmp-table td.negative {
  font-weight: 700;
  color: #ff0000;
}

/* ROW HOVER */
.cmp-table tbody tr:hover {
  background: #f1f5f9;
  transition: background 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cmp-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .cmp-title {
    font-size: 26px;
  }

  .cmp-table th,
  .cmp-table td {
    padding: 14px;
    font-size: 14px;
  }
}

/* SECTION */
.vd-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 100px 20px;
  color: #ffffff;
}

.vd-container {
  max-width: 1200px;
  margin: auto;
}

.vd-header {
  margin-bottom: 60px;
}

.vd-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.vd-header p {
  font-size: 18px;
  font-weight: 700;
  color: #cbd5e1;
}

.vd-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD */
.vd-card {
  background: #1e293b;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.6);
}

/* MAIN CARD */
.vd-main-card {
  border-left: 6px solid #ff0000;
}

.vd-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.vd-icon {
  width: 40px;
  height: 40px;
  color: #ff0000;
}

.vd-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ff4d4d;
}

.vd-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  font-weight: 600;
}

/* MINI GRID */
.vd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.vd-mini-card {
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.vd-mini-card:hover {
  transform: translateY(-4px);
}

.vd-mini-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff4d4d;
  text-transform: uppercase;
}

.vd-mini-card p {
  font-size: 14px;
  color: #cbd5e1;
}

/* WARNING */
.vd-warning {
  border: 2px solid #ff0000;
}

.vd-warning h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ff4d4d;
}

.vd-warning p {
  font-weight: 700;
  color: #ffffff;
}

/* SUMMARY */
.vd-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ff4d4d;
}

.vd-card ul {
  padding-left: 20px;
  line-height: 1.7;
  font-size: 16px;
  color: #cbd5e1;
}

/* FINAL */
.vd-final {
  text-align: center;
  border: 2px solid #ff0000;
}

.vd-final h4 {
  color: #ff4d4d;
}

.vd-final p {
  color: #ff4d4d;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vd-grid {
    grid-template-columns: 1fr;
  }

  .vd-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .vd-card {
    padding: 25px;
  }

  .vd-header h2 {
    font-size: 26px;
  }

  .vd-header p {
    font-size: 16px;
  }
}

/* LIGHT PREMIUM SECTION */
.fq-section {
  background: linear-gradient(to bottom, #f9fbff, #eef2f7);
  padding: 100px 20px;
}

.fq-container {
  max-width: 1000px;
  margin: auto;
}

.fq-header {
  margin-bottom: 60px;
  text-align: center;
}

.fq-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
}

/* FAQ CARD */
.fq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.fq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* QUESTION */
.fq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.fq-question h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

/* ICON */
.fq-icon {
  width: 20px;
  height: 20px;
  color: #ef4444;
  transition: transform 0.3s ease;
}

/* ANSWER */
.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 0;
}

.fq-item.active .fq-answer {
  max-height: 600px;
  margin-top: 15px;
}

.fq-item.active .fq-icon {
  transform: rotate(180deg);
}

/* LIST */
.fq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .fq-header h2 {
    font-size: 28px;
  }

  .fq-question h3 {
    font-size: 16px;
  }
}

/* FOOTER SECTION */
.ft-section {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #e5e7eb;
  padding: 80px 20px 40px 20px;
}

.ft-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.ft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* TITLES */
.ft-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #facc15;
}

.ft-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.ft-legal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ef4444;
}

/* TEXT */
.ft-text {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

.ft-legal-text {
  font-size: 12px;
  line-height: 1.7;
  color: #9ca3af;
  margin-bottom: 14px;
}

/* LINKS */
.ft-links {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: 8px;
}

.ft-links a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ft-links a:hover {
  color: #facc15;
  padding-left: 4px;
}

/* BOTTOM */
.ft-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Disclaimer */

/* HERO - Dark Modern */
.ds-hero {
  position: relative;
  padding: 80px 20px 80px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
  overflow: hidden;
}

/* Soft Glow Effects */
.ds-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250,204,21,0.15) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.ds-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}

.ds-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #ffffff;
}

.ds-hero h1 span {
  background: linear-gradient(90deg, #facc15, #fbbf24);
  color: #000;
  padding: 6px 24px;
  border-radius: 10px;
  display: inline-block;
}

.ds-hero p {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 20px;
  color: #cbd5e1;
}

/* SECTION - Light */
.ds-section {
  background: #f9fbff;
  padding: 80px 20px;
}

.ds-container {
  max-width: 900px;
  margin: auto;
}

.ds-stack {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* CARD */
.ds-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ds-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.ds-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #dc2626;
}

.ds-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.ds-highlight {
  border-left: 5px solid #facc15;
  background: #fffef9;
}

/* LAST UPDATED */
.ds-footer-note {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ds-hero {
    padding: 100px 20px 70px;
  }

  .ds-hero h1 {
    font-size: 36px;
  }

  .ds-hero p {
    font-size: 16px;
  }

  .ds-card {
    padding: 25px;
  }
}

/* Privacy Policy */

/* HERO */
.pp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
  padding: 80px 20px 80px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250,204,21,0.15), transparent 70%);
  top: -150px;
  right: -150px;
}

.pp-hero h1 {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -1px;
}

.pp-hero h1 span {
  background: linear-gradient(90deg, #facc15, #fbbf24);
  color: #000;
  padding: 6px 25px;
  border-radius: 10px;
}

.pp-hero p {
  margin-top: 20px;
  font-size: 20px;
  color: #cbd5e1;
}

/* SECTION */
.pp-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.pp-container {
  max-width: 1000px;
  margin: auto;
}

.pp-stack {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* CARD */
.pp-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.pp-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #dc2626;
}

.pp-card p,
.pp-card ul {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.pp-card ul {
  margin-left: 20px;
  margin-top: 10px;
}

.pp-highlight {
  background: #fffef9;
  border-left: 5px solid #facc15;
}

.pp-footer-note {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pp-hero h1 {
    font-size: 36px;
  }

  .pp-card {
    padding: 25px;
  }
}

/* HERO */
.lx-cookie-hero {
  background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
  padding: 90px 20px 90px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.lx-cookie-hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(250,204,21,0.15), transparent 70%);
  top: -120px;
  right: -120px;
}

.lx-cookie-hero h1 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -1px;
}

.lx-cookie-hero h1 span {
  background: linear-gradient(90deg, #facc15, #fbbf24);
  color: #000;
  padding: 6px 24px;
  border-radius: 10px;
}

.lx-cookie-hero p {
  margin-top: 18px;
  font-size: 20px;
  color: #cbd5e1;
}

/* SECTION */
.lx-cookie-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.lx-cookie-container {
  max-width: 1000px;
  margin: auto;
}

.lx-cookie-stack {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* CARD */
.lx-cookie-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.lx-cookie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.lx-cookie-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #dc2626;
}

.lx-cookie-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #0f172a;
}

.lx-cookie-card p,
.lx-cookie-card ul {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.lx-cookie-card ul {
  margin-left: 20px;
  margin-top: 10px;
}

.lx-cookie-highlight {
  background: #fffef9;
  border-left: 5px solid #facc15;
}

.lx-cookie-footer-note {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lx-cookie-hero h1 {
    font-size: 34px;
  }

  .lx-cookie-card {
    padding: 25px;
  }
}

/* HERO */
.lx-terms-hero {
  background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
  padding: 90px 20px 90px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.lx-terms-hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(250,204,21,0.15), transparent 70%);
  top: -120px;
  right: -120px;
}

.lx-terms-hero h1 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -1px;
}

.lx-terms-hero h1 span {
  background: linear-gradient(90deg, #facc15, #fbbf24);
  color: #000;
  padding: 6px 24px;
  border-radius: 10px;
}

.lx-terms-hero p {
  margin-top: 18px;
  font-size: 20px;
  color: #cbd5e1;
}

/* SECTION */
.lx-terms-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.lx-terms-container {
  max-width: 1000px;
  margin: auto;
}

.lx-terms-stack {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* CARD */
.lx-terms-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.lx-terms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.lx-terms-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #dc2626;
}

.lx-terms-card p,
.lx-terms-card ul {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.lx-terms-card ul {
  margin-left: 20px;
  margin-top: 10px;
}

.lx-terms-highlight {
  background: #fffef9;
  border-left: 5px solid #facc15;
}

.lx-terms-footer-note {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lx-terms-hero h1 {
    font-size: 34px;
  }

  .lx-terms-card {
    padding: 25px;
  }
}