   :root {

       --bg-dark: #0B0F19;
       --bg-card: #161B2E;
       --text-main: #EAE8FF;
       --text-muted: #8A8DAB;
       --accent: #8B5CF6;
       --accent-hover: #7C3AED;
       --danger: #FF4757;
       --success: #10b981;
       --nav-bg: rgba(11, 15, 25, 0.95);

       --bg-main: #0B0F19;
       --accent-soft: rgba(139, 92, 246, 0.2);
       --border-subtle: #1F2933;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }

   html {
       scroll-behavior: smooth;
       scroll-padding-top: 80px;
   }

   body {
       background-color: var(--bg-dark);
       color: var(--text-main);
       line-height: 1.6;
       overflow-x: hidden;
   }

   a {
       text-decoration: none;
       color: inherit;
       transition: 0.3s;
   }

   ul {
       list-style: none;
   }

   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 20px;
   }

   .btn {
       display: inline-block;
       padding: 12px 30px;
       background-color: var(--accent);
       color: #ffffff;
       font-weight: 700;
       border-radius: 5px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
       border: none;
       cursor: pointer;
       font-size: 0.9rem;
       box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
   }

   .btn:hover {
       background-color: var(--accent-hover);
       transform: translateY(-2px);
       box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
   }

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

   .section-header h2 {
       font-size: 2.5rem;
       margin-bottom: 1rem;
       color: var(--text-main);
   }

   .section-header p {
       color: var(--text-muted);
       font-size: 1.1rem;
       max-width: 700px;
       margin: 0 auto;
   }

   header {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       background-color: var(--nav-bg);
       backdrop-filter: blur(10px);
       z-index: 1000;
       border-bottom: 1px solid rgba(139, 92, 246, 0.1);
   }

   nav {
       display: flex;
       justify-content: space-between;
       align-items: center;
       height: 80px;
   }

   .logo {
       font-size: 1.5rem;
       font-weight: 800;
       color: var(--accent);
       letter-spacing: 1px;
       text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
   }

   .nav-links {
       display: flex;
       gap: 20px;
   }

   .nav-links a {
       font-size: 0.9rem;
       font-weight: 500;
       color: var(--text-main);
   }

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

   .burger {
       display: none;
       font-size: 1.5rem;
       cursor: pointer;
       color: var(--text-main);
   }

   #hero {
       height: 100vh;
       display: flex;
       align-items: center;
       justify-content: center;

       background: linear-gradient(rgba(11, 15, 25, 0.85), rgba(22, 27, 46, 0.95)), url('../img/hero.png') no-repeat center center/cover;
       text-align: center;
       padding-top: 80px;
   }

   .hero-content h1 {
       font-size: 3.5rem;
       margin-bottom: 1.5rem;
       line-height: 1.2;
   }

   .hero-content p.subtitle {
       font-size: 1.2rem;
       color: var(--text-muted);
       margin-bottom: 2rem;
       max-width: 800px;
       margin-left: auto;
       margin-right: auto;
   }

   .hero-features {
       display: flex;
       justify-content: center;
       gap: 20px;
       margin-bottom: 2rem;
       flex-wrap: wrap;
   }

   .hero-feature {
       display: flex;
       align-items: center;
       gap: 10px;
       font-size: 1rem;
       color: var(--text-main);
   }

   .hero-feature i {
       color: var(--accent);
   }

   .hero-disclaimer {
       margin-top: 1.5rem;
       font-size: 0.8rem;
       color: var(--text-muted);
       opacity: 0.7;
   }

   section {
       padding: 5rem 0;
   }

   section:nth-child(even) {
       background-color: var(--bg-card);
   }

   .text-block p {
       margin-bottom: 1.5rem;
       color: var(--text-muted);
       font-size: 1.05rem;
   }

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

   .card {
       background-color: var(--bg-dark);
       padding: 2rem;
       border-radius: 10px;
       border: 1px solid rgba(139, 92, 246, 0.05);
       transition: 0.3s;
   }

   section:nth-child(even) .card {
       background-color: var(--bg-dark);
   }

   section:nth-child(odd) .card {
       background-color: var(--bg-card);
   }

   .card:hover {
       transform: translateY(-5px);
       border-color: var(--accent);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   }

   .icon-box {
       font-size: 2rem;
       color: var(--accent);
       margin-bottom: 1.5rem;
   }

   .card h3 {
       margin-bottom: 1rem;
       font-size: 1.2rem;
   }

   .card p {
       color: var(--text-muted);
       font-size: 0.95rem;
   }

   .feature-list li {
       margin-bottom: 10px;
       display: flex;
       align-items: center;
       gap: 10px;
       color: var(--text-muted);
   }

   .feature-list i {
       color: var(--accent);
   }

   .bookmaker-card {
       text-align: center;
       position: relative;
   }

   .bookmaker-logo {
       width: 100px;
       height: 100px;
       margin: 0 auto 1.5rem;
       display: flex;
       align-items: center;
       justify-content: center;
   }


   .bookmaker-logo img {
       height: 80px;
   }

   .stars {
       color: #FFD700;
       margin-bottom: 1rem;
   }

   .bonus-info {
       background-color: rgba(139, 92, 246, 0.15);
       color: var(--accent);
       padding: 10px;
       border-radius: 5px;
       margin: 1rem 0;
       font-size: 0.9rem;
       font-weight: 600;
   }

   .timeline {
       display: flex;
       justify-content: space-between;
       flex-wrap: wrap;
       gap: 20px;
       margin-top: 3rem;
   }

   .timeline-item {
       flex: 1;
       text-align: center;
       min-width: 200px;
   }

   .timeline-icon {
       width: 70px;
       height: 70px;
       background-color: var(--bg-card);
       border: 2px solid var(--accent);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.5rem;
       color: var(--accent);
       margin: 0 auto 1.5rem;
       box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
   }

   .timeline-item h4 {
       margin-bottom: 0.5rem;
   }

   .responsible-box {
       border-left: 4px solid var(--danger);
       padding-left: 20px;
       margin-top: 2rem;
       background: linear-gradient(to right, rgba(255, 71, 87, 0.1), transparent);
   }

   .age-restriction {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       background-color: var(--danger);
       color: white;
       padding: 5px 15px;
       border-radius: 20px;
       font-weight: bold;
       font-size: 0.9rem;
       margin-bottom: 1rem;
   }

   .faq-item {
       margin-bottom: 1rem;
       background-color: var(--bg-card);
       border-radius: 5px;
       overflow: hidden;
       border: 1px solid transparent;
       transition: 0.3s;
   }

   .faq-item.active {
       border-color: var(--accent);
   }

   .faq-question {
       padding: 1.5rem;
       cursor: pointer;
       display: flex;
       justify-content: space-between;
       align-items: center;
       font-weight: 600;
   }

   .faq-answer {
       padding: 0 1.5rem 1.5rem;
       color: var(--text-muted);
       display: none;
   }

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

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

   .contact-wrapper {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 50px;
   }

   .contact-info-item {
       display: flex;
       gap: 20px;
       margin-bottom: 2rem;
   }

   .contact-info-item i {
       font-size: 1.5rem;
       color: var(--accent);
   }

   .form-group {
       margin-bottom: 1.5rem;
   }

   .form-control {
       width: 100%;
       padding: 12px;
       background-color: var(--bg-dark);
       border: 1px solid rgba(139, 92, 246, 0.2);
       border-radius: 5px;
       color: var(--text-main);
       font-size: 1rem;
       transition: 0.3s;
   }

   .form-control:focus {
       outline: none;
       border-color: var(--accent);
       box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
   }

   .copyright {
       text-align: center;
       padding-top: 2rem;
       border-top: 1px solid rgba(139, 92, 246, 0.1);
   }

   @media (max-width: 992px) {
       .grid-6 {
           grid-template-columns: repeat(2, 1fr);
       }

       .contact-wrapper {
           grid-template-columns: 1fr;
       }
   }

   @media (max-width: 768px) {
       .burger {
           display: block;
       }

       .nav-links {
           position: absolute;
           top: 80px;
           left: 0;
           width: 100%;
           background-color: var(--nav-bg);
           flex-direction: column;
           padding: 2rem;
           gap: 1.5rem;
           text-align: center;
           transform: translateY(-150%);
           transition: 0.3s ease-in-out;
       }

       .nav-links.active {
           transform: translateY(0);
       }

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

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

       .timeline {
           flex-direction: column;
       }
   }


   .ke-footer {
       background: #080808;
       color: #e5e7eb;
       padding: 32px 16px 20px;
       font-size: 0.9rem;
   }

   .ke-footer-inner {
       max-width: 1180px;
       margin: 0 auto;
       display: flex;
       flex-wrap: wrap;
       gap: 24px;
       align-items: flex-start;
   }

   .ke-footer-left,
   .ke-footer-center {
       flex: 1 1 260px;
   }

   .ke-footer-logo {
       font-size: 24px;
       font-weight: 700;

   }

   .ke-footer-tagline {
       max-width: 260px;
       line-height: 1.4;
       color: #9ca3af;
   }

   .ke-footer-center p {
       margin-bottom: 10px;
       line-height: 1.5;
   }

   .ke-footer-links {
       flex: 0 0 200px;
       display: flex;
       flex-direction: column;
       gap: 6px;
       margin-left: auto;
   }

   .ke-footer-links a {
       color: #e5e7eb;
       text-decoration: none;
       font-size: 0.9rem;
   }

   .ke-footer-links a:hover {
       color: #fbbf24;
   }


   .ke-footer-regulators {
       max-width: 1180px;
       margin: 18px auto 0;
       padding-top: 14px;
       border-top: 1px solid #1f2937;
       display: flex;
       flex-direction: column;
       gap: 8px;
   }

   .reg-label {
       font-weight: 600;
       color: #d1d5db;
   }

   .reg-logos {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       gap: 12px;
       align-items: center;
   }

   .reg-logos a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       padding: 4px 10px;
       border-radius: 10px;
       background: rgba(15, 23, 42, 0.75);
       transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
   }

   .reg-logos a:hover {
       transform: translateY(-1px);
   }

   .reg-logos img {
       height: 80px;
   }


   .ke-footer-age {
       max-width: 1180px;
       margin: 10px auto 0;
       display: flex;
       justify-content: flex-end;
   }

   .age-badge {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 34px;
       height: 34px;
       border-radius: 999px;
       border: 2px solid #f97316;
       font-weight: 700;
       font-size: 0.9rem;
       color: #f97316;
   }


   .ke-footer-bottom {
       max-width: 1180px;
       margin: 10px auto 0;
       text-align: center;
       color: #6b7280;
       font-size: 0.8rem;
       padding-top: 8px;
   }


   @media (max-width: 900px) {
       .ke-footer-inner {
           flex-direction: column;
           align-items: flex-start;
       }

       .ke-footer-links {
           margin-left: 0;
       }

       .ke-footer-age {
           justify-content: flex-start;
       }
   }

   @media (max-width: 600px) {
       .ke-footer-regulators {
           align-items: flex-start;
       }

       .reg-logos {
           justify-content: flex-start;
       }

       .ke-footer-bottom {
           margin-top: 14px;
       }

       .ke-footer-left,
       .ke-footer-center {
           flex: auto;
       }

       .ke-footer-links {
           flex: auto;
       }
   }

   .age-gate-overlay {
       position: fixed;
       inset: 0;
       background: rgba(5, 7, 18, 0.96);
       display: none;
       align-items: center;
       justify-content: center;
       padding: 16px;
       z-index: 9999;
   }

   .age-gate-overlay.is-visible {
       display: flex;
   }

   .age-gate-modal {
       width: 100%;
       max-width: 440px;
       background: var(--bg-main);
       border-radius: 18px;
       padding: 24px 24px 20px;
       box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
       border: 1px solid var(--accent-soft);
   }

   .age-gate-badge {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       padding: 4px 10px;
       border-radius: 999px;
       background: var(--accent-soft);
       color: var(--accent);
       font-size: 11px;
       letter-spacing: 0.08em;
       text-transform: uppercase;
       margin-bottom: 12px;
   }

   .age-gate-badge span {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 18px;
       height: 18px;
       border-radius: 999px;
       background: var(--accent);
       color: #fff;
       font-weight: 700;
       font-size: 11px;
   }

   .age-gate-title {
       font-size: 22px;
       font-weight: 700;
       margin: 0 0 8px;
   }

   .age-gate-subtitle {
       font-size: 13px;
       color: var(--text-muted);
       margin: 0 0 18px;
       line-height: 1.4;
   }

   .age-gate-warning {
       display: flex;
       align-items: flex-start;
       gap: 10px;
       padding: 10px 12px;
       border-radius: 12px;
       background: rgba(248, 113, 113, 0.07);
       border: 1px solid rgba(248, 113, 113, 0.45);
       margin-bottom: 18px;
   }

   .age-gate-warning-icon {
       width: 22px;
       height: 22px;
       border-radius: 999px;
       background: rgba(248, 113, 113, 0.18);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 13px;
       color: #FCA5A5;
       flex-shrink: 0;
   }

   .age-gate-warning-text {
       font-size: 12px;
       color: #FCA5A5;
       line-height: 1.4;
   }

   .age-gate-actions {
       display: flex;
       flex-wrap: wrap;
       gap: 10px;
       margin-top: 4px;
   }

   .btn {
       border: none;
       border-radius: 999px;
       padding: 10px 18px;
       font-size: 13px;
       font-weight: 600;
       cursor: pointer;
       transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
   }

   .btn-primary {
       background: var(--accent);
       color: #fff;
       box-shadow: 0 10px 25px rgba(139, 92, 246, 0.55);
   }

   .btn-primary:hover {
       background: #7C3AED;
       transform: translateY(-1px);
       box-shadow: 0 14px 32px rgba(139, 92, 246, 0.7);
   }

   .btn-outline {
       background: transparent;
       color: var(--text-muted);
       border: 1px solid var(--border-subtle);
   }

   .btn-outline:hover {
       border-color: var(--accent);
       color: var(--accent);
       transform: translateY(-1px);
   }

   .btn-full {
       flex: 1 1 auto;
       text-align: center;
   }

   .age-gate-note {
       margin-top: 14px;
       font-size: 11px;
       color: var(--text-muted);
       text-align: center;
       line-height: 1.4;
   }

   .cookie-banner {
       position: fixed;
       left: 50%;
       bottom: 16px;
       transform: translateX(-50%);
       width: calc(100% - 32px);
       max-width: 640px;
       background: var(--bg-main);
       border-radius: 18px;
       padding: 16px 18px 14px;
       box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
       border: 1px solid var(--accent-soft);
       display: none;
       z-index: 9997;
   }

   .cookie-banner.is-visible {
       display: block;
   }

   .cookie-banner-inner {
       display: flex;
       flex-wrap: wrap;
       gap: 12px;
       align-items: flex-start;
   }

   .cookie-banner-text {
       flex: 1 1 220px;
   }

   .cookie-title-row {
       display: flex;
       align-items: center;
       gap: 8px;
       margin-bottom: 4px;
   }

   .cookie-title-icon {
       width: 22px;
       height: 22px;
       border-radius: 999px;
       background: var(--accent-soft);
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 12px;
       color: var(--accent);
   }

   .cookie-title {
       margin: 0;
       font-size: 14px;
       font-weight: 600;
   }

   .cookie-text {
       margin: 0;
       font-size: 12px;
       color: var(--text-muted);
       line-height: 1.4;
   }

   .cookie-text a {
       color: var(--accent);
       text-decoration: none;
   }

   .cookie-text a:hover {
       text-decoration: underline;
   }

   .cookie-banner-actions {
       display: flex;
       flex-wrap: wrap;
       gap: 8px;
       align-items: center;
       justify-content: flex-end;
   }

   .cookie-small-link {
       font-size: 11px;
       color: var(--text-muted);
       text-decoration: underline;
       cursor: pointer;
   }

   .cookie-modal-overlay {
       position: fixed;
       inset: 0;
       background: rgba(5, 7, 18, 0.85);
       display: none;
       align-items: center;
       justify-content: center;
       padding: 16px;
       z-index: 9998;
   }

   .cookie-modal-overlay.is-visible {
       display: flex;
   }

   .cookie-modal {
       width: 100%;
       max-width: 520px;
       background: var(--bg-main);
       border-radius: 18px;
       padding: 20px 22px 18px;
       border: 1px solid var(--accent-soft);
       box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
   }

   .cookie-modal-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 8px;
       margin-bottom: 12px;
   }

   .cookie-modal-title {
       font-size: 16px;
       font-weight: 600;
       margin: 0;
   }

   .cookie-modal-close {
       width: 28px;
       height: 28px;
       border-radius: 999px;
       border: none;
       background: rgba(15, 23, 42, 0.9);
       color: var(--text-muted);
       cursor: pointer;
       font-size: 14px;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
   }

   .cookie-modal-close:hover {
       background: rgba(15, 23, 42, 1);
       color: var(--accent);
       transform: translateY(-1px);
   }

   .cookie-modal-description {
       margin: 0 0 14px;
       font-size: 12px;
       color: var(--text-muted);
       line-height: 1.4;
   }

   .cookie-options {
       display: flex;
       flex-direction: column;
       gap: 10px;
       margin-bottom: 14px;
   }

   .cookie-option {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 10px;
       padding: 10px 10px;
       border-radius: 14px;
       background: rgba(15, 23, 42, 0.88);
       border: 1px solid #111827;
   }

   .cookie-option-info {
       flex: 1 1 auto;
   }

   .cookie-option-title-row {
       display: flex;
       align-items: center;
       gap: 6px;
       margin-bottom: 3px;
   }

   .cookie-option-badge {
       font-size: 9px;
       text-transform: uppercase;
       letter-spacing: 0.08em;
       padding: 2px 6px;
       border-radius: 999px;
       border: 1px solid rgba(148, 163, 184, 0.7);
       color: #E5E7EB;
   }

   .cookie-option-title {
       font-size: 13px;
       font-weight: 500;
       margin: 0;
   }

   .cookie-option-text {
       margin: 0;
       font-size: 11px;
       color: var(--text-muted);
       line-height: 1.4;
   }

   .cookie-switch {
       position: relative;
       width: 42px;
       height: 22px;
   }

   .cookie-switch input {
       opacity: 0;
       width: 0;
       height: 0;
   }

   .cookie-switch-slider {
       position: absolute;
       cursor: pointer;
       inset: 0;
       background-color: #111827;
       border-radius: 999px;
       transition: 0.2s;
       box-shadow: inset 0 0 0 1px rgba(55, 65, 81, 0.85);
   }

   .cookie-switch-slider::before {
       position: absolute;
       content: "";
       height: 16px;
       width: 16px;
       left: 3px;
       top: 3px;
       border-radius: 50%;
       background-color: #6B7280;
       transition: 0.2s;
   }

   .cookie-switch input:checked+.cookie-switch-slider {
       background-color: rgba(139, 92, 246, 0.3);
       box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.8);
   }

   .cookie-switch input:checked+.cookie-switch-slider::before {
       transform: translateX(18px);
       background-color: var(--accent);
   }

   .cookie-switch input:disabled+.cookie-switch-slider {
       background-color: rgba(17, 24, 39, 0.9);
       box-shadow: inset 0 0 0 1px rgba(75, 85, 99, 0.7);
   }

   .cookie-switch input:disabled+.cookie-switch-slider::before {
       background-color: #4B5563;
   }

   .cookie-modal-actions {
       display: flex;
       flex-wrap: wrap;
       gap: 8px;
       justify-content: flex-end;
   }

   .cookie-modal-note {
       margin-top: 10px;
       font-size: 11px;
       color: var(--text-muted);
   }

   @media (max-width: 600px) {
       .cookie-banner-inner {
           flex-direction: column;
       }

       .cookie-banner-actions {
           justify-content: flex-start;
       }

       .btn-full-mobile {
           width: 100%;
           text-align: center;
           justify-content: center;
       }
   }


   .page {
       padding-top: 80px;
   }

   .page .content-wrapper {
       background-color: var(--bg-card);
       margin: 3rem auto;
       padding: 3rem;
       border-radius: 10px;
       border: 1px solid rgba(139, 92, 246, 0.1);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   }

   .page h1 {
       font-size: 2.5rem;
       margin-bottom: 0.5rem;
       color: var(--text-main);
   }

   .page .last-updated {
       color: var(--text-muted);
       margin-bottom: 2rem;
       font-size: 0.9rem;
       border-bottom: 1px solid rgba(139, 92, 246, 0.2);
       padding-bottom: 2rem;
   }

   .page h2 {
       font-size: 1.8rem;
       color: var(--text-main);
       margin-top: 2.5rem;
       margin-bottom: 1rem;
       border-left: 4px solid var(--accent);
       padding-left: 15px;
   }

   .page h3 {
       font-size: 1.3rem;
       color: var(--text-main);
       margin-top: 1.5rem;
       margin-bottom: 0.8rem;
   }

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

   .page ul {
       list-style: disc;
       margin-left: 2rem;
       margin-bottom: 1.5rem;
       color: var(--text-muted);
   }

   .page li {
       margin-bottom: 0.5rem;
   }

   .page strong {
       color: var(--text-main);
   }

   .page .highlight-box {
       background-color: rgba(139, 92, 246, 0.1);
       border: 1px solid var(--accent);
       padding: 1.5rem;
       border-radius: 5px;
       margin: 2rem 0;
   }


   @media (max-width: 768px) {
       .page .content-wrapper {
           padding: 1.5rem;
       }

       .page h1 {
           font-size: 2rem;
       }

       .page h2 {
           font-size: 1.5rem;
       }
   }

   .page .danger-text {
       color: var(--danger);
       font-weight: bold;
   }

   .cookie-table {
       width: 100%;
       border-collapse: collapse;
       margin: 2rem 0;
       color: var(--text-muted);
   }

   .cookie-table th,
   .cookie-table td {
       border: 1px solid rgba(139, 92, 246, 0.2);
       padding: 12px;
       text-align: left;
   }

   .cookie-table th {
       background-color: rgba(11, 15, 25, 0.5);
       color: var(--accent);
   }


   @media (max-width: 768px) {

       .cookie-table {
           font-size: 0.8rem;
       }
   }

   .alert-box {
       background-color: rgba(255, 71, 87, 0.1);
       border: 1px solid var(--danger);
       padding: 1.5rem;
       border-radius: 5px;
       margin: 2rem 0;
       color: #ffcccb;
   }

   .help-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 20px;
       margin-top: 2rem;
   }

   .help-card {
       background-color: var(--bg-dark);
       padding: 1.5rem;
       border-radius: 8px;
       border: 1px solid rgba(139, 92, 246, 0.1);
       transition: 0.3s;
   }

   .help-card:hover {
       border-color: var(--accent);
       transform: translateY(-5px);
   }

   .help-card h4 {
       color: var(--text-main);
       margin-bottom: 0.5rem;
       font-size: 1.1rem;
   }

   .help-card i {
       color: var(--accent);
       font-size: 1.5rem;
       margin-bottom: 1rem;
       display: block;
   }

   @media (max-width: 768px) {

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