 :root {

     --primary-color: #1e293b;
     --primary-dark: #0f172a;
     --secondary-color: #2563eb;
     --secondary-hover: #1d4ed8;
     --accent-color: #f59e0b;
     --accent-hover: #d97706;


     --text-main: #334155;
     --text-light: #64748b;
     --bg-body: #ffffff;
     --bg-light: #f8fafc;
     --white: #ffffff;


     --danger: #ef4444;
     --success: #10b981;


     --border-radius: 12px;
     --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
     --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

     --container-width: 1240px;
     --header-height: 80px;
 }

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

 html {
     scroll-behavior: smooth;
     font-size: 16px;
 }

 body {
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     line-height: 1.6;
     color: var(--text-main);
     background-color: var(--bg-body);
     -webkit-font-smoothing: antialiased;
 }

 .container {
     width: 90%;
     max-width: var(--container-width);
     margin: 0 auto;
 }

 .section-padding {
     padding: 80px 0;
 }

 .bg-light {
     background-color: var(--bg-light);
     border-top: 1px solid #e2e8f0;
     border-bottom: 1px solid #e2e8f0;
 }

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

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

 .text-muted {
     color: var(--text-light);
     font-size: 0.875rem;
 }

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

 h2 {
     font-size: 2.25rem;
     letter-spacing: -0.025em;
 }

 h3 {
     font-size: 1.5rem;
 }

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

 ul {
     list-style: none;
 }


 .skip-link {
     position: absolute;
     top: -100px;
     left: 20px;
     background: var(--secondary-color);
     color: var(--white);
     padding: 1rem 1.5rem;
     z-index: 2000;
     border-radius: 0 0 8px 8px;
     font-weight: bold;
     transition: top 0.3s;
 }

 .skip-link:focus {
     top: 0;
 }

 header {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     height: var(--header-height);
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
 }

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

 .logo a {
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--primary-color);
     letter-spacing: -1px;
     text-transform: uppercase;
 }

 .logo .highlight {
     color: var(--secondary-color);
 }

 .main-nav ul {
     display: flex;
     gap: 32px;
 }

 .main-nav a {
     font-weight: 600;
     font-size: 0.95rem;
     color: var(--primary-color);
     position: relative;
     padding: 5px 0;
 }

 .main-nav a:hover,
 .main-nav a.active {
     color: var(--secondary-color);
 }


 .main-nav a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--secondary-color);
     transition: width 0.3s ease;
 }

 .main-nav a:hover::after,
 .main-nav a.active::after {
     width: 100%;
 }

 .mobile-toggle {
     display: none;
     background: transparent;
     border: none;
     font-size: 1.5rem;
     color: var(--primary-color);
     cursor: pointer;
     padding: 10px;
 }

 .hero-section {
     position: relative;
     height: 100vh;
     min-height: 700px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background: url('../img/hero.png') no-repeat center center/cover;

     padding-top: var(--header-height);
 }


 .hero-bg-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     color: var(--white);
     max-width: 900px;
     animation: fadeInUp 0.8s ease-out;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--white);
     margin-bottom: 1.5rem;
     line-height: 1.1;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.25rem;
     margin-bottom: 2.5rem;
     opacity: 0.9;
     font-weight: 400;
 }

 .trust-badges {
     display: flex;
     justify-content: center;
     gap: 15px;
     flex-wrap: wrap;
     margin-bottom: 2.5rem;
 }

 .badge {
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 16px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     border: 1px solid rgba(255, 255, 255, 0.3);
     backdrop-filter: blur(4px);
     display: flex;
     align-items: center;
     gap: 8px;
 }


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 16px 32px;
     border-radius: 8px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent-color) 0%, #f57f0b 100%);
     color: var(--white);
     box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
 }

 .btn-outline {
     background: transparent;
     color: var(--white);
     border: 2px solid rgba(255, 255, 255, 0.8);
     margin-left: 15px;
 }

 .btn-outline:hover {
     background: var(--white);
     color: var(--primary-dark);
     border-color: var(--white);
 }

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

 .btn-secondary:hover {
     background: var(--secondary-hover);
     box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
 }

 .age-restriction {
     margin-top: 2rem;
     opacity: 0.7;
     font-size: 0.85rem;
 }

 .section-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 60px;
 }

 .section-subtext {
     color: var(--text-light);
     font-size: 1.15rem;
     margin-top: 10px;
 }


 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: var(--border-radius);
     border: 1px solid #f1f5f9;
     box-shadow: var(--card-shadow);
     text-align: center;
     transition: var(--transition);
 }

 .service-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--hover-shadow);
     border-color: var(--secondary-color);
 }

 .service-card i {
     font-size: 3rem;
     background: linear-gradient(135deg, var(--secondary-color), #60a5fa);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 25px;
     display: inline-block;
 }

 .service-card h3 {
     margin-bottom: 15px;
     font-size: 1.25rem;
 }


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

 .step-card {
     position: relative;
     padding: 0 10px;
 }

 .step-number {
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     color: var(--white);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 1.2rem;
     margin-bottom: 20px;
     box-shadow: 0 4px 10px rgba(30, 41, 59, 0.2);
 }

 .bookmakers-list {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .bookmaker-card {
     background: var(--white);
     border: 1px solid #e2e8f0;
     border-radius: var(--border-radius);
     padding: 25px 30px;
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 30px;
     box-shadow: var(--card-shadow);
     transition: var(--transition);
 }

 .bookmaker-card:hover {
     transform: translateY(-3px);
     box-shadow: var(--hover-shadow);
     border-color: #cbd5e1;
 }

 .bm-logo {
     flex: 0 0 120px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .bm-logo img {
     max-width: 100%;
     height: auto;
     filter: grayscale(100%);
     transition: var(--transition);
     opacity: 0.8;
 }

 .bookmaker-card:hover .bm-logo img {
     filter: grayscale(0%);
     opacity: 1;
 }

 .bm-info {
     flex: 1;
     min-width: 280px;
 }

 .rating {
     color: var(--accent-color);
     margin-bottom: 8px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .rating span {
     color: var(--text-main);
     background: #fffbeb;
     padding: 2px 8px;
     border-radius: 4px;
     font-size: 0.8rem;
 }

 .bonus-info {
     background: #eff6ff;
     padding: 10px 15px;
     border-radius: 6px;
     border-left: 4px solid var(--secondary-color);
     margin-bottom: 12px;
     font-size: 0.95rem;
 }

 .payment-methods-mini {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
 }

 .payment-methods-mini span {
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 0.75rem;
     font-weight: 600;
     color: var(--text-light);
 }

 .bm-actions {
     display: flex;
     flex-direction: column;
     gap: 12px;
     min-width: 200px;
     text-align: center;
 }

 .full-width {
     width: 100%;
 }

 .btn-text {
     font-size: 0.9rem;
     color: var(--text-light);
     font-weight: 500;
 }

 .btn-text:hover {
     color: var(--secondary-color);
 }

 .payment-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 40px;
 }

 .payment-item {
     text-align: center;
     color: #94a3b8;
     transition: var(--transition);
 }

 .payment-item:hover {
     color: var(--primary-color);
     transform: scale(1.1);
 }

 .payment-item span {
     display: block;
     margin-top: 8px;
     font-size: 0.85rem;
     font-weight: 500;
 }

 .accordion {
     max-width: 800px;
     margin: 0 auto;
     background: var(--white);
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     overflow: hidden;
 }

 .accordion-item {
     border-bottom: 1px solid #f1f5f9;
 }

 .accordion-item:last-child {
     border-bottom: none;
 }

 .accordion-header {
     width: 100%;
     padding: 24px;
     background: var(--white);
     border: none;
     text-align: left;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--primary-color);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background 0.2s;
 }

 .accordion-header:hover {
     background: #f8fafc;
 }

 .accordion-header.active {
     color: var(--secondary-color);
     background: #eff6ff;
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     background: var(--white);
 }

 .accordion-content p {
     padding: 0 24px 24px;
     color: var(--text-light);
     line-height: 1.7;
 }

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .contact-form {
     background: var(--white);
     padding: 40px;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
 }

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

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     font-size: 0.9rem;
     color: var(--primary-color);
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-family: inherit;
     font-size: 1rem;
     transition: var(--transition);
     background: #f8fafc;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--secondary-color);
     background: var(--white);
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
 }

 .contact-info h3 {
     margin-bottom: 1.5rem;
 }

 .contact-info h4 {
     margin-top: 2rem;
     margin-bottom: 1rem;
     font-size: 1.1rem;
 }

 .address-list li {
     margin-bottom: 16px;
     display: flex;
     gap: 15px;
     align-items: flex-start;
     color: var(--text-light);
 }

 .address-list li i {
     color: var(--secondary-color);
     margin-top: 4px;
 }

 .rg-section {
     background: #fef2f2;
     border-top: 1px solid #fecaca;
     padding: 50px 0;
 }

 .rg-content {
     display: flex;
     align-items: center;
     gap: 30px;
     background: var(--white);
     padding: 30px;
     border-radius: var(--border-radius);
     border: 1px solid #fee2e2;
 }

 .rg-icon {
     font-size: 3.5rem;
     color: var(--danger);
     opacity: 0.8;
 }

 .rg-text h2 {
     color: #991b1b;
     font-size: 1.5rem;
     margin-bottom: 10px;
 }

 .rg-text p {
     font-size: 0.95rem;
     margin-bottom: 10px;
 }

 .rg-badge {
     background: var(--danger);
     color: var(--white);
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 900;
     font-size: 1.2rem;
     flex-shrink: 0;
     box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
     margin-left: auto;
 }


 footer {
     background: var(--primary-dark);
     color: #94a3b8;
     padding: 80px 0 30px;
     font-size: 0.95rem;
 }

 .footer-col h4 {
     color: var(--white);
     margin-bottom: 24px;
     font-size: 1.1rem;
 }

 .footer-col ul li {
     margin-bottom: 12px;
 }

 .footer-col a:hover {
     color: var(--secondary-color);
     text-decoration: underline;
 }

 .footer-bottom {
     margin-top: 60px;
     text-align: center;
     border-top: 1px solid #334155;
     padding-top: 30px;
     font-size: 0.85rem;
     opacity: 0.7;
 }


 #back-to-top {
     position: fixed;
     bottom: 40px;
     right: 40px;
     background: var(--secondary-color);
     color: var(--white);
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.3s;
     box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
     z-index: 900;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
 }

 #back-to-top.show {
     opacity: 1;
     transform: translateY(0);
     pointer-events: all;
 }

 #back-to-top:hover {
     background: var(--secondary-hover);
     transform: translateY(-3px);
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 40px, 0);
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0);
     }
 }

 @media (max-width: 992px) {
     :root {
         --container-width: 100%;
     }

     h1 {
         font-size: 2.5rem;
     }

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

     .bookmaker-card {
         flex-direction: column;
         align-items: stretch;
         text-align: center;
     }

     .bm-logo {
         margin: 0 auto;
     }

     .rating {
         justify-content: center;
     }

     .payment-methods-mini {
         justify-content: center;
     }

     .rg-content {
         flex-direction: column;
         text-align: center;
     }

     .rg-badge {
         margin: 20px auto 0;
     }
 }

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

     .main-nav {
         position: absolute;
         top: var(--header-height);
         left: 0;
         width: 100%;
         background: var(--white);
         box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.4s ease-out;
         border-top: 1px solid #f1f5f9;
     }

     .main-nav.active {
         max-height: 500px;
     }

     .main-nav ul {
         flex-direction: column;
         gap: 0;
         padding: 0;
     }

     .main-nav a {
         display: block;
         padding: 15px 20px;
         border-bottom: 1px solid #f1f5f9;
         width: 100%;
     }

     .main-nav a::after {
         display: none;
     }

     .main-nav a:hover {
         background: #f8fafc;
     }

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

     .hero-cta {
         display: flex;
         flex-direction: column;
         gap: 15px;
         align-items: center;
     }

     .btn-outline {
         margin-left: 0;
     }

     .service-card {
         padding: 30px 20px;
     }
 }


 #bonuses .service-card i {
     background: linear-gradient(135deg, var(--accent-color), #fcd34d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }


 .alert-box {
     background-color: #fffbeb;
     border-left: 4px solid var(--accent-color);
     border-radius: 8px;
     padding: 20px 25px;
     margin-top: 40px;
     display: flex;
     align-items: flex-start;
     gap: 20px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
     transition: var(--transition);
 }

 .alert-box:hover {
     background-color: #fef3c7;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
 }

 .alert-icon i {
     font-size: 1.5rem;
     color: var(--accent-color);
     margin-top: 2px;
 }

 .alert-content p {
     margin: 0;
     font-size: 0.95rem;
     color: var(--text-main);
     line-height: 1.5;
 }

 .alert-content strong {
     color: var(--primary-color);
 }

 footer {
     background-color: var(--primary-dark);
     color: #94a3b8;
     padding: 80px 0 30px;
     font-size: 0.95rem;
     position: relative;
     z-index: 10;
 }


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


 .footer-col h4 {
     color: var(--white);
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 25px;
     position: relative;
     display: inline-block;
     padding-bottom: 12px;
 }


 .footer-col h4::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 3px;
     background: var(--secondary-color);
     border-radius: 2px;
 }


 .footer-col ul {
     margin: 0;
     padding: 0;
 }

 .footer-col ul li {
     margin-bottom: 14px;
 }


 .footer-col ul li a {
     color: #cbd5e1;
     transition: all 0.3s ease;
     display: inline-block;
     position: relative;
 }

 .footer-col ul li a:hover {
     color: var(--accent-color);
     transform: translateX(8px);
 }


 .footer-col ul li a:hover::before {
     content: '›';
     position: absolute;
     left: -12px;
     top: 0;
     font-weight: bold;
     color: var(--accent-color);
 }


 .footer-col p {
     line-height: 1.8;
     max-width: 300px;
     margin-bottom: 20px;
 }


 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     text-align: center;
     font-size: 0.85rem;
     color: #64748b;
 }

 .footer-bottom p {
     margin: 0;
 }


 @media (max-width: 768px) {
     footer {
         padding: 60px 0 30px;
         text-align: center;
     }

     .footer-col h4::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .footer-col p {
         margin: 0 auto 20px;
     }


     .footer-col ul li a:hover {
         transform: translateX(0);
     }

     .footer-col ul li a:hover::before {
         content: none;
     }
 }

 .legal-page-wrapper {
     padding-top: calc(var(--header-height) + 60px);
     padding-bottom: 80px;
     background-color: #f8fafc;
     min-height: 100vh;
 }

 .legal-content {
     background: var(--white);
     padding: 60px;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     max-width: 900px;
     margin: 0 auto;
 }


 .legal-content h1 {
     font-size: 2.5rem;
     margin-bottom: 10px;
     color: var(--primary-color);
     text-align: center;
 }

 .last-updated {
     text-align: center;
     color: var(--text-light);
     font-style: italic;
     margin-bottom: 50px;
     display: block;
     border-bottom: 1px solid #e2e8f0;
     padding-bottom: 30px;
 }

 .legal-content section {
     margin-bottom: 40px;
 }

 .legal-content h2 {
     font-size: 1.5rem;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid #f1f5f9;
     color: var(--primary-dark);
 }

 .legal-content h3 {
     font-size: 1.15rem;
     margin-top: 25px;
     margin-bottom: 15px;
     color: var(--secondary-color);
 }

 .legal-content p {
     margin-bottom: 16px;
     line-height: 1.8;
     color: #475569;
 }

 .legal-content ul {
     list-style: disc;
     margin-left: 20px;
     margin-bottom: 20px;
 }

 .legal-content ul li {
     margin-bottom: 10px;
     color: #475569;
     padding-left: 10px;
 }

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

 .legal-content a {
     color: var(--secondary-color);
     text-decoration: underline;
 }

 .legal-content a:hover {
     color: var(--secondary-hover);
 }

 .legal-footer-contact {
     margin-top: 50px;
     padding-top: 30px;
     border-top: 1px solid #e2e8f0;
     text-align: center;
 }


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

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

     .legal-content h2 {
         font-size: 1.3rem;
     }
 }


 .age-gate-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(10px);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

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

 .age-gate-card {
     background: var(--white);
     padding: 40px;
     border-radius: 16px;
     max-width: 500px;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border: 1px solid #e2e8f0;
 }

 .age-icon {
     margin-bottom: 20px;
 }

 .plus-18 {
     background: var(--danger);
     color: var(--white);
     font-size: 1.5rem;
     font-weight: 800;
     padding: 10px 15px;
     border-radius: 50%;
     display: inline-block;
     box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
 }

 .age-gate-card h2 {
     font-size: 1.8rem;
     color: var(--primary-color);
     margin-bottom: 15px;
 }

 .warning-text {
     color: var(--text-light);
     margin-bottom: 30px;
     border-top: 1px solid #e2e8f0;
     padding-top: 15px;
     margin-top: 15px;
 }

 .age-actions {
     display: flex;
     gap: 15px;
     justify-content: center;
 }


 .btn-outline-dark {
     background: transparent;
     border: 2px solid #cbd5e1;
     color: var(--primary-color);
     padding: 12px 24px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
 }

 .btn-outline-dark:hover {
     border-color: var(--primary-color);
     background: #f1f5f9;
 }


 body.no-scroll {
     overflow: hidden;
 }


 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--white);
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
     z-index: 9000;
     padding: 20px 0;
     border-top: 1px solid #e2e8f0;
     transform: translateY(0);
     transition: transform 0.3s ease;
 }

 .cookie-banner.hidden {
     transform: translateY(100%);
 }

 .cookie-content {
     width: 90%;
     max-width: var(--container-width);
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
 }

 .cookie-text h3 {
     font-size: 1.1rem;
     margin-bottom: 5px;
     color: var(--primary-color);
 }

 .cookie-text p {
     font-size: 0.9rem;
     margin: 0;
     color: var(--text-light);
 }

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

 .btn-sm {
     padding: 8px 16px;
     font-size: 0.9rem;
 }


 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(5px);
     z-index: 9100;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
     visibility: visible;
     transition: all 0.3s;
 }

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

 .modal-card {
     background: var(--white);
     width: 90%;
     max-width: 500px;
     border-radius: 12px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     overflow: hidden;
 }

 .modal-header {
     padding: 20px;
     border-bottom: 1px solid #e2e8f0;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     margin: 0;
     font-size: 1.2rem;
 }

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

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

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

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

 .option-info strong {
     display: block;
     margin-bottom: 4px;
     color: var(--primary-color);
 }

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


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

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

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

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

 input:checked+.slider {
     background-color: var(--secondary-color);
 }

 input:checked+.slider:before {
     transform: translateX(24px);
 }


 .slider.locked {
     opacity: 0.6;
     cursor: not-allowed;
     background-color: var(--secondary-color);
 }

 .slider.locked:before {
     transform: translateX(24px);
 }

 .modal-footer {
     padding: 20px;
     border-top: 1px solid #e2e8f0;
     background: #f8fafc;
 }


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

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

     .age-actions {
         flex-direction: column;
     }

     .age-actions button,
     .age-actions a {
         width: 100%;
         text-align: center;
     }
 }