 :root {
     --primary-color: #0f172a;
     --primary-light: #1e293b;
     --accent-color: #0ea5e9;
     --accent-hover: #0284c7;
     --gold-color: #f59e0b;
     --text-main: #334155;
     --text-light: #64748b;
     --bg-body: #f8fafc;
     --bg-white: #ffffff;
     --success: #10b981;
     --danger: #ef4444;
     --border-radius: 12px;
     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

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

 html {
     scroll-behavior: smooth;
 }

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

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Poppins', sans-serif;
     color: var(--primary-color);
     line-height: 1.3;
     font-weight: 700;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: all 0.2s ease;
 }

 ul {
     list-style: none;
 }

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


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 32px;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 1rem;
     letter-spacing: 0.5px;
     border: none;
     text-align: center;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
     color: var(--bg-white);
     box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
 }

 .btn-secondary {
     background-color: rgba(255, 255, 255, 0.15);
     color: var(--bg-white);
     backdrop-filter: blur(5px);
     margin-left: 15px;
     border: 1px solid rgba(255, 255, 255, 0.3);
 }

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


 header {
     background-color: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(12px);
     box-shadow: var(--shadow-sm);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     height: 80px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

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

 .logo {
     font-size: 1.4rem;
     font-family: 'Poppins', sans-serif;
     font-weight: 700;
     color: var(--primary-color);
     display: flex;
     align-items: center;
     gap: 12px;
 }

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

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

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

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

 .menu-toggle {
     display: none;
     font-size: 1.6rem;
     color: var(--primary-color);
     cursor: pointer;
 }


 #hero {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(21, 21, 21, 0.8)), url('../img/hero.png')center center/cover no-repeat;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--bg-white);
     padding: 120px 0 80px;
     position: relative;
     overflow: hidden;
 }


 #hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image:
         radial-gradient(at 10% 10%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
         radial-gradient(at 90% 90%, rgba(245, 158, 11, 0.1) 0px, transparent 50%);
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     width: 100%;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     margin-bottom: 24px;
     color: #fff;
     letter-spacing: -1px;
 }

 .hero-content p {
     font-size: 1.25rem;
     margin-bottom: 40px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     color: #cbd5e1;
 }

 .hero-badge {
     display: inline-block;
     margin-top: 30px;
     padding: 8px 20px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 30px;
     font-size: 0.85rem;
     font-weight: 500;
     color: #e2e8f0;
 }


 section {
     padding: 100px 0;
 }

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

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 16px;
     position: relative;
     display: inline-block;
 }

 .section-header h2::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: var(--accent-color);
     margin: 12px auto 0;
     border-radius: 2px;
 }

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


 .about-content {
     background: var(--bg-white);
     padding: 50px;
     border-radius: 24px;
     box-shadow: var(--shadow-lg);
     border: 1px solid #f1f5f9;
 }

 .about-text p {
     margin-bottom: 1.5rem;
 }


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

 .service-card {
     background: var(--bg-white);
     padding: 40px 30px;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #f1f5f9;
     transition: all 0.3s ease;
     text-align: left;
 }

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

 .service-card i {
     font-size: 2.5rem;
     color: var(--accent-color);
     margin-bottom: 24px;
     background: #e0f2fe;
     width: 70px;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 16px;
 }

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

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


 .why-us-container {
     display: flex;
     gap: 60px;
     align-items: center;
 }

 .why-us-text {
     flex: 1;
 }

 .why-us-text p {
     margin-bottom: 1.5rem;
 }

 .why-us-list {
     flex: 1;
     background: var(--primary-color);
     color: var(--bg-white);
     padding: 50px;
     border-radius: 24px;
     box-shadow: var(--shadow-lg);
     position: relative;
     overflow: hidden;
 }

 .why-us-list::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
 }

 .why-us-list li {
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     font-weight: 500;
     font-size: 1.1rem;
 }

 .why-us-list li i {
     margin-right: 15px;
     color: var(--success);
     background: rgba(255, 255, 255, 0.1);
     padding: 8px;
     border-radius: 50%;
     min-width: 32px;
     text-align: center;
 }


 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
     gap: 32px;
 }

 .feature-item {
     background: var(--bg-white);
     padding: 30px;
     border-radius: var(--border-radius);
     border: 1px solid #e2e8f0;
     transition: 0.3s;
 }

 .feature-item:hover {
     border-color: var(--accent-color);
     box-shadow: var(--shadow-md);
 }

 .feature-item h3 {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 16px;
     font-size: 1.15rem;
 }

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


 .bookmaker-card {
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     overflow: hidden;
     transition: all 0.3s ease;
     background: var(--bg-white);
     display: flex;
     flex-direction: column;
     position: relative;
 }

 .bookmaker-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
     border-color: var(--accent-color);
 }

 .bookmaker-header {
     background: #fff;
     padding: 30px 20px 10px;
     text-align: center;
     border-bottom: 1px solid #f1f5f9;
 }

 .bookmaker-logo {
     width: 140px;
     height: 60px;
     margin: 0 auto 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 800;
     border-radius: 8px;
     font-size: 1.2rem;
     box-shadow: var(--shadow-sm);
 }

 .bookmaker-logo img {
     height: 100%;
 }


 .logo-maxbet {
     background: #ef4444;
 }

 .logo-mozzart {
     background: #1e3a8a;
 }

 .logo-balkan {
     background: #f97316;
 }

 .rating {
     color: var(--gold-color);
     margin-top: 8px;
     font-size: 0.9rem;
     font-weight: 600;
     background: #fffbeb;
     display: inline-block;
     padding: 4px 12px;
     border-radius: 20px;
 }

 .rating i {
     margin-right: 2px;
 }

 .bookmaker-body {
     padding: 24px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .bonus-info {
     background: #f0f9ff;
     color: var(--accent-hover);
     padding: 12px;
     border-radius: 8px;
     margin-bottom: 20px;
     text-align: center;
     font-weight: 600;
     border: 1px dashed var(--accent-color);
     font-size: 0.9rem;
 }

 .bookmaker-features {
     list-style: none;
 }

 .bookmaker-features li {
     margin-bottom: 10px;
     font-size: 0.95rem;
     padding-left: 24px;
     position: relative;
     color: var(--text-light);
 }

 .bookmaker-features li::before {
     content: '\f00c';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--success);
     font-size: 0.8rem;
     top: 5px;
 }

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

 .bookmaker-footer .btn {
     width: 100%;
 }

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

 .disclaimer-box {
     background: #fff7ed;
     color: #9a3412;
     padding: 16px;
     margin-bottom: 40px;
     border-radius: 8px;
     text-align: center;
     font-size: 0.9rem;
     border: 1px solid #ffedd5;
 }


 .steps-container {
     display: flex;
     justify-content: space-between;
     gap: 30px;
     counter-reset: step;
 }

 .step-item {
     flex: 1;
     text-align: center;
     position: relative;
     background: white;
     padding: 30px 20px;
     border-radius: 16px;
     box-shadow: var(--shadow-sm);
     border: 1px solid #f1f5f9;
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: var(--primary-color);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     margin: 0 auto 20px;
     font-weight: 700;
     box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
 }


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

 .faq-item {
     background: white;
     border: 1px solid #e2e8f0;
     border-radius: 12px;
     margin-bottom: 16px;
     overflow: hidden;
     transition: 0.3s;
 }

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

 .faq-question {
     padding: 20px 24px;
     font-weight: 600;
     font-size: 1.1rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: transparent;
     color: var(--primary-color);
 }

 .faq-question i {
     transition: transform 0.3s;
     color: var(--accent-color);
 }

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

 .faq-answer {
     padding: 0 24px 24px;
     color: var(--text-light);
     display: none;
     border-top: 1px solid #f1f5f9;
     margin-top: 0;
     padding-top: 20px;
 }

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


 .contact-wrapper {
     display: flex;
     flex-wrap: wrap;
     gap: 60px;
 }

 .contact-info {
     flex: 1;
     min-width: 300px;
 }

 .info-card {
     background: white;
     padding: 20px;
     border-radius: 12px;
     margin-bottom: 20px;
     display: flex;
     align-items: flex-start;
     box-shadow: var(--shadow-sm);
     border: 1px solid #f1f5f9;
 }

 .info-card i {
     font-size: 1.5rem;
     color: var(--accent-color);
     margin-right: 20px;
     background: #f0f9ff;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .info-card h4 {
     margin-bottom: 4px;
     font-size: 1rem;
 }

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

 .contact-form {
     flex: 1.5;
     min-width: 300px;
     background: var(--bg-white);
     padding: 40px;
     border-radius: 24px;
     box-shadow: var(--shadow-lg);
     border: 1px solid #f1f5f9;
 }

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

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

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 14px;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-size: 1rem;
     background: #f8fafc;
     transition: 0.3s;
     font-family: 'Inter', sans-serif;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     border-color: var(--accent-color);
     background: #fff;
 }

 .form-group textarea {
     height: 140px;
     resize: vertical;
 }


 .age-gate-footer {
     display: inline-block;
     border: 2px solid #ef4444;
     color: #ef4444;
     padding: 6px 12px;
     border-radius: 50px;
     margin-bottom: 16px;
     font-weight: 800;
     font-size: 1rem;
 }


 @media (max-width: 992px) {
     .why-us-container {
         flex-direction: column;
         gap: 40px;
     }

     .steps-container {
         flex-direction: column;
     }

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

 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 80px;
         right: 0;
         height: calc(100vh - 80px);
         background: var(--bg-white);
         flex-direction: column;
         align-items: center;
         width: 100%;
         transform: translateX(100%);
         transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         padding-top: 40px;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

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

     .menu-toggle {
         display: block;
     }

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

     .btn-secondary {
         margin-left: 0;
         margin-top: 15px;
     }

     .btn {
         width: 100%;
     }

     .section-header h2 {
         font-size: 2rem;
     }

     .about-content,
     .contact-form,
     .why-us-list {
         padding: 30px 20px;
     }

     section {
         padding: 60px 0;
     }
 }


 footer {
     background: var(--text-dark);
     color: #9ca3af;
     padding: 60px 0 20px;
     font-size: 0.9rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
     padding-bottom: 40px;
     border-bottom: 1px solid #374151;
 }

 .footer-logo {
     color: var(--white);
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 20px;
     display: block;
 }

 .footer-bottom {
     text-align: center;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

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

 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: var(--white);
         flex-direction: column;
         padding: 20px;
         box-shadow: var(--shadow);
         display: none;
     }

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

     .mobile-menu-btn {
         display: block;
     }

     .header-cta {
         display: none;
     }

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

     .about-grid,
     .contact-grid,
     .features-grid {
         grid-template-columns: 1fr;
     }

     .section-title {
         font-size: 2rem;
     }
 }

 footer {
     background-color: #0a0a0a;
     padding: 60px 0 20px;
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
     padding-bottom: 40px;
     border-bottom: 1px solid #222;
 }

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

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

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

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
 }

 .legal-badge {
     display: inline-block;
     border: 1px solid #444;
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 0.8rem;
     margin-top: 10px;
 }

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

     .nav-links {
         display: none;
     }

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

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

 .sr-footer {
     background: #0b1017;
     color: #f4f4f4;
     font-size: 14px;
     line-height: 1.6;
     padding: 40px 20px 24px;
 }

 .sr-footer a {
     color: #f3cf55;
     text-decoration: none;
 }

 .sr-footer a:hover {
     text-decoration: underline;
 }

 .sr-footer-inner {
     max-width: 1200px;
     margin: 0 auto;
 }

 .sr-footer-top {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 24px;
     margin-bottom: 32px;
 }

 .sr-footer-brand {
     max-width: 520px;
 }

 .sr-footer-logo {
     display: inline-block;
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .sr-footer-brand-text {
     margin: 0;
     opacity: 0.9;
 }

 .sr-footer-badges {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 12px;
 }

 .sr-badge {
     min-height: 52px;
     border-radius: 999px;
     border: 1px solid rgba(243, 207, 85, 0.4);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(5, 8, 15, 0.7);
 }

 .sr-badge img {
     height: 60px;
     display: block;
 }

 .sr-badge-18 {
     background: #c0392b;
     border-color: #c0392b;
     color: #ffffff;
     font-weight: 700;
     font-size: 18px;
 }



 .sr-footer-columns {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 24px;
     padding-top: 12px;
     padding-bottom: 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .sr-footer-col h4 {
     font-size: 15px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 8px;
 }

 .sr-footer-col p {
     margin: 0 0 8px;
     opacity: 0.9;
 }

 .sr-footer-nav {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .sr-footer-nav li {
     margin-bottom: 6px;
 }

 .sr-footer-nav a {
     font-size: 14px;
 }



 .sr-footer-bottom {
     margin-top: 18px;
 }

 .sr-footer-disclaimer {
     margin: 0 0 10px;
     font-size: 13px;
     opacity: 0.9;
 }

 .sr-footer-copy {
     margin: 0 0 6px;
     font-size: 13px;
     opacity: 0.85;
 }

 .sr-footer-en {
     margin: 0;
     font-size: 12px;
     opacity: 0.75;
 }



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

 @media (max-width: 640px) {
     .sr-footer-top {
         flex-direction: column;
     }

     .sr-footer-columns {
         grid-template-columns: 1fr;
     }

     .sr-footer {
         padding: 28px 16px 20px;
     }
 }

 .legal-page-wrapper {
     padding-top: 140px;
     padding-bottom: 80px;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 .legal-content {
     background: var(--bg-white);
     padding: 60px;
     border-radius: 24px;
     box-shadow: var(--shadow-sm);
     border: 1px solid #e2e8f0;
     max-width: 900px;
     margin: 0 auto;
 }

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

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

 .legal-content h2 {
     font-size: 1.5rem;
     margin-top: 40px;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid #f1f5f9;
 }

 .legal-content p {
     margin-bottom: 20px;
     color: var(--text-main);
 }

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

 .legal-content li {
     margin-bottom: 10px;
     color: var(--text-main);
 }

 .legal-content a {
     color: var(--accent-color);
     font-weight: 500;
     text-decoration: underline;
     text-decoration-color: transparent;
 }

 .legal-content a:hover {
     text-decoration-color: var(--accent-color);
 }

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

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

 .alert-box {
     background-color: #fef2f2;
     border: 1px solid #fee2e2;
     color: #991b1b;
     padding: 20px;
     border-radius: 12px;
     margin: 30px 0;
     display: flex;
     gap: 15px;
     align-items: flex-start;
 }

 .alert-box i {
     font-size: 1.5rem;
     color: var(--danger);
     margin-top: 3px;
 }

 .help-box {
     background-color: #f0f9ff;
     border: 1px solid #e0f2fe;
     padding: 25px;
     border-radius: 12px;
     margin-top: 20px;
 }

 .help-box h3 {
     margin-bottom: 15px;
     color: var(--primary-color);
     font-size: 1.2rem;
 }

 #age-overlay {
     position: fixed;
     inset: 0;
     background: rgba(15, 23, 42, 0.96);
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 24px;
     z-index: 99999;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 }

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

 .age-overlay-box {
     max-width: 480px;
     width: 100%;
     background: #0f172a;
     border-radius: 16px;
     padding: 24px 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
     text-align: center;
     border: 1px solid rgba(14, 165, 233, 0.5);
 }

 .age-overlay-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 12px;
 }

 .age-overlay-text {
     font-size: 0.95rem;
     line-height: 1.6;
     opacity: 0.9;
     margin-bottom: 20px;
 }

 .age-overlay-note {
     font-size: 0.8rem;
     opacity: 0.8;
     margin-top: 12px;
 }

 .age-overlay-buttons {
     display: flex;
     gap: 12px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-age-primary,
 .btn-age-secondary {
     padding: 10px 18px;
     border-radius: 999px;
     border: 1px solid transparent;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
 }

 .btn-age-primary {
     background-color: #0ea5e9;
     color: #0f172a;
 }

 .btn-age-primary:hover {
     transform: translateY(-1px);
     background-color: #38bdf8;
 }

 .btn-age-secondary {
     background-color: transparent;
     color: #e5e7eb;
     border-color: rgba(148, 163, 184, 0.8);
 }

 .btn-age-secondary:hover {
     border-color: #0ea5e9;
     color: #0ea5e9;
 }

 #cookie-banner {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #0f172a;
     color: #f9fafb;
     padding: 14px 18px;
     display: none;
     z-index: 99990;
     box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 }

 .cookie-banner-inner {
     max-width: 1120px;
     margin: 0 auto;
     display: flex;
     gap: 16px;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
 }

 .cookie-banner-text {
     display: flex;
     align-items: center;
     gap: 10px;
     min-width: 220px;
     flex: 1 1 260px;
     font-size: 0.9rem;
     line-height: 1.5;
 }

 .cookie-icon {
     width: 34px;
     height: 34px;
     border-radius: 999px;
     background: rgba(15, 23, 42, 0.8);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(148, 163, 184, 0.6);
 }

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

 .btn-cookie-primary,
 .btn-cookie-secondary {
     padding: 8px 16px;
     border-radius: 999px;
     border: 1px solid transparent;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
 }

 .btn-cookie-primary {
     background-color: #0ea5e9;
     color: #0f172a;
 }

 .btn-cookie-primary:hover {
     background-color: #38bdf8;
     transform: translateY(-1px);
 }

 .btn-cookie-secondary {
     background-color: transparent;
     color: #e5e7eb;
     border-color: rgba(148, 163, 184, 0.8);
 }

 .btn-cookie-secondary:hover {
     border-color: #0ea5e9;
     color: #0ea5e9;
 }

 #cookie-settings {
     position: fixed;
     right: 18px;
     bottom: 84px;
     max-width: 360px;
     width: 100%;
     background-color: #0f172a;
     color: #f9fafb;
     border-radius: 16px;
     border: 1px solid rgba(14, 165, 233, 0.6);
     padding: 18px 16px;
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
     z-index: 99991;
     display: none;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 }

 .cookie-settings-title {
     font-size: 1rem;
     font-weight: 700;
     margin-bottom: 4px;
 }

 .cookie-settings-subtitle {
     font-size: 0.85rem;
     opacity: 0.85;
     margin-bottom: 14px;
 }

 .cookie-settings-group {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 16px;
 }

 .cookie-settings-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
 }

 .cookie-settings-label {
     flex: 1;
 }

 .cookie-settings-label-title {
     font-size: 0.9rem;
     font-weight: 600;
 }

 .cookie-settings-label-text {
     font-size: 0.8rem;
     opacity: 0.9;
     margin-top: 2px;
 }

 .cookie-switch,
 .cookie-switch-disabled {
     margin-top: 3px;
 }

 .cookie-switch input {
     width: 16px;
     height: 16px;
     accent-color: #0ea5e9;
 }

 .cookie-switch-disabled {
     font-size: 0.8rem;
     opacity: 0.6;
 }

 .cookie-settings-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
 }

 .cookie-settings-links {
     font-size: 0.78rem;
     opacity: 0.9;
 }

 .cookie-settings-links a {
     color: #0ea5e9;
     text-decoration: none;
 }

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

 .cookie-settings-actions {
     display: flex;
     gap: 8px;
 }

 .btn-cookie-save,
 .btn-cookie-accept-all {
     padding: 7px 14px;
     border-radius: 999px;
     border: 1px solid transparent;
     font-size: 0.85rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
 }

 .btn-cookie-save {
     background-color: transparent;
     color: #e5e7eb;
     border-color: rgba(148, 163, 184, 0.7);
 }

 .btn-cookie-save:hover {
     border-color: #0ea5e9;
     color: #0ea5e9;
 }

 .btn-cookie-accept-all {
     background-color: #0ea5e9;
     color: #0f172a;
 }

 .btn-cookie-accept-all:hover {
     background-color: #38bdf8;
     transform: translateY(-1px);
 }

 @media (max-width: 640px) {
     .cookie-banner-inner {
         align-items: flex-start;
     }

     #cookie-settings {
         right: 12px;
         left: 12px;
         bottom: 90px;
         max-width: none;
     }
 }