
    :root { 
    --background: 0 0% 7%;
    --foreground: 0 0% 100%;
    --card: 0 0% 11%;
    --card-foreground: 0 0% 100%;
    --popover: 0 0% 11%;
    --popover-foreground: 0 0% 100%;
    --primary: 120 100% 30%;
    --primary-foreground: 0 0% 100%;
    --secondary: 0 0% 15%;
    --secondary-foreground: 0 0% 100%;
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 71%;
    --accent: 120 100% 30%;
    --accent-foreground: 0 0% 100%;
    --destructive: 3 82% 50%;
    --destructive-foreground: 0 0% 100%;
    --border: 0 0% 15%;
    --input: 0 0% 15%;
    --ring: 120 100% 30%;
    --radius: 0.5rem;
    --casino-gold: 38 91% 61%;
    --casino-green: 120 100% 30%;
    --casino-green-glow: 120 100% 30%;
    --casino-red: 3 82% 50%;
    --casino-verified-bg: 152 58% 14%;
    --casino-verified: 156 72% 58%;
    --casino-star: 38 91% 61%;
    --casino-muted: 0 0% 71%;
    --casino-muted-dark: 0 0% 28%;
   }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      border-color: hsl(var(--border));
    }

    body {
      font-family: 'Roboto Flex', system-ui, -apple-system, sans-serif;
      background-color: var(--theme-bg, hsl(var(--background)));
      color: var(--theme-text, hsl(var(--foreground)));
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Roboto Flex', system-ui, sans-serif;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Glow effect */
    .glow-green {
      box-shadow: 0 0 16px var(--theme-accent-glow, hsla(120, 100%, 30%, 0.4));
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      width: 100%;
      border-bottom: 1px solid var(--theme-border, hsl(var(--border) / 0.4));
      background-color: var(--theme-bg, hsl(var(--background) / 0.95));
      backdrop-filter: blur(8px);
    }

    .header-content {
      display: flex;
      height: 56px;
      align-items: center;
      justify-content: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      width: 24px;
      height: 24px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: hsl(var(--destructive));
    }

    .logo-text {
      font-weight: 900;
      font-size: 18px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    /* Language Toggle */
    .language-toggle {
      display: flex;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--theme-border, hsl(var(--border)));
    }

    .lang-btn {
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      background: transparent;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .lang-btn.active {
      background: var(--theme-accent, hsl(var(--primary)));
      color: var(--theme-btn-text, hsl(var(--primary-foreground)));
    }

    .lang-btn:hover:not(.active) {
      background: hsl(var(--muted));
    }

    /* Hero Section */
    .hero {
      position: relative;
      padding: 48px 0;
      overflow: hidden;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, hsl(var(--primary) / 0.05), transparent);
    }

    .hero-content {
      position: relative;
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--theme-text, hsl(var(--foreground)));
      margin-bottom: 16px;
    }

    .hero-description {
      font-size: 18px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    .hero-banner {
      max-width: 896px;
      margin: 0 auto;
    }

    .hero-banner img {
      width: 100%;
      border-radius: 8px;
    }

    /* Section Title */
    .section-title {
      font-size: 24px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 24px;
      padding-top: 48px;
      color: var(--theme-text, hsl(var(--foreground)));
    }
    @media (min-width: 768px) { .section-title { font-size: 30px; } }

    /* Deposit Banner */
    .deposit-banner {
      width: 100%;
      border-radius: 8px;
      border: 1px solid hsl(var(--primary) / 0.3);
      background: hsl(var(--primary) / 0.05);
      padding: 16px;
      margin-bottom: 32px;
    }

    .deposit-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    @media (min-width: 640px) {
      .deposit-content {
        flex-direction: row;
        gap: 16px;
      }
    }

    .deposit-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .deposit-fiat {
      font-size: 14px;
      font-weight: 600;
      color: hsl(var(--primary));
    }

    .deposit-crypto {
      font-size: 14px;
      font-weight: 600;
      color: hsl(var(--casino-verified));
    }

    .deposit-divider {
      display: none;
      color: hsl(var(--muted-foreground));
    }

    @media (min-width: 640px) {
      .deposit-divider {
        display: block;
      }
    }

    .deposit-subtext {
      font-size: 10px;
      text-align: center;
      margin-top: 8px;
      color: hsl(var(--muted-foreground));
    }
    @media (min-width: 640px) {
      .deposit-subtext { font-size: 12px; }
    }

    /* Casino Cards */
    .casino-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 32px 0;
    }

    /* Gaming Cards List */
    .gaming-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 32px 0;
    }

    /* VIP Cards List */
    .vip-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 32px 0;
    }

    .casino-card {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      background: var(--theme-card-bg, hsl(var(--card)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 8px;
      overflow: visible;
      isolation: isolate;
    }

    .position-badge {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      font-weight: 900;
      font-size: 16px;
      color: white;
      z-index: 2;
      top: 8px;
      left: -8px;
      background: hsl(var(--destructive));
    }

    .card-content {
      display: flex;
      flex-direction: column;
    }

    .card-thumbnail {
      position: relative;
      width: 100%;
      height: 120px;
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
      background: var(--theme-bg, hsl(var(--background)));
      cursor: pointer;
    }

    .card-thumbnail img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px;
    }

    .card-thumbnail-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-thumbnail-placeholder span {
      font-size: 48px;
      font-weight: 900;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    .card-details {
      display: flex;
      flex-direction: column;
      padding: 16px;
      gap: 16px;
      width: 100%;
      z-index: 1;
    }

    /* Name and Rating */
    .brand-header {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .brand-name-row {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
    }

    .brand-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--theme-text, hsl(var(--foreground)));
      flex: 1;
    }

    .verified-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 4px;
      border-radius: 4px;
      background: hsl(var(--casino-verified-bg));
    }

    .verified-badge svg {
      width: 16px;
      height: 16px;
      color: hsl(var(--casino-verified));
    }

    .verified-badge span {
      font-size: 14px;
      font-weight: 400;
      color: hsl(var(--casino-verified));
    }

    .verified-badge-desktop {
      display: none;
    }

    .rating-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stars-container {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .star-wrapper {
      position: relative;
      width: 16px;
      height: 16px;
    }

    .star-bg {
      position: absolute;
      width: 16px;
      height: 16px;
      color: hsl(var(--casino-muted-dark));
      fill: transparent;
    }

    .star-fill-wrapper {
      position: absolute;
      overflow: hidden;
      height: 16px;
    }

    .star-fill {
      width: 16px;
      height: 16px;
      color: hsl(var(--casino-star));
      fill: hsl(var(--casino-star));
    }

    .rating-text {
      font-size: 12px;
      font-weight: 600;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    /* Offer Box - Mobile */
    .offer-box-mobile {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 16px;
      gap: 8px;
      width: 100%;
      border-radius: 8px;
      background: hsl(var(--primary) / 0.05);
      border: 1px solid hsl(var(--primary) / 0.2);
    }

    .offer-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      text-align: center;
      width: 100%;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    .offer-headline {
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      width: 100%;
      color: var(--theme-accent, hsl(var(--primary)));
    }

    .features-list {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      width: 100%;
      margin-top: 8px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: hsl(var(--casino-verified));
    }

    .feature-item span {
      font-size: 14px;
      font-weight: 600;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    /* Offer Box - Desktop */
    .offer-box-desktop {
      display: none;
    }

    /* CTA Section */
    .cta-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;
      width: 100%;
    }

    .cta-button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 43px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
      background: var(--theme-accent, hsl(var(--primary)));
      color: var(--theme-btn-text, hsl(var(--primary-foreground)));
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .cta-button:hover {
      opacity: 0.9;
    }

    .terms-text {
      width: 100%;
      font-size: 12px;
      font-weight: 600;
      text-align: center;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    /* Desktop Styles */
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 48px;
      }

      .card-thumbnail {
        height: 140px;
      }

      .casino-card {
        flex-direction: row;
      }

      .card-content {
        flex-direction: row;
        width: 100%;
      }

      .card-thumbnail {
        width: 192px;
        height: 155px;
        border-radius: 8px 0 0 8px;
      }

      .card-thumbnail img {
        padding: 16px;
      }

      .card-details {
        flex-direction: row;
        align-items: center;
        height: 155px;
        flex: 1;
      }

      .brand-header {
        min-width: 200px;
        flex-shrink: 0;
        gap: 16px;
      }

      .brand-name {
        font-size: 24px;
        flex: none;
      }

      .brand-name-row .verified-badge {
        display: none;
      }

      .verified-badge-desktop {
        display: inline-flex;
      }

      .offer-box-mobile {
        display: none;
      }

      .offer-box-desktop {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        min-width: 200px;
        flex-shrink: 0;
      }

      .offer-box-desktop .offer-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .offer-box-desktop .offer-label {
        text-align: left;
      }

      .offer-box-desktop .offer-headline {
        font-size: 14px;
        text-align: left;
      }

      .cta-section {
        width: 176px;
        margin-left: auto;
        align-items: flex-start;
      }

      .cta-button {
        width: 176px;
        height: 41px;
        font-size: 12px;
      }
    }

    @media (min-width: 640px) {
      .card-thumbnail {
        height: 140px;
      }
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--theme-border, hsl(var(--border)));
      padding: 32px 0;
      background: var(--theme-bg, hsl(var(--background)));
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .trustpilot-badge {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .trustpilot-logo {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .trustpilot-logo svg {
      width: 20px;
      height: 20px;
      fill: var(--theme-accent, #00b67a);
      color: var(--theme-accent, #00b67a);
    }

    .trustpilot-logo span {
      font-weight: 700;
      color: var(--theme-text, hsl(var(--foreground)));
      font-size: 14px;
    }

    .trustpilot-stars {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .trustpilot-stars svg {
      width: 16px;
      height: 16px;
      fill: var(--theme-accent, #00b67a);
    }

    .trustpilot-rating {
      font-size: 12px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

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

    .footer-text p {
      font-size: 12px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      max-width: 600px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .footer-links a {
      font-size: 12px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .footer-copyright {
      font-size: 12px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      text-align: center;
    }

    /* Quick Links */
    .footer-quick-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 16px;
      margin-bottom: 16px;
    }

    .footer-quick-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--theme-accent, hsl(var(--primary)));
      transition: opacity 0.2s;
    }

    .footer-quick-link:hover { opacity: 0.8; }

    /* Language content visibility */
    [data-lang-en] { display: none; }
    [data-lang-native] { display: block; }
    
    .lang-en [data-lang-en] { display: block; }
    .lang-en [data-lang-native] { display: none; }
    
    span[data-lang-en], span[data-lang-native] { display: inline; }
    .lang-en span[data-lang-en] { display: inline; }
    .lang-en span[data-lang-native] { display: none; }

    /* Additional Info Section */
    .additional-info-section {
      padding: 32px 0 48px;
    }

    .additional-info-content {
      max-width: 896px;
      margin: 0 auto;
    }

    .additional-info-title {
      font-size: 24px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 24px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    @media (min-width: 768px) {
      .additional-info-title {
        font-size: 30px;
      }
    }

    .additional-info-text {
      font-size: 14px;
      line-height: 1.7;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      white-space: pre-wrap;
    }

    @media (min-width: 768px) {
      .additional-info-text {
        font-size: 16px;
      }
    }

    .additional-info-text p {
      margin-bottom: 16px;
    }

    .additional-info-text ul,
    .additional-info-text ol {
      padding-left: 24px;
      margin-bottom: 16px;
    }

    .additional-info-text li {
      margin-bottom: 8px;
    }

    .additional-info-text strong {
      font-weight: 700;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .additional-info-text h2 {
      font-size: 20px;
      font-weight: 700;
      margin-top: 24px;
      margin-bottom: 12px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .additional-info-text h3 {
      font-size: 18px;
      font-weight: 600;
      margin-top: 16px;
      margin-bottom: 8px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    /* FAQ Section */
    .faq-section {
      padding: 32px 0 48px;
      background: hsl(var(--muted) / 0.3);
    }

    .faq-title {
      font-size: 24px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    @media (min-width: 768px) {
      .faq-title {
        font-size: 30px;
      }
    }

    .faq-list {
      max-width: 768px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--theme-border, hsl(var(--border)));
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-size: 16px;
      font-weight: 500;
      color: var(--theme-text, hsl(var(--foreground)));
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: var(--theme-accent, hsl(var(--primary)));
    }

    .faq-question svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-item.open .faq-question svg {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 0 16px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      white-space: pre-wrap;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    /* Age Verification Popup */
    .age-verification-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .age-verification-overlay.hidden {
      display: none;
    }

    .age-verification-card {
      background: var(--theme-card-bg, hsl(var(--card)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 12px;
      padding: 32px;
      max-width: 400px;
      width: 100%;
      text-align: center;
    }

    .age-verification-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      color: var(--theme-accent, hsl(var(--primary)));
    }

    .age-verification-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .age-verification-message {
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      margin-bottom: 24px;
    }

    .age-verification-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .age-verification-confirm {
      width: 100%;
      padding: 12px 24px;
      background: var(--theme-accent, hsl(var(--primary)));
      color: var(--theme-btn-text, hsl(var(--primary-foreground)));
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .age-verification-confirm:hover {
      opacity: 0.9;
    }

    .age-verification-deny {
      width: 100%;
      padding: 12px 24px;
      background: transparent;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    .age-verification-deny:hover {
      background: hsl(var(--muted));
    }

    /* Cookie Consent Popup */
    .cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 16px;
      animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .cookie-consent.hidden {
      display: none;
    }

    .cookie-consent-container {
      max-width: 896px;
      margin: 0 auto;
    }

    .cookie-consent-card {
      background: var(--theme-card-bg, hsl(var(--card)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 8px;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      padding: 16px 24px;
    }

    .cookie-consent-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 768px) {
      .cookie-consent-content {
        flex-direction: row;
        align-items: center;
      }
    }

    .cookie-consent-text {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      flex: 1;
    }

    .cookie-consent-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: hsl(var(--primary) / 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cookie-consent-icon svg {
      width: 20px;
      height: 20px;
      color: var(--theme-accent, hsl(var(--primary)));
    }

    .cookie-consent-info h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--theme-text, hsl(var(--foreground)));
      margin-bottom: 4px;
    }

    .cookie-consent-info p {
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      line-height: 1.5;
    }

    .cookie-consent-buttons {
      display: flex;
      gap: 8px;
      width: 100%;
    }

    @media (min-width: 768px) {
      .cookie-consent-buttons {
        width: auto;
      }
    }

    .cookie-consent-decline {
      flex: 1;
      padding: 10px 16px;
      background: transparent;
      color: var(--theme-text, hsl(var(--foreground)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    @media (min-width: 768px) {
      .cookie-consent-decline {
        flex: none;
      }
    }

    .cookie-consent-decline:hover {
      background: hsl(var(--muted));
    }

    .cookie-consent-accept {
      flex: 1;
      padding: 10px 16px;
      background: var(--theme-accent, hsl(var(--primary)));
      color: var(--theme-btn-text, hsl(var(--primary-foreground)));
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    @media (min-width: 768px) {
      .cookie-consent-accept {
        flex: none;
      }
    }

    .cookie-consent-accept:hover {
      opacity: 0.9;
    }

    /* Footer Logos */
    .footer-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .footer-logo-item {
      height: 32px;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .footer-logo-item:hover {
      opacity: 1;
    }

    .footer-logo-item img {
      height: 100%;
      width: auto;
      object-fit: contain;
    }

    /* Footer Legal Links */
    .footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 16px;
      margin-bottom: 24px;
    }

    .footer-legal-link {
      font-size: 14px;
      color: var(--theme-accent, hsl(var(--primary)));
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .footer-legal-link:hover {
      opacity: 0.8;
      text-decoration: underline;
    }

    /* Above Footer Text */
    .above-footer-section {
      border-top: 1px solid var(--theme-border, hsl(var(--border) / 0.5));
      padding: 32px 0;
      background: var(--theme-bg, hsl(var(--background)));
    }

    .above-footer-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      font-size: 14px;
      line-height: 1.7;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
    }

    .above-footer-content a {
      color: var(--theme-accent, hsl(var(--primary)));
      text-decoration: underline;
    }

    /* Standalone pages (legal/contact/opt-out) */
    .standalone-page-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 48px 16px;
    }

    .standalone-page-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .standalone-page-body {
      font-size: 16px;
      line-height: 1.7;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      white-space: normal;
      word-break: break-word;
    }

    .standalone-page-body h2 {
      font-size: 24px;
      font-weight: 600;
      margin-top: 32px;
      margin-bottom: 16px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .standalone-page-body h3 {
      font-size: 20px;
      font-weight: 600;
      margin-top: 24px;
      margin-bottom: 12px;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .standalone-page-body p {
      margin-bottom: 16px;
    }

    .standalone-page-body ul,
    .standalone-page-body ol {
      padding-left: 24px;
      margin-bottom: 16px;
    }

    .standalone-page-body li {
      margin-bottom: 8px;
    }

    .standalone-page-body a {
      color: var(--theme-accent, hsl(var(--primary)));
      text-decoration: underline;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      margin-bottom: 24px;
      text-decoration: none;
    }

    .back-link:hover {
      color: var(--theme-text, hsl(var(--foreground)));
    }

    /* Form styles */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

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

    .form-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .form-input {
      width: 100%;
      padding: 10px 12px;
      font-size: 14px;
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 6px;
      background: var(--theme-bg, hsl(var(--background)));
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .form-input:focus {
      outline: none;
      border-color: var(--theme-accent, hsl(var(--primary)));
      box-shadow: 0 0 0 2px hsl(var(--primary) / 0.1);
    }

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

    .form-select {
      cursor: pointer;
    }

    .form-submit {
      margin-top: 8px;
    }

    /* Card styles (opt-out) */
    .form-card {
      background: var(--theme-card-bg, hsl(var(--card)));
      border: 1px solid var(--theme-border, hsl(var(--border)));
      border-radius: 12px;
      padding: 24px;
      max-width: 480px;
      margin: 0 auto;
    }

    .form-card-header {
      text-align: center;
      margin-bottom: 24px;
    }

    .form-card-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--theme-text, hsl(var(--foreground)));
      margin-bottom: 8px;
    }

    .form-card-description {
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      line-height: 1.5;
    }

    /* Radio group styles */
    .radio-group {
      display: flex;
      gap: 16px;
    }

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

    .radio-input {
      width: 16px;
      height: 16px;
      accent-color: var(--theme-accent, hsl(var(--primary)));
      cursor: pointer;
    }

    .radio-label {
      font-size: 14px;
      color: var(--theme-text, hsl(var(--foreground)));
      cursor: pointer;
    }

    /* Company info section */
    .company-info {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--theme-border, hsl(var(--border)));
    }

    .company-info-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--theme-text, hsl(var(--foreground)));
      margin-bottom: 16px;
    }

    .company-info-item {
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      margin-bottom: 8px;
    }

    .company-info-item strong {
      font-weight: 500;
      color: var(--theme-text, hsl(var(--foreground)));
    }

    .company-info-item a {
      color: inherit;
      text-decoration: none;
    }

    .company-info-item a:hover {
      color: var(--theme-accent, hsl(var(--primary)));
    }

    /* Success message styles */
    .success-message {
      text-align: center;
      padding: 32px 24px;
    }

    .success-icon {
      display: flex;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--theme-accent, hsl(var(--primary)));
    }

    .success-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--theme-text, hsl(var(--foreground)));
      margin-bottom: 12px;
    }

    .success-text {
      font-size: 14px;
      color: var(--theme-muted, hsl(var(--muted-foreground)));
      line-height: 1.6;
      max-width: 400px;
      margin: 0 auto;
    }
  