   :root {
       --navy: #0A192F;
       --navy-light: #112240;
       --green: #00E676;
       --green-hover: #00C853;
       --gold: #FFD700;
       --white: #F8F9FA;
       --text-muted: #8892B0;
       --transition: all 0.3s ease;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }

   body {
       background-color: var(--navy);
       color: var(--white);
       line-height: 1.6;
       overflow-x: hidden;
   }

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

   ul {
       list-style: none;
   }

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


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

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

   .btn-primary:hover {
       background-color: var(--green-hover);
       transform: translateY(-2px);
       box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
   }

   .btn-outline {
       background-color: transparent;
       color: var(--gold);
       border: 2px solid var(--gold);
   }

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


   header {
       background-color: rgba(10, 25, 47, 0.95);
       backdrop-filter: blur(10px);
       position: fixed;
       width: 100%;
       top: 0;
       z-index: 100;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

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

   .logo-container {
       display: flex;
       flex-direction: column;
   }

   .logo {
       font-size: 24px;
       font-weight: 900;
       color: var(--white);
       letter-spacing: 1px;
   }

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

   .tagline {
       font-size: 12px;
       color: var(--text-muted);
   }

   .nav-menu {
       display: flex;
       gap: 20px;
       align-items: center;
   }

   .nav-menu a:hover {
       color: var(--green);
   }

   .auth-buttons {
       display: flex;
       gap: 15px;
   }


   .mobile-toggle {
       display: none;
       font-size: 24px;
       cursor: pointer;
       color: var(--white);
   }


   #hero {
       height: 100vh;
       background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)),
           url('../img/hero.jpeg') center/cover;
       display: flex;
       align-items: center;
       text-align: center;
       padding-top: 80px;
   }

   .hero-content h1 {
       font-size: 3.5rem;
       color: var(--white);
       margin-bottom: 20px;
       text-transform: uppercase;
   }

   .hero-content h1 span {
       color: var(--gold);
   }

   .hero-content p {
       font-size: 1.2rem;
       color: var(--text-muted);
       margin-bottom: 30px;
       max-width: 600px;
       margin-left: auto;
       margin-right: auto;
   }


   .section-title {
       text-align: center;
       margin-bottom: 50px;
   }

   .section-title h2 {
       font-size: 2.5rem;
       color: var(--white);
   }

   .section-title h2 span {
       color: var(--green);
   }

   section {
       padding: 100px 0;
   }


   #services {
       background-color: var(--navy);
   }

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

   .service-card {
       background-color: var(--navy-light);
       padding: 40px 30px;
       border-radius: 12px;
       text-align: center;
       transition: var(--transition);
       border: 1px solid rgba(255, 255, 255, 0.05);
   }

   .service-card:hover {
       transform: translateY(-10px);
       border-color: var(--green);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }

   .service-card i {
       font-size: 40px;
       color: var(--gold);
       margin-bottom: 20px;
   }

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

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


   #about {
       background-color: var(--navy-light);
   }

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

   .about-card {
       background-color: var(--navy);
       border-radius: 12px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   }

   .about-card img {
       width: 100%;
       height: 400px;
       object-fit: cover;
   }

   .about-content {
       padding: 25px;
   }

   .about-content h3 {
       color: var(--green);
       margin-bottom: 10px;
   }

   .about-content p {
       color: var(--text-muted);
   }


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

   .testimonial-card {
       background-color: var(--navy-light);
       padding: 30px;
       border-radius: 12px;
       position: relative;
   }

   .stars {
       color: var(--gold);
       margin-bottom: 15px;
   }

   .testimonial-text {
       font-style: italic;
       color: var(--white);
       margin-bottom: 20px;
   }

   .testimonial-author {
       font-weight: bold;
       color: var(--green);
   }


   #sports {
       background-color: var(--navy-light);
   }

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

   .sport-card {
       position: relative;
       border-radius: 12px;
       overflow: hidden;
       height: 250px;
       cursor: pointer;
   }

   .sport-card img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .sport-overlay {
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       background: linear-gradient(transparent, rgba(10, 25, 47, 0.95));
       padding: 20px;
       transform: translateY(20px);
       transition: var(--transition);
   }

   .sport-card:hover img {
       transform: scale(1.1);
   }

   .sport-card:hover .sport-overlay {
       transform: translateY(0);
   }

   .sport-overlay h3 {
       color: var(--gold);
       margin-bottom: 5px;
   }

   .sport-overlay p {
       color: var(--white);
       font-size: 0.9rem;
       opacity: 0;
       transition: var(--transition);
   }

   .sport-card:hover .sport-overlay p {
       opacity: 1;
   }


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

   .faq-item {
       background-color: var(--navy-light);
       margin-bottom: 15px;
       border-radius: 8px;
       overflow: hidden;
   }

   .faq-question {
       padding: 20px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       cursor: pointer;
       font-weight: 600;
   }

   .faq-question i {
       color: var(--green);
       transition: var(--transition);
   }

   .faq-answer {
       padding: 0 20px;
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.3s ease;
       color: var(--text-muted);
   }

   .faq-item.active .faq-answer {
       padding: 0 20px 20px 20px;
       max-height: 200px;
   }

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


   .responsible-gambling {
       display: flex;
       align-items: center;
       gap: 10px;
       background-color: rgba(255, 255, 255, 0.05);
       padding: 15px;
       border-radius: 8px;
       margin-top: 20px;
   }

   .eighteen-plus {
       background: #ff3333;
       color: white;
       padding: 5px 10px;
       border-radius: 50%;
       font-weight: bold;
       font-size: 14px;
   }


   .modal-overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.8);
       display: flex;
       justify-content: center;
       align-items: center;
       z-index: 1000;
       opacity: 0;
       visibility: hidden;
       transition: var(--transition);
   }

   .modal-overlay.active {
       opacity: 1;
       visibility: visible;
   }

   .modal-content {
       background: var(--navy-light);
       padding: 40px;
       border-radius: 12px;
       width: 100%;
       max-width: 400px;
       position: relative;
       transform: translateY(-20px);
       transition: var(--transition);
       border: 1px solid rgba(255, 255, 255, 0.1);
   }

   .modal-overlay.active .modal-content {
       transform: translateY(0);
   }

   .close-btn {
       position: absolute;
       top: 15px;
       right: 20px;
       font-size: 24px;
       cursor: pointer;
       color: var(--text-muted);
   }

   .close-btn:hover {
       color: var(--white);
   }

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

   .form-group label {
       display: block;
       margin-bottom: 8px;
       color: var(--white);
   }

   .form-group input {
       width: 100%;
       padding: 12px;
       border-radius: 6px;
       border: 1px solid rgba(255, 255, 255, 0.2);
       background: var(--navy);
       color: var(--white);
       outline: none;
   }

   .form-group input:focus {
       border-color: var(--green);
   }


   #age-verification {
       z-index: 2000;
   }

   #age-verification .modal-content {
       text-align: center;
       max-width: 500px;
   }

   .cookie-banner {
       position: fixed;
       bottom: -100%;
       left: 0;
       width: 100%;
       background: var(--navy-light);
       padding: 20px;
       box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
       z-index: 900;
       display: flex;
       justify-content: space-between;
       align-items: center;
       transition: bottom 0.5s ease;
       border-top: 2px solid var(--green);
   }

   .cookie-banner.active {
       bottom: 0;
   }

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


   @media (max-width: 768px) {
       .nav-menu {
           position: absolute;
           top: 80px;
           left: -100%;
           flex-direction: column;
           background: var(--navy-light);
           width: 100%;
           text-align: center;
           padding: 20px 0;
           transition: var(--transition);
           border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       }

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

       .mobile-toggle {
           display: block;
       }

       .auth-buttons {
           display: none;
       }

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

       .cookie-banner {
           flex-direction: column;
           gap: 15px;
           text-align: center;
       }
   }


   footer {
       width: 100%;
   }

   .bg-dark {
       background: #111827;
   }

   .text-white {
       color: #fff;
   }

   .text-muted {
       color: rgba(255, 255, 255, 0.65);
   }

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

   .py-5 {
       padding-top: 3rem;
       padding-bottom: 3rem;
   }

   .container {
       width: 100%;
       max-width: 1140px;
       margin: 0 auto;
       padding-left: 15px;
       padding-right: 15px;
       box-sizing: border-box;
   }


   h3,
   p,
   a,
   span,
   address {
       margin-top: 0;
   }

   h3 {
       font-size: 1.75rem;
       line-height: 1.3;
       font-weight: 700;
   }

   p {
       font-size: 1rem;
       line-height: 1.7;
   }

   .small {
       font-size: 0.875rem;
       line-height: 1.6;
   }


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

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

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

   .me-3 {
       margin-right: 1rem;
   }

   .m-1 {
       margin: 0.25rem;
   }


   .badge {
       display: inline-block;
       padding: 0.55rem 0.9rem;
       border-radius: 999px;
       font-size: 0.75rem;
       font-weight: 600;
       line-height: 1;
       letter-spacing: 0.03em;
       text-transform: uppercase;
   }

   .bg-secondary {
       background: #4b5563;
       color: #fff;
   }


   .d-flex {
       display: flex;
   }

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

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

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

   .gap-4 {
       gap: 1.5rem;
   }


   a {
       color: inherit;
       text-decoration: none;
       transition: opacity 0.25s ease, color 0.25s ease;
       cursor: pointer;
   }

   a:hover {
       opacity: 0.85;
   }

   .text-decoration-underline {
       text-decoration: underline;
   }


   .img-blog a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       padding: 0.4rem 0.7rem;
       background: rgba(255, 255, 255, 0.04);
       border-radius: 10px;
   }

   .img-blog img {
       display: block;
       max-height: 40px;
       width: auto;
       object-fit: contain;
   }


   nav a {
       display: inline-block;
       margin-bottom: 0.5rem;
       font-weight: 500;
   }


   address {
       font-style: normal;
       line-height: 1.7;
   }

   address a {
       text-decoration: underline;
   }


   @media (max-width: 768px) {
       .container {
           padding-left: 20px;
           padding-right: 20px;
       }

       h3 {
           font-size: 1.4rem;
       }

       p {
           font-size: 0.95rem;
       }

       .gap-4 {
           gap: 1rem;
       }

       nav a,
       .mb-3.small a {
           display: inline-block;
           margin-right: 0.75rem;
           margin-bottom: 0.5rem;
       }
   }

   .thank-you-overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: var(--navy);
       background-image: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95)),
           url('../img/hero.jpeg');
       background-size: cover;
       background-position: center;
       z-index: 9999;
       display: flex;
       justify-content: center;
       align-items: center; 
       transition: opacity 0.4s ease, visibility 0.4s ease;
   }
 

   .thank-you-card {
       background: rgba(17, 34, 64, 0.6);
       backdrop-filter: blur(16px);
       -webkit-backdrop-filter: blur(16px);
       border: 1px solid rgba(255, 255, 255, 0.1);
       padding: 50px 40px;
       border-radius: 16px;
       text-align: center;
       max-width: 550px;
       width: 90%;
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
       transform: scale(0.95);
       transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   }

   .thank-you-overlay.active .thank-you-card {
       transform: scale(1);
   }

   .success-icon {
       font-size: 80px;
       color: var(--green);
       margin-bottom: 25px;
       filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.4));
   }

   .thank-you-card h2 {
       font-size: 2.8rem;
       color: var(--white);
       margin-bottom: 15px;
       letter-spacing: 1px;
   }

   .thank-you-card p {
       color: var(--white);
       font-size: 1.1rem;
       margin-bottom: 15px;
   }

   .thank-you-card .email-notice {
       color: var(--gold);
       font-weight: 500;
       margin-bottom: 35px;
       background: rgba(255, 215, 0, 0.1);
       padding: 15px;
       border-radius: 8px;
       border: 1px solid rgba(255, 215, 0, 0.2);
   }