 :root {

     --primary-dark: #0f172a;
     --primary-light: #1e293b;
     --secondary-blue: #3b82f6;


     --accent-gold: #f59e0b;
     --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
     --accent-glow: rgba(245, 158, 11, 0.4);


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


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


     --radius: 12px;
     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
     --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
     --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

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

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

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

 ul {
     list-style: none;
 }

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

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

 .section-title {
     text-align: center;
     font-size: 2.25rem;
     margin-bottom: 0.5rem;
     position: relative;
     width: 100%;
 }

 .section-desc {
     text-align: center;
     color: var(--text-muted);
     font-size: 1.1rem;
     margin-bottom: 3.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .highlight {
     color: var(--accent-gold);
 }

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

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

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

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

 .section {
     padding: 100px 0;
 }

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


 .section:not(.bg-light):not(.hero):not(.bg-dark):not(.trust-bar) {
     background-color: var(--white);
 }

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

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

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     letter-spacing: 0.02em;
 }

 .btn-primary {
     background: var(--accent-gradient);
     color: var(--white);
     box-shadow: 0 4px 15px var(--accent-glow);
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px var(--accent-glow);
     background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
 }

 .btn-outline {
     background-color: rgba(255, 255, 255, 0.1);
     border: 2px solid rgba(255, 255, 255, 0.3);
     color: var(--white);
     backdrop-filter: blur(4px);
 }

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

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

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

 .btn-text {
     color: var(--secondary-blue);
     font-weight: 600;
     padding: 0;
     background: none;
 }

 .btn-text:hover {
     color: var(--primary-dark);
     transform: translateX(5px);
 }

 .full-width {
     width: 100%;
 }

 .header {
     background-color: rgba(15, 23, 42, 0.95);
     color: var(--white);
     padding: 1rem 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

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

 .logo {
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--white);
     letter-spacing: -0.03em;
 }

 .nav-menu {
     display: flex;
     gap: 30px;
 }

 .nav-link {
     color: #cbd5e1;
     font-size: 0.95rem;
     font-weight: 500;
     position: relative;
     padding: 5px 0;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--accent-gold);
     transition: var(--transition);
 }

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

 .nav-link:hover,
 .nav-link.active {
     color: var(--white);
 }


 .hamburger {
     display: none;
     cursor: pointer;
     z-index: 1002;
 }

 .bar {
     display: block;
     width: 26px;
     height: 3px;
     margin: 5px auto;
     background-color: var(--white);
     transition: var(--transition);
     border-radius: 2px;
 }

 .hamburger.active .bar:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active .bar:nth-child(1) {
     transform: translateY(8px) rotate(45deg);
 }

 .hamburger.active .bar:nth-child(3) {
     transform: translateY(-8px) rotate(-45deg);
 }

 /* =========================================
   7. HERO SECTION
   ========================================= */
 .hero {
     position: relative;
     height: 85vh;
     min-height: 600px;

     background-image: url('../img/hero.png');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--white);
     background-color: var(--primary-dark);
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;

     background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.95) 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 850px;
     padding: 0 20px;
 }

 .hero h1 {
     font-size: 3.5rem;
     color: var(--white);
     margin-bottom: 1.5rem;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     letter-spacing: -0.02em;
 }

 .hero-subtitle {
     font-size: 1.35rem;
     margin-bottom: 2.5rem;
     color: #e2e8f0;
     line-height: 1.6;
     font-weight: 300;
 }

 .hero-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 2.5rem;
 }

 .hero-compliance {
     font-size: 0.9rem;
     opacity: 0.8;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(0, 0, 0, 0.3);
     padding: 8px 16px;
     border-radius: 20px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .trust-bar {
     background-color: var(--white);
     padding: 2.5rem 0;
     border-bottom: 1px solid #f1f5f9;
     position: relative;
     z-index: 10;
 }

 .trust-grid {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 20px;
 }

 .trust-item {
     display: flex;
     align-items: center;
     gap: 12px;
     color: var(--primary-light);
     font-weight: 600;
 }

 .trust-item i {
     font-size: 1.25rem;
     color: var(--accent-gold);
     background: rgba(245, 158, 11, 0.1);
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

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

 .casino-card {
     background: var(--white);
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow-card);
     transition: var(--transition);
     border: 1px solid rgba(226, 232, 240, 0.8);
     display: flex;
     flex-direction: column;
 }

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

 .card-header {
     padding: 25px;
     background: linear-gradient(to right, #f8fafc, #ffffff);
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #f1f5f9;
 }

 .card-logo {
     max-height: 45px;
     max-width: 140px;
     object-fit: contain;
 }

 .rating {
     text-align: right;
 }

 .score {
     font-weight: 800;
     color: var(--primary-dark);
     font-size: 1.5rem;
     line-height: 1;
 }

 .stars {
     color: var(--accent-gold);
     font-size: 0.85rem;
     margin-top: 4px;
 }

 .card-body {
     padding: 25px;
     flex-grow: 1;
 }

 .features-list li {
     margin-bottom: 12px;
     font-size: 0.95rem;
     display: flex;
     align-items: flex-start;
     gap: 10px;
 }

 .features-list i {
     color: var(--success);
     margin-top: 4px;
     flex-shrink: 0;
 }

 .payments {
     display: flex;
     gap: 12px;
     margin: 20px 0 10px;
     flex-wrap: wrap;
 }

 .payments img {
     height: 24px;
     opacity: 0.6;
     transition: var(--transition);
 }

 .payments img:hover {
     opacity: 1;
 }

 .disclaimer-mini {
     font-size: 0.7rem;
     color: #94a3b8;
     margin-top: 15px;
     font-style: italic;
 }

 .card-footer {
     padding: 20px 25px 25px;
     background-color: var(--white);
     display: flex;
     flex-direction: column;
     gap: 15px;
     border-top: 1px solid #f1f5f9;
 }

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

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

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

 .step h3 {
     margin-bottom: 15px;
 }

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

 .service-card {
     background: var(--white);
     padding: 35px 25px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     text-align: center;
     transition: var(--transition);
     border: 1px solid transparent;
 }

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

 .service-card i {
     font-size: 2.5rem;
     color: var(--secondary-blue);
     margin-bottom: 1.5rem;
     display: inline-block;
 }


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

 .review-card {
     background: var(--white);
     padding: 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #f1f5f9;
     border-left: 4px solid var(--accent-gold);
 }

 .review-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 20px;
 }

 .avatar {
     width: 48px;
     height: 48px;
     background: linear-gradient(135deg, #3b82f6, #2563eb);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
     box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
 }

 .stars-sm {
     color: var(--accent-gold);
     font-size: 0.8rem;
 }

 .review-card p {
     font-style: italic;
     color: #475569;
 }

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

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

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

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

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

 .accordion-header i {
     color: var(--accent-gold);
     transition: transform 0.3s ease;
 }

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

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

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
     background-color: #f8fafc;
 }

 .accordion-content p {
     padding: 0 24px 24px;
     color: var(--text-main);
 }

 .section-dark {
     position: relative;
     overflow: hidden;
 }

 .max-w-600 {
     max-width: 600px;
     margin: 0 auto 20px;
 }

 .responsible-resources {
     background: rgba(255, 255, 255, 0.05);
     padding: 30px;
     border-radius: var(--radius);
     margin: 30px 0;
     display: inline-block;
     text-align: left;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .responsible-resources ul li {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .age-limit {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
 }

 .badge-18 {
     background: var(--danger);
     color: var(--white);
     padding: 6px 12px;
     border-radius: 6px;
     font-weight: 800;
     font-size: 1.1rem;
 }

 #kontakt-cta.bg-primary {
     background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
 }

 .cta-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .newsletter-form {
     display: flex;
     gap: 10px;
     background: rgba(255, 255, 255, 0.1);
     padding: 10px;
     border-radius: var(--radius);
 }

 .newsletter-form input {
     flex: 1;
     padding: 14px 20px;
     border-radius: 8px;
     border: none;
     outline: none;
 }


 .page-header {
     background-color: var(--primary-dark);
     color: var(--white);
     text-align: center;
     padding: 80px 0;
 }

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

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

 .form-style label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: var(--primary-dark);
 }

 .form-style input[type="text"],
 .form-style input[type="email"],
 .form-style select,
 .form-style textarea {
     width: 100%;
     padding: 14px;
     border: 2px solid #e2e8f0;
     border-radius: 8px;
     font-family: inherit;
     transition: var(--transition);
     background-color: var(--white);
 }

 .form-style input:focus,
 .form-style select:focus,
 .form-style textarea:focus {
     border-color: var(--secondary-blue);
     outline: none;
     box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
 }

 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .office-list {
     display: grid;
     gap: 20px;
 }

 .office-item {
     display: flex;
     gap: 15px;
     align-items: flex-start;
 }

 .office-item i {
     color: var(--accent-gold);
     margin-top: 5px;
 }


 .footer {
     background-color: #0f172a;
     color: #94a3b8;
     padding: 30px 0;
     font-size: 0.95rem;
 }

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

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

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

 .footer-col ul li a {
     transition: color 0.2s;
 }

 .footer-col ul li a:hover {
     color: var(--accent-gold);
     padding-left: 5px;
 }

 .social-icons {
     margin-top: 20px;
     display: flex;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     margin-right: 10px;
     transition: var(--transition);
     color: var(--white);
 }

 .social-icons a:hover {
     background: var(--accent-gold);
     transform: translateY(-3px);
 }

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

 .footer-links {
     margin: 15px 0;
 }

 .footer-links a {
     margin: 0 10px;
     color: #cbd5e1;
 }

 .footer-disclaimer {
     margin-bottom: 20px;
     font-size: 0.8rem;
     opacity: 0.6;
 }


 .cookie-banner {
     position: fixed;
     bottom: 20px;
     left: 20px;
     right: 20px;
     max-width: 1200px;
     margin: 0 auto;
     background-color: var(--white);
     color: var(--text-main);
     padding: 20px;
     z-index: 9999;
     display: none;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     border-radius: var(--radius);
     border: 1px solid #e2e8f0;
     animation: slideUp 0.5s ease-out;
 }

 @keyframes slideUp {
     from {
         transform: translateY(100%);
         opacity: 0;
     }

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

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

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


 .scroll-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: var(--primary-dark);
     color: var(--white);
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     font-size: 1.2rem;
     cursor: pointer;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     display: none;
     z-index: 900;
     transition: var(--transition);
 }

 .scroll-to-top:hover {
     background-color: var(--accent-gold);
     transform: translateY(-5px);
 }

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

     .cards-grid {
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     }
 }

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

     .nav-menu {
         position: fixed;
         left: -100%;
         top: 0;
         flex-direction: column;
         background-color: var(--primary-dark);
         width: 85%;
         height: 100vh;
         text-align: left;
         transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         padding: 80px 30px;
         box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
         gap: 20px;
         z-index: 1001;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-link {
         font-size: 1.2rem;
         display: block;
         padding: 10px 0;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     }

     .hero {
         height: auto;
         padding: 120px 0 80px;
     }

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

     .hero-buttons {
         flex-direction: column;
     }

     .btn {
         width: 100%;
     }

     .cta-grid,
     .contact-wrapper,
     .cookie-content {
         grid-template-columns: 1fr;
         flex-direction: column;
     }

     .trust-grid {
         gap: 10px;
     }

     .trust-item {
         flex-basis: 45%;
         justify-content: center;
         font-size: 0.9rem;
     }
 }

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

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

 #odgovorno {
     background-color: #282828;
     color: var(--white);
     position: relative;
     padding: 80px 0;
 }


 #odgovorno h2 {
     color: var(--white);
     margin-bottom: 1rem;
 }


 #odgovorno .fa-user-shield {
     color: var(--secondary-blue);
     margin-bottom: 1.5rem;
     filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
 }


 .max-w-600 {
     max-width: 600px;
     margin: 0 auto 2.5rem;
     font-size: 1.05rem;
     opacity: 0.9;
     line-height: 1.7;
 }


 .responsible-resources {
     background-color: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 2.5rem;
     border-radius: var(--radius);
     display: inline-block;
     width: 100%;
     max-width: 650px;
     text-align: left;
     margin-bottom: 1rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .responsible-resources p {
     margin-bottom: 1.5rem;
     font-weight: 600;
     font-size: 1.1rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding-bottom: 10px;
 }

 .responsible-resources ul li {
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 1rem;
 }


 .responsible-resources ul li i {
     color: var(--accent-gold);
     background: rgba(245, 158, 11, 0.1);
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     flex-shrink: 0;
 }


 .responsible-resources a {
     color: var(--white) !important;
     text-decoration: none !important;
     border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
     transition: var(--transition);
 }

 .responsible-resources a:hover {
     color: var(--accent-gold) !important;
     border-bottom-color: var(--accent-gold);
 }


 .age-limit {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     flex-wrap: wrap;
 }

 .badge-18 {
     background-color: var(--danger);
     color: var(--white);
     padding: 8px 14px;
     border-radius: 8px;
     font-weight: 800;
     font-size: 1.2rem;
     line-height: 1;
     box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
 }


 @media (max-width: 600px) {
     .responsible-resources {
         padding: 1.5rem;
     }

     .age-limit {
         flex-direction: column;
         gap: 10px;
         text-align: center;
     }
 }

 .policy-content {
     background-color: var(--white);
     padding: 40px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #e2e8f0;
 }

 .policy-content h2 {
     font-size: 1.8rem;
     margin-top: 40px;
     margin-bottom: 20px;
     border-bottom: 1px solid #f1f5f9;
     padding-bottom: 10px;
 }

 .policy-content h3 {
     font-size: 1.3rem;
     margin-top: 25px;
     margin-bottom: 15px;
     color: var(--primary-light);
 }

 .policy-content p {
     margin-bottom: 15px;
     color: #475569;
     text-align: justify;
 }

 .policy-content ul {
     list-style: disc;
     margin-left: 20px;
     margin-bottom: 20px;
     color: #475569;
 }

 .policy-content li {
     margin-bottom: 8px;
 }

 .policy-meta {
     font-size: 0.9rem;
     color: #94a3b8;
     margin-bottom: 30px;
     font-style: italic;
 }

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

 .terms-content {
     background-color: var(--white);
     padding: 40px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #e2e8f0;
 }

 .terms-content h2 {
     font-size: 1.6rem;
     margin-top: 35px;
     margin-bottom: 15px;
     border-bottom: 1px solid #f1f5f9;
     padding-bottom: 8px;
     color: var(--primary-dark);
 }

 .terms-content h3 {
     font-size: 1.2rem;
     margin-top: 20px;
     margin-bottom: 10px;
     color: var(--primary-light);
     font-weight: 600;
 }

 .terms-content p {
     margin-bottom: 15px;
     color: #475569;
     text-align: justify;
     line-height: 1.7;
 }

 .terms-content ul {
     list-style: disc;
     margin-left: 25px;
     margin-bottom: 20px;
     color: #475569;
 }

 .terms-content li {
     margin-bottom: 8px;
 }

 .alert-box {
     background-color: #fef2f2;
     border-left: 4px solid var(--danger);
     padding: 15px 20px;
     margin: 20px 0;
     color: #991b1b;
     font-size: 0.95rem;
 }

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

 .policy-content {
     background-color: var(--white);
     padding: 40px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #e2e8f0;
 }

 .policy-content h2 {
     font-size: 1.6rem;
     margin-top: 35px;
     margin-bottom: 15px;
     border-bottom: 1px solid #f1f5f9;
     padding-bottom: 8px;
     color: var(--primary-dark);
 }

 .policy-content h3 {
     font-size: 1.2rem;
     margin-top: 20px;
     margin-bottom: 10px;
     color: var(--primary-light);
     font-weight: 600;
 }

 .policy-content p {
     margin-bottom: 15px;
     color: #475569;
     text-align: justify;
     line-height: 1.7;
 }

 .policy-content ul {
     list-style: disc;
     margin-left: 25px;
     margin-bottom: 20px;
     color: #475569;
 }

 .policy-content li {
     margin-bottom: 8px;
 }


 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin: 20px 0;
     font-size: 0.95rem;
 }

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

 .cookie-table th {
     background-color: #f8fafc;
     color: var(--primary-dark);
     font-weight: 600;
 }

 .cookie-table tr:hover {
     background-color: #f1f5f9;
 }

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

     .cookie-table {
         display: block;
         overflow-x: auto;
     }
 }

 .policy-content li::before {
     content: "\f058";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     color: var(--success);
     position: absolute;
     left: 0;
     top: 2px;
 }

 .warning-box {
     background-color: #fff7ed;
     border-left: 4px solid var(--accent-gold);
     padding: 20px;
     margin: 25px 0;
     border-radius: 4px;
 }

 .help-box {
     background-color: #eff6ff;
     border: 1px solid #bfdbfe;
     padding: 25px;
     border-radius: var(--radius);
     margin-top: 30px;
 }

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

 .help-contact {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     font-weight: 600;
     color: var(--primary-dark);
 }

 .help-contact i {
     width: 40px;
     height: 40px;
     background: var(--white);
     color: var(--secondary-blue);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

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

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

 .age-gate-content {
     background-color: var(--white);
     max-width: 500px;
     width: 100%;
     padding: 40px;
     border-radius: var(--radius);
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
     border: 1px solid #e2e8f0;
     animation: fadeIn 0.4s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .age-gate-logo {
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary-dark);
     margin-bottom: 20px;
 }

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

 .age-gate p {
     color: #475569;
     margin-bottom: 15px;
     font-size: 1rem;
     line-height: 1.5;
 }

 .small-warning {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--primary-light);
 }

 .age-buttons {
     display: flex;
     flex-direction: column;
     gap: 15px;
     margin: 30px 0;
 }

 .age-buttons .btn {
     width: 100%;
     padding: 16px;
     font-size: 1.1rem;
 }


 .btn-outline-dark {
     background: transparent;
     border: 2px solid #cbd5e1;
     color: #64748b;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: var(--transition);
 }

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

 .age-footer {
     font-size: 0.85rem;
     color: #94a3b8;
     border-top: 1px solid #f1f5f9;
     padding-top: 20px;
 }


 @media (min-width: 768px) {
     .age-buttons {
         flex-direction: row;
     }
 }