 :root {
     --primary-bg: #0f172a;
     --primary-light: #1e293b;
     --accent-gold: #d4af37;
     --accent-gold-hover: #b4932a;
     --text-main: #334155;
     --text-light: #94a3b8;
     --white: #ffffff;
     --bg-light: #f8fafc;
     --success: #10b981;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
     --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);
     --radius: 12px;
 }

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

 html {
     scroll-behavior: smooth;
 }

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

 h1,
 h2,
 h3,
 h4,
 h5 {
     color: var(--primary-bg);
     line-height: 1.2;
     font-weight: 700;
 }

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

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

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

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s;
 }

 .btn:active {
     transform: scale(0.98);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent-gold) 0%, #f1c40f 100%);
     color: var(--primary-bg);
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 .btn-primary:hover {
     background: linear-gradient(135deg, #f1c40f 0%, var(--accent-gold) 100%);
     box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
     transform: translateY(-2px);
 }

 .btn-secondary {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
     color: var(--white);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

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

 .btn-outline {
     border: 2px solid var(--accent-gold);
     color: var(--accent-gold);
     background: transparent;
     padding: 10px 24px;
     font-size: 0.95rem;
 }

 .btn-outline:hover {
     background: var(--accent-gold);
     color: var(--white);
 }

 .section {
     padding: 100px 0;
 }

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

 .section-header h2 {
     font-size: 2.5rem;
     margin-bottom: 16px;
     background: linear-gradient(to right, var(--primary-bg), var(--primary-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .section-intro {
     font-size: 1.125rem;
     color: var(--text-light);
 }

 .main-header {
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(10px);
     padding: 20px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

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

 .logo {
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--white);
     letter-spacing: -0.5px;
 }

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

 .main-nav a {
     color: rgba(255, 255, 255, 0.8);
     font-weight: 500;
     font-size: 0.95rem;
 }

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

 .hero-section {
     background: radial-gradient(circle at top right, #1e293b, #0f172a);
     color: var(--white);
     padding: 140px 0 80px;
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1.2fr 0.8fr;
     gap: 60px;
     align-items: center;
     margin-bottom: 60px;
 }

 .hero-text h1 {
     font-size: 3.5rem;
     margin-bottom: 24px;
     color: var(--white);
     letter-spacing: -1px;
     line-height: 1.1;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 40px;
     font-weight: 300;
     max-width: 600px;
 }

 .hero-buttons {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .hero-visual img {
     width: 100%;
     border-radius: 6px;
 }

 .abstract-icon {
     font-size: 14rem;
     color: var(--accent-gold);
     opacity: 0.1;
     filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.2));
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .hero-footer-text {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 20px;
 }

 .hero-footer-text p {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .o-nama-content {
     display: grid;
     grid-template-columns: 1.5fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .o-nama .text-block p {
     margin-bottom: 20px;
     font-size: 1.05rem;
     color: #475569;
 }

 .features-list {
     background: var(--white);
     padding: 40px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
     border: 1px solid #f1f5f9;
 }

 .features-list h3 {
     margin-bottom: 24px;
     font-size: 1.5rem;
 }

 .features-list li {
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 16px;
     font-weight: 500;
     color: var(--primary-bg);
 }

 .features-list i {
     color: var(--accent-gold);
     background: rgba(212, 175, 55, 0.1);
     padding: 10px;
     border-radius: 50%;
     font-size: 1.1rem;
 }

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

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

 .service-card {
     background: var(--bg-light);
     padding: 40px;
     border-radius: var(--radius);
     transition: all 0.3s ease;
     border: 1px solid transparent;
 }

 .service-card:hover {
     background: var(--white);
     box-shadow: var(--shadow-lg);
     border-color: #f1f5f9;
     transform: translateY(-5px);
 }

 .icon-wrapper {
     font-size: 2.5rem;
     color: var(--accent-gold);
     margin-bottom: 24px;
 }

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

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

 .zasto-mi {
     background-color: var(--primary-bg);
     color: var(--white);
     position: relative;
 }

 .zasto-mi .section-header h2 {
     color: var(--white);
     background: none;
     -webkit-text-fill-color: initial;
 }

 .zasto-mi .section-intro {
     color: rgba(255, 255, 255, 0.7);
 }

 .why-us-content {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.05);
     padding: 50px;
     border-radius: var(--radius);
 }

 .why-us-content .text-area p {
     margin-bottom: 20px;
     color: rgba(255, 255, 255, 0.9);
 }

 .why-us-content .list-area ul {
     margin-top: 40px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 20px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .why-us-content .list-area li {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 500;
 }

 .why-us-content .list-area i {
     color: var(--success);
 }

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

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

 .feature-item {
     background: var(--white);
     padding: 32px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     transition: 0.3s;
 }

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

 .feat-head {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
 }

 .feat-head i {
     font-size: 1.5rem;
     color: var(--white);
     background: var(--primary-bg);
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 12px;
 }

 .feat-head h3 {
     font-size: 1.2rem;
 }

 .top-brendovi {
     background-color: var(--white);
 }

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

 .brand-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     transition: all 0.3s ease;
     border: 1px solid #e2e8f0;
     display: flex;
     flex-direction: column;
 }

 .brand-card:hover {
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     transform: translateY(-5px);
 }

 .brand-logo {
     background: #f8fafc;
     padding: 30px;
     height: 140px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-bottom: 1px solid #e2e8f0;
 }

 .brand-logo img {
     max-height: 60px;
     filter: grayscale(100%);
     opacity: 0.7;
     transition: 0.3s;
 }

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

 .brand-info {
     padding: 30px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .brand-info h3 {
     margin-bottom: 12px;
     font-size: 1.4rem;
 }

 .brand-info p {
     color: var(--text-light);
     margin-bottom: 20px;
     font-size: 0.95rem;
 }

 .rating {
     margin-bottom: 20px;
     padding: 10px;
     background: #fffbeb;
     border-radius: 8px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .rating span {
     font-weight: 600;
     color: #b45309;
 }

 .stars {
     color: #f59e0b;
 }

 .bonus-note {
     font-size: 0.8rem !important;
     margin-top: auto;
     padding-top: 15px;
     border-top: 1px solid #f1f5f9;
 }

 .steps-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     margin-bottom: 40px;
 }

 .step {
     text-align: center;
     padding: 30px 20px;
     background: var(--white);
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     position: relative;
 }

 .step-icon {
     font-size: 2.5rem;
     color: var(--primary-bg);
     margin-bottom: 20px;
     height: 80px;
     width: 80px;
     background: #f1f5f9;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .steps-note {
     text-align: center;
     color: var(--text-light);
     font-style: italic;
 }

 .responsible-gaming {
     background-color: #fff1f2;
     border-top: 4px solid #e11d48;
 }

 .rg-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .rg-content h2 {
     color: #9f1239;
     font-size: 1.8rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
 }

 .rg-subtitle {
     color: #be123c;
     margin-bottom: 30px;
     font-weight: 600;
 }

 .rg-text p {
     color: #881337;
     margin-bottom: 15px;
 }

 .rg-alert {
     margin-top: 40px;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: #ffe4e6;
     padding: 12px 24px;
     border-radius: 50px;
     color: #9f1239;
     font-weight: 600;
 }

 .faq-section {
     background-color: var(--white);
 }

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

 .faq-item {
     background: var(--bg-light);
     margin-bottom: 20px;
     padding: 30px;
     border-radius: var(--radius);
     border: 1px solid #e2e8f0;
 }

 .faq-item h4 {
     color: var(--primary-bg);
     margin-bottom: 12px;
     font-size: 1.15rem;
 }

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

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 60px;
     background: var(--white);
     padding: 60px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
 }

 .info-item {
     display: flex;
     gap: 20px;
     margin-bottom: 30px;
 }

 .info-item i {
     font-size: 1.4rem;
     color: var(--accent-gold);
     background: #f8fafc;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
 }

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

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

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--accent-gold);
     background: var(--white);
 }



 @media (max-width: 992px) {
     .hero-content {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-text {
         padding-right: 0;
     }

     .hero-buttons {
         justify-content: center;
     }

     .o-nama-content {
         grid-template-columns: 1fr;
     }

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

 @media (max-width: 768px) {
     .section-header h2 {
         font-size: 2rem;
     }

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

     .header-container {
         flex-direction: column;
         gap: 15px;
     }

     .main-nav ul {
         flex-wrap: wrap;
         justify-content: center;
         gap: 15px;
     }

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


 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;
     }
 }

 .age-gate-overlay {
     position: fixed;
     inset: 0;
     background: rgba(15, 23, 42, 0.95);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
 }

 .age-gate-modal {
     background: #0f172a;
     border: 1px solid #d4af37;
     border-radius: 16px;
     max-width: 420px;
     width: 90%;
     padding: 24px 20px 20px;
     color: #f9fafb;
     text-align: center;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
 }

 .age-gate-badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 56px;
     height: 56px;
     border-radius: 999px;
     border: 2px solid #d4af37;
     color: #d4af37;
     font-weight: 700;
     font-size: 18px;
     margin-bottom: 12px;
 }

 .age-gate-modal h2 {
     font-size: 20px;
     margin-bottom: 10px;
 }

 .age-gate-modal p {
     font-size: 14px;
     line-height: 1.5;
     margin-bottom: 18px;
     color: #e5e7eb;
 }

 .age-gate-actions {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .age-gate-actions button {
     min-width: 140px;
     padding: 10px 16px;
     border-radius: 999px;
     border: 1px solid #d4af37;
     font-size: 14px;
     cursor: pointer;
     transition: 0.2s ease;
 }

 #ageYesBtn {
     background: #d4af37;
     color: #0f172a;
 }

 #ageYesBtn:hover {
     filter: brightness(1.05);
 }

 #ageNoBtn {
     background: transparent;
     color: #d4af37;
 }

 #ageNoBtn:hover {
     background: rgba(212, 175, 55, 0.08);
 }

 .body-age-locked {
     overflow: hidden;
 }
 
 .cookie-banner {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(15, 23, 42, 0.98);
     color: #f9fafb;
     z-index: 9998;
     padding: 14px 16px;
     display: none;
 }

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

 .cookie-text h3 {
     margin: 0 0 6px;
     font-size: 16px;
     color: #d4af37;
 }

 .cookie-text p {
     margin: 0;
     font-size: 13px;
     color: #e5e7eb;
     max-width: 520px;
 }

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

 .cookie-actions button,
 #cookieSaveSettings {
     padding: 8px 14px;
     border-radius: 999px;
     border: 1px solid #d4af37;
     background: transparent;
     color: #d4af37;
     font-size: 13px;
     cursor: pointer;
     transition: 0.2s ease;
 }

 #cookieAcceptAll {
     background: #d4af37;
     color: #0f172a;
 }

 #cookieAcceptAll:hover {
     filter: brightness(1.05);
 }

 #cookieEssentialOnly:hover,
 #cookieSettingsToggle:hover,
 #cookieSaveSettings:hover {
     background: rgba(212, 175, 55, 0.12);
 }

 .cookie-settings {
     width: 100%;
     margin-top: 8px;
     padding-top: 8px;
     border-top: 1px solid rgba(148, 163, 184, 0.5);
     display: none;
 }

 .cookie-settings p {
     font-size: 13px;
     margin: 0 0 6px;
 }

 .cookie-option {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     margin-bottom: 4px;
 }

 .cookie-option input[type="checkbox"] {
     accent-color: #d4af37;
 }
 

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

     .cookie-actions {
         width: 100%;
     }

     .age-gate-modal {
         max-width: 360px;
     }
 }

 

.page-header {
    background: var(--primary-bg);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.legal-content-section {
    padding: 60px 0;
    background: var(--white);
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}


.legal-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-menu {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
}

.sidebar-menu h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-bg);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
}

.sidebar-menu ul li {
    margin-bottom: 12px;
}

.sidebar-menu ul li a {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: 0.2s;
}

.sidebar-menu ul li a i {
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.sidebar-menu ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}


.legal-text {
    font-size: 1.05rem;
    color: #334155;
}

.legal-block {
    margin-bottom: 50px;
    scroll-margin-top: 120px; 
}

.legal-block h2 {
    font-size: 1.8rem;
    color: var(--primary-bg);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-block h3 {
    font-size: 1.3rem;
    color: var(--primary-light);
    margin: 25px 0 15px;
}

.legal-block p {
    margin-bottom: 15px;
    text-align: justify;
}

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

.legal-block ul li {
    margin-bottom: 8px;
    padding-left: 10px;
}


.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.legal-table th, 
.legal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.legal-table th {
    background: var(--bg-light);
    color: var(--primary-bg);
    font-weight: 600;
}


.alert-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.alert-box i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 3px;
}

.alert-box p {
    margin: 0;
    color: #92400e;
}


.contact-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    font-style: normal;
    border: 1px solid #e2e8f0;
}

.contact-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

.contact-card a {
    color: var(--primary-bg);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}


@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-sidebar {
        display: none; 
    }
    
    .legal-block {
        margin-bottom: 30px;
    }
}