 :root {
     --primary-color: #0ea5e9;
     --primary-dark: #0284c7;
     --secondary-color: #f59e0b;
     --bg-dark: #0f172a;
     --bg-light: #f8fafc;
     --text-main: #334155;
     --text-light: #94a3b8;
     --white: #ffffff;
     --transition: all 0.3s ease;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-main);
     line-height: 1.6;
     background-color: var(--white);
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 h1,
 h2,
 h3,
 h4 {
     color: var(--bg-dark);
     font-weight: 700;
     margin-bottom: 1rem;
 }

 h2 {
     font-size: 2.2rem;
 }

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

 .section {
     padding: 80px 0;
 }

 .section-header {
     margin-bottom: 50px;
 }

 .subtext {
     font-size: 1.1rem;
     color: var(--text-light);
     max-width: 600px;
     margin: 0 auto;
 }

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

 .bg-light {
     background-color: var(--bg-light);
 }

 .bg-dark {
     background-color: var(--bg-dark);
     color: var(--white);
 }

 .bg-dark h2,
 .bg-dark h3 {
     color: var(--white);
 }

 .text-light-grey {
     color: var(--text-light);
 }

 .mb-3 {
     margin-bottom: 1.5rem;
 }

 .mb-4 {
     margin-bottom: 2rem;
 }

 .mt-2 {
     margin-top: 1rem;
 }

 .mt-3 {
     margin-top: 1.5rem;
 }


 .btn {
     display: inline-block;
     padding: 12px 28px;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     text-align: center;
 }

 .btn-primary {
     background-color: var(--primary-color);
     color: var(--white);
 }

 .btn-primary:hover {
     background-color: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
 }

 .btn-secondary {
     background-color: var(--secondary-color);
     color: var(--white);
 }

 .btn-secondary:hover {
     background-color: #d97706;
     transform: translateY(-2px);
 }

 .btn-full {
     width: 100%;
     display: block;
 }


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

 .grid-4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .flex-row {
     display: flex;
     flex-wrap: wrap;
 }

 .flex-half {
     width: 50%;
 }

 .pr-4 {
     padding-right: 2rem;
 }

 .items-center {
     align-items: center;
 }

 header {
     position: fixed;
     top: 0;
     width: 100%;
     background-color: var(--bg-dark);
     padding: 20px 0;
     z-index: 1000;
     transition: var(--transition);
 }

 header.sticky {
     background-color: var(--bg-dark);
     padding: 15px 0;
     box-shadow: var(--shadow);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--white);
 }

 .logo span {
     color: var(--primary-color);
 }

 .nav-list {
     display: flex;
     gap: 25px;
 }

 .nav-list a {
     color: var(--white);
     font-weight: 500;
     font-size: 0.95rem;
 }

 .nav-list a:hover {
     color: var(--primary-color);
 }

 .hamburger {
     display: none;
     color: var(--white);
     font-size: 1.5rem;
     cursor: pointer;
 }

 .hero {
     height: 100vh;
     min-height: 600px;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--white);
 }

 .hero-content {
     max-width: 800px;
     animation: fadeIn 1s ease-out;
 }

 .hero h1 {
     color: var(--white);
     font-size: 3rem;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     color: #e2e8f0;
 }


 .feature-box,
 .service-card {
     background: var(--white);
     padding: 30px 20px;
     border-radius: 8px;
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
     border: 1px solid #e2e8f0;
 }

 .feature-box:hover,
 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-hover);
     border-color: var(--primary-color);
 }

 .feature-box i,
 .service-card i {
     font-size: 2.5rem;
     color: var(--primary-color);
     margin-bottom: 15px;
 }

 .text-block p {
     margin-bottom: 15px;
     font-size: 1.05rem;
 }

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

 .process-step {
     background: var(--bg-light);
     padding: 30px;
     border-radius: 8px;
     border-left: 4px solid var(--primary-color);
 }

 .step-number {
     display: inline-block;
     width: 40px;
     height: 40px;
     background: var(--primary-color);
     color: var(--white);
     border-radius: 50%;
     text-align: center;
     line-height: 40px;
     font-weight: bold;
     font-size: 1.2rem;
     margin-bottom: 15px;
 }

 .premium-card {
     background-color: #1e293b;
     border-radius: 12px;
     padding: 30px;
     text-align: center;
     transition: var(--transition);
     border: 1px solid #334155;
 }

 .premium-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
     border-color: var(--secondary-color);
 }

 .platform-logo {
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     background: var(--white);
     border-radius: 8px;
     padding: 10px;
 }

 .platform-logo img {
     max-width: 100%;
     max-height: 100%;
 }

 .rating {
     color: var(--secondary-color);
     margin-bottom: 20px;
     font-size: 1.1rem;
 }

 .rating span {
     color: var(--white);
     margin-left: 5px;
     font-weight: bold;
 }

 .platform-details {
     text-align: left;
     margin-bottom: 25px;
 }

 .platform-details li {
     margin-bottom: 10px;
     font-size: 0.95rem;
     color: #cbd5e1;
 }

 .platform-details i {
     color: var(--primary-color);
     margin-right: 8px;
 }

 .payment-icons {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 30px;
     margin-top: 30px;
 }

 .payment-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     color: var(--text-main);
 }

 .payment-item i {
     font-size: 2.5rem;
     color: var(--bg-dark);
     margin-bottom: 10px;
 }

 .icon-list li {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
 }

 .icon-list i {
     color: var(--primary-color);
     margin-right: 15px;
     margin-top: 5px;
     font-size: 1.2rem;
 }

 .security-banner {
     background-color: #fffbeb;
     border-left: 5px solid var(--secondary-color);
     padding: 30px;
     border-radius: 0 8px 8px 0;
     box-shadow: var(--shadow);
 }

 .warning-icon {
     font-size: 2rem;
     color: var(--secondary-color);
     margin-bottom: 15px;
 }

 .security-banner h3 {
     color: #b45309;
 }

 .accordion {
     max-width: 800px;
     margin: 0 auto;
 }

 .accordion-item {
     background: var(--white);
     border: 1px solid #e2e8f0;
     margin-bottom: 15px;
     border-radius: 6px;
     overflow: hidden;
 }

 .accordion-header {
     padding: 18px 20px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: var(--white);
     transition: var(--transition);
 }

 .accordion-header:hover {
     background-color: var(--bg-light);
 }

 .accordion-header i {
     transition: transform 0.3s;
 }

 .accordion-header.active i {
     transform: rotate(180deg);
 }

 .accordion-body {
     padding: 0 20px;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out, padding 0.3s ease;
     background-color: var(--bg-light);
 }

 .contact-form {
     background: var(--bg-light);
     padding: 30px;
     border-radius: 8px;
     box-shadow: var(--shadow);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #cbd5e1;
     border-radius: 6px;
     font-family: inherit;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary-color);
 }

 .contact-card {
     background: var(--bg-dark);
     color: var(--white);
     padding: 30px;
     border-radius: 8px;
 }

 .contact-card h3 {
     color: var(--white);
     margin-bottom: 15px;
     border-bottom: 1px solid #334155;
     padding-bottom: 10px;
 }

 .contact-card p {
     margin-bottom: 10px;
 }

 .contact-card i {
     color: var(--primary-color);
     margin-right: 10px;
     width: 20px;
     text-align: center;
 }

 .small-text {
     font-size: 0.85rem;
     color: #94a3b8;
 }

 .footer {
     background-color: #020617;
     color: #94a3b8;
     padding: 60px 0 20px;
 }

 .footer h4 {
     color: var(--white);
     margin-bottom: 20px;
 }

 .footer span {
     color: var(--primary-color);
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a:hover {
     color: var(--white);
     padding-left: 5px;
 }

 .footer-disclaimer {
     margin: 40px 0;
     padding: 20px;
     background-color: #0f172a;
     border-radius: 8px;
     border-left: 4px solid #ef4444;
     display: flex;
     align-items: center;
 }

 .age-limit {
     font-size: 2rem;
     font-weight: bold;
     color: #ef4444;
     margin-right: 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     line-height: 1;
 }

 .age-limit i {
     font-size: 1rem;
     margin-bottom: 5px;
 }

 .footer-disclaimer p {
     font-size: 0.85rem;
 }

 .footer-bottom {
     border-top: 1px solid #1e293b;
     padding-top: 20px;
     font-size: 0.9rem;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 @media (max-width: 992px) {

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

     .flex-half {
         width: 100%;
         padding-right: 0;
     }

     .mb-mobile {
         margin-bottom: 30px;
     }
 }

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

     .grid-3,
     .grid-4,
     .process-grid {
         grid-template-columns: 1fr;
     }

     .nav-menu {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: var(--bg-dark);
         display: none;
         flex-direction: column;
         padding: 20px;
         box-shadow: var(--shadow);
     }

     .nav-menu.active {
         display: flex;
     }

     .nav-list {
         flex-direction: column;
         gap: 15px;
         text-align: center;
     }

     .hamburger {
         display: block;
     }

     header {
         background-color: var(--bg-dark);
         padding: 15px 0;
     }

     .footer-disclaimer {
         flex-direction: column;
         text-align: center;
     }

     .age-limit {
         margin-right: 0;
         margin-bottom: 15px;
     }
 }

 .legal-container {
     max-width: 900px;
     margin-top: 80px;
 }

 .legal-content {
     background: var(--white);
     padding: 50px 60px;
     border-radius: 12px;
     box-shadow: var(--shadow);
     border: 1px solid #e2e8f0;
 }

 .last-updated {
     font-style: italic;
     color: var(--text-light);
     margin-bottom: 30px;
     font-size: 0.95rem;
     border-bottom: 1px solid #e2e8f0;
     padding-bottom: 15px;
 }

 .legal-content h3 {
     color: var(--bg-dark);
     font-size: 1.4rem;
     margin-top: 40px;
     margin-bottom: 15px;
     position: relative;
     padding-left: 15px;
 }

 .legal-content h3::before {
     content: '';
     position: absolute;
     left: 0;
     top: 5px;
     bottom: 5px;
     width: 4px;
     background-color: var(--primary-color);
     border-radius: 4px;
 }

 .legal-content p {
     margin-bottom: 15px;
     font-size: 1.05rem;
     color: #475569;
     line-height: 1.8;
 }

 .legal-content ul {
     margin-bottom: 25px;
     padding-left: 20px;
 }

 .legal-content ul li {
     margin-bottom: 12px;
     font-size: 1.05rem;
     color: #475569;
     position: relative;
     padding-left: 25px;
     line-height: 1.7;
 }

 .legal-content ul li::before {
     content: '\f0da';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--primary-color);
 }

 .legal-content strong {
     color: var(--bg-dark);
 }


 @media (max-width: 768px) {
     .legal-content {
         padding: 30px 20px;
     }

     .legal-content h3 {
         font-size: 1.25rem;
     }
 }

 .cookie-table-wrapper {
     overflow-x: auto;
     margin: 30px 0;
     border-radius: 8px;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     border: 1px solid #e2e8f0;
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     min-width: 600px;
 }

 .cookie-table th {
     background-color: var(--bg-dark);
     color: var(--white);
     text-align: left;
     padding: 15px 20px;
     font-weight: 600;
     font-size: 1.05rem;
 }

 .cookie-table td {
     padding: 15px 20px;
     border-bottom: 1px solid #e2e8f0;
     color: #475569;
     font-size: 1rem;
     vertical-align: top;
     line-height: 1.6;
 }

 .cookie-table tbody tr:last-child td {
     border-bottom: none;
 }

 .cookie-table tbody tr:hover {
     background-color: var(--bg-light);
 }

 .cookie-table strong {
     color: var(--bg-dark);
 }


 @media (max-width: 768px) {
     .legal-content {
         padding: 30px 20px;
     }

     .legal-content h3 {
         font-size: 1.25rem;
     }

     .cookie-table th,
     .cookie-table td {
         padding: 12px 15px;
     }
 }

 .checklist-box {
     background-color: #f8fafc;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     padding: 25px;
     margin: 20px 0 30px 0;
 }

 .checklist-box ul {
     margin-bottom: 0 !important;
     padding-left: 0 !important;
 }

 .checklist-box ul li {
     list-style: none;
     padding-left: 35px !important;
     margin-bottom: 15px !important;
     color: var(--bg-dark) !important;
     font-weight: 500;
 }

 .checklist-box ul li::before {
     display: none;
 }

 .checklist-box i {
     position: absolute;
     left: 0;
     top: 3px;
     color: var(--secondary-color);
     font-size: 1.2rem;
 }


 .emergency-box {
     display: flex;
     background-color: #fef2f2;
     border-left: 5px solid #ef4444;
     border-radius: 8px;
     padding: 30px;
     margin-top: 30px;
     box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.1);
 }

 .emergency-icon {
     font-size: 3rem;
     color: #ef4444;
     margin-right: 25px;
     display: flex;
     align-items: flex-start;
     padding-top: 5px;
 }

 .emergency-details h4 {
     color: #b91c1c;
     margin-bottom: 15px;
     font-size: 1.3rem;
 }

 .emergency-details p {
     margin-bottom: 15px;
     font-size: 1rem;
     color: #450a0a;
 }

 .emergency-details p:last-child {
     margin-bottom: 0;
 }

 .emergency-details strong {
     color: #7f1d1d;
     display: block;
     margin-bottom: 2px;
 }


 @media (max-width: 768px) {
     .emergency-box {
         flex-direction: column;
         text-align: center;
         padding: 20px;
     }

     .emergency-icon {
         margin-right: 0;
         margin-bottom: 15px;
         justify-content: center;
     }

     .checklist-box {
         padding: 20px 15px;
     }
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(8px);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     opacity: 1;
     visibility: visible;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .modal-overlay.hidden {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
 }

 .modal-content {
     background-color: var(--white);
     border-radius: 12px;
     padding: 40px;
     width: 90%;
     max-width: 500px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
     position: relative;
     transform: translateY(0);
     transition: transform 0.3s ease;
 }

 .modal-overlay.hidden .modal-content {
     transform: translateY(20px);
 }


 .age-modal {
     text-align: center;
     border-top: 5px solid #ef4444;
 }

 .modal-icon i {
     font-size: 3.5rem;
     color: #ef4444;
     margin-bottom: 20px;
 }

 .age-modal h2 {
     font-size: 1.8rem;
     color: var(--bg-dark);
 }

 .age-disclaimer {
     font-size: 0.85rem;
     color: var(--text-light);
     border-top: 1px solid #e2e8f0;
     padding-top: 15px;
 }

 .btn-outline {
     background-color: transparent;
     color: var(--bg-dark);
     border: 1px solid #cbd5e1;
 }

 .btn-outline:hover {
     background-color: #f1f5f9;
     border-color: #94a3b8;
 }

 .cookie-banner {
     position: fixed;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%) translateY(150%);
     width: 90%;
     max-width: 1000px;
     background-color: var(--white);
     box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
     border: 1px solid #e2e8f0;
     border-left: 5px solid var(--primary-color);
     border-radius: 8px;
     z-index: 9998;
     padding: 25px;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .cookie-banner.show {
     transform: translateX(-50%) translateY(0);
 }

 .cookie-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
 }

 .cookie-text h3 {
     margin-bottom: 8px;
     font-size: 1.2rem;
 }

 .cookie-text p {
     font-size: 0.95rem;
     margin-bottom: 0;
     color: #475569;
 }

 .cookie-text a {
     color: var(--primary-color);
     text-decoration: underline;
 }

 .cookie-buttons {
     display: flex;
     gap: 10px;
     flex-shrink: 0;
 }


 .cookie-modal {
     padding: 0;
     overflow: hidden;
 }

 .modal-header {
     padding: 20px 30px;
     background-color: var(--bg-light);
     border-bottom: 1px solid #e2e8f0;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h2 {
     margin-bottom: 0;
     font-size: 1.4rem;
 }

 .close-btn {
     background: none;
     border: none;
     font-size: 1.2rem;
     color: var(--text-light);
     cursor: pointer;
     transition: color 0.2s;
 }

 .close-btn:hover {
     color: #ef4444;
 }

 .modal-body {
     padding: 30px;
     max-height: 60vh;
     overflow-y: auto;
 }

 .modal-footer {
     padding: 20px 30px;
     border-top: 1px solid #e2e8f0;
     background-color: var(--bg-light);
 }

 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid #e2e8f0;
 }

 .cookie-option:last-child {
     border-bottom: none;
 }

 .cookie-option-info h4 {
     margin-bottom: 5px;
     font-size: 1.05rem;
 }

 .cookie-option-info p {
     font-size: 0.85rem;
     color: var(--text-light);
     margin-bottom: 0;
 }


 .toggle-switch {
     position: relative;
     width: 50px;
     height: 26px;
     flex-shrink: 0;
 }

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

 .toggle-switch label {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #cbd5e1;
     transition: .4s;
     border-radius: 34px;
 }

 .toggle-switch label:before {
     position: absolute;
     content: "";
     height: 20px;
     width: 20px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
 }

 .toggle-switch input:checked+label {
     background-color: var(--primary-color);
 }

 .toggle-switch.disabled label {
     background-color: #94a3b8;
     cursor: not-allowed;
 }

 .toggle-switch.disabled input:checked+label {
     background-color: var(--primary-color);
     opacity: 0.6;
 }

 .toggle-switch input:checked+label:before {
     transform: translateX(24px);
 }


 @media (max-width: 992px) {
     .cookie-content {
         flex-direction: column;
         text-align: center;
     }

     .cookie-buttons {
         width: 100%;
         justify-content: center;
         flex-wrap: wrap;
     }
 }

 @media (max-width: 576px) {
     .cookie-buttons .btn {
         width: 100%;
     }

     .modal-content {
         padding: 30px 20px;
     }

     .modal-body {
         padding: 20px;
     }
 }