 :root {
     --primary-color: #6C63FF;
     --secondary-color: #00D2FF;
     --text-color: #333;
     --background-color: #f7f7f7;
     --card-background: #fff;
     --border-radius: 12px;
     --transition-speed: 0.3s;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     color: var(--text-color);
     background-color: var(--background-color);
     overflow-x: hidden;
 }

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


 h1,
 h2,
 h3 {
     font-weight: 600;
 }

 h1 {
     font-size: 3rem;
     line-height: 1.2;
     background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     text-align: center;
 }

 h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 p {
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }


 .btn {
     display: inline-block;
     padding: 1rem 2rem;
     border-radius: var(--border-radius);
     font-weight: 500;
     text-decoration: none;
     text-align: center;
     transition: all var(--transition-speed) ease;
     border: none;
     cursor: pointer;
 }

 .btn-primary {
     background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
     color: white;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
 }

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

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


 .header {
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     background-color: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(5px);
     z-index: 1000;
     padding: 1rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

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

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-color);
     text-decoration: none;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 1.5rem;
 }

 .nav-link {
     text-decoration: none;
     color: var(--text-color);
     font-weight: 500;
     transition: color var(--transition-speed) ease;
 }

 .nav-link:hover {
     color: var(--primary-color);
 }


 section {
     padding: 8rem 0 4rem;
     position: relative;
 }

 .section-intro {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-intro h2 {
     margin-bottom: 0.5rem;
 }

 .section-intro p {
     max-width: 600px;
     margin: 0 auto;
     color: #666;
 }


 .hero {
     position: relative;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     padding: 0 1rem;
     background-image: url('../img/hero.png');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
 }

 .hero-content {
     position: relative;
     z-index: 1;
     max-width: 800px;
 }

 .hero-content h1 {
     color: white;
     -webkit-text-fill-color: white;
     font-size: clamp(2rem, 5vw, 4rem);
 }

 .hero-content p {
     font-size: clamp(1rem, 2vw, 1.25rem);
     margin-bottom: 2rem;
 }


 .about-us-content {
     display: flex;
     align-items: center;
     gap: 2rem;
 }

 .about-text {
     flex: 1;
 }

 .about-image {
     flex: 1;
     background-image: url('../img/about.png');
     background-size: cover;
     background-position: center;
     border-radius: var(--border-radius);
     height: 300px;
 }


 .bookmaker-row {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .bookmaker-card {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: center;
     background: #fff;
     border-radius: 12px;
     padding: 20px 30px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
 }

 .card-left {
     display: flex;
     justify-content: space-around;
     flex: 1.5;
     gap: 20px;
     align-items: center;
     min-width: 250px;
 }

 .bookmaker-logo {
     width: 180px;
     height: auto;
 }

 .info h3 {
     margin: 0;
     font-size: 1.5em;
 }

 .rating {
     color: green;
     font-size: 1.2em;
     margin: 5px 0;
 }

 .info ul {
     list-style: none;
     padding: 0;
     margin: 0;
     color: #555;
 }

 .info ul li {
     margin-bottom: 5px;
 }

 .card-center {
     flex: 1;
     text-align: center;
     min-width: 150px;
 }

 .bonus {
     font-size: 18px;
 }

 .bonus span {
     display: block;
     font-weight: 700;
     font-size: 24px;
 }

 .subtext {
     color: #6c757d;
     font-size: 10px;
     margin-top: 4px;
 }

 .card-right {
     flex: 0 0 auto;
     min-width: 150px;
     text-align: right;
 }

 .cta-btn {
     background-color: #00c2f2;
     color: #000;
     text-decoration: none;
     padding: 12px 20px;
     border-radius: 8px;
     font-weight: bold;
     transition: background 0.3s;
 }

 .cta-btn:hover {
     background-color: #00a6d6;
 }

 @media (max-width: 768px) {
     .bookmaker-card {
         flex-direction: column;
         text-align: center;
         gap: 20px;
     }

     .card-left,
     .card-center,
     .card-right {
         flex-direction: column;
         justify-content: center;
         text-align: center;
     }

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

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     text-align: center;
 }

 .service-item {
     background-color: var(--card-background);
     padding: 2rem;
     border-radius: var(--border-radius);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
 }

 .service-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
 }

 .service-item i {
     font-size: 2.5rem;
     background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 1rem;
 }


 .why-choose-us-content {
     text-align: center;
 }


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

 .feature-card {
     background-color: var(--card-background);
     padding: 2rem;
     border-radius: var(--border-radius);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     border-left: 5px solid;
     border-image: linear-gradient(180deg, var(--primary-color), var(--secondary-color)) 1;
     transition: all var(--transition-speed) ease;
 }

 .feature-card:hover {
     transform: scale(1.02);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }


 .operators-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 2rem;
 }

 .operator-card {
     background-color: var(--card-background);
     border-radius: var(--border-radius);
     padding: 2rem;
     text-align: center;
     flex: 1 1 300px;
     max-width: 350px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
 }

 .operator-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .operator-logo {
     width: 150px;
     height: 80px;
     margin-bottom: 1rem;
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
 }

 .operator-logo.favbet {
     background-image: url('https://placehold.co/150x80/017366/fff?text=Favbet');
 }

 .operator-logo.psk {
     background-image: url('https://placehold.co/150x80/282F62/fff?text=PSK');
 }

 .operator-logo.rizk {
     background-image: url('https://placehold.co/150x80/FF385C/fff?text=RIZK');
 }

 .stars {
     color: #FFD700;
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .operator-card h3 {
     margin-bottom: 0.5rem;
     color: var(--primary-color);
 }

 .operator-card p {
     font-size: 1rem;
     color: #666;
     margin-bottom: 1rem;
 }

 .operator-card .btn {
     width: 100%;
 }


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

 .review-card {
     background-color: var(--card-background);
     padding: 2rem;
     border-radius: var(--border-radius);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .review-card::before {
     content: '“';
     font-size: 4rem;
     color: rgba(108, 99, 255, 0.2);
     position: absolute;
     top: 0.5rem;
     left: 1rem;
     z-index: 0;
 }

 .review-text {
     font-style: italic;
     margin-bottom: 1.5rem;
     position: relative;
     z-index: 1;
 }

 .review-author {
     font-weight: 600;
     text-align: right;
     border-top: 1px solid #eee;
     padding-top: 1rem;
 }


 .contact-content {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .contact-form-container {
     flex: 2;
     background-color: var(--card-background);
     padding: 2rem;
     border-radius: var(--border-radius);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 .contact-info-container {
     flex: 1;
     background-color: var(--primary-color);
     color: white;
     padding: 2rem;
     border-radius: var(--border-radius);
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 1rem;
     margin-bottom: 1rem;
     border: 1px solid #ccc;
     border-radius: var(--border-radius);
     font-family: inherit;
 }

 .contact-info-container p {
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }







 @media (max-width: 768px) {
     .navbar {
         flex-direction: column;
         gap: 1rem;
     }

     .nav-links {
         flex-wrap: wrap;
         justify-content: center;
         gap: 1rem;
     }

     .hero {
         height: 80vh;
     }

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

     .about-us-content {
         flex-direction: column;
     }

     .contact-content {
         flex-direction: column;
     }


 }


 .btn,
 .service-item,
 .operator-card,
 .feature-card {
     transition: all 0.3s ease;
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .footer {
     background-color: #1a1a1a;

     color: #ccc;

     padding: 4rem 1rem;
     font-size: 0.9rem;
     line-height: 1.6;
     border-top: 1px solid #333;

 }


 .disclaimer-icons {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 1.5rem;
     margin-bottom: 3rem;
     border-bottom: 1px solid #333;

     padding-bottom: 2rem;
 }

 .disclaimer-icons img {
     height: 70px;

     max-width: 120px;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .disclaimer-icons img:hover {
     transform: scale(1.1);
 }


 .disclaimer-title {
     text-align: center;
     font-size: 1.5rem;
     font-weight: 600;
     color: #fff;

     margin-bottom: 1rem;
 }


 .disclaimer-text {
     max-width: 1000px;
     margin: 0 auto 2rem;
     text-align: center;
 }


 .footer-legal,
 .footer-age-warning,
 .footer-help {
     max-width: 1000px;
     margin: 0 auto 1.5rem;
     text-align: center;
     padding: 1rem;
     background-color: #2a2a2a;

     border-radius: 12px;
 }

 .footer-legal strong {
     color: #fff;

 }


 .footer-help a {
     color: #6C63FF;

     text-decoration: none;
     font-weight: 500;
 }

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


 .footer-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     max-width: 1200px;
     margin: 3rem auto;
     border-top: 1px solid #333;

     padding-top: 3rem;
 }


 .footer-col h3 {
     font-size: 1.1rem;
     color: #fff;

     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
 }

 .footer-col h3 .highlight {
     color: #6C63FF;

     font-size: 1.5rem;
     margin-right: 0.5rem;
 }

 .footer-col p {
     font-size: 0.85rem;
 }


 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 0.5rem;
 }

 .footer-col a {
     color: #ccc;

     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-col a:hover {
     color: #6C63FF;

 }


 .footer-bottom {
     text-align: center;
     border-top: 1px solid #333;

     padding-top: 1rem;
 }

 .footer-bottom p {
     margin: 0;
     font-size: 0.8rem;
     color: #999;

 }


 @media (max-width: 768px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer {
         text-align: center;
     }
 }

 .content {
     padding: 6rem 0;
 }

 .content h1 {
     text-align: center;
     margin: 50px 0;
 }

 @media (max-width: 768px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.5rem;
     }

     .content {
         padding: 12rem 0;
     }
 }

 .age-gate-overlay {
     position: fixed;
     z-index: 9999;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.7);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: sans-serif;
 }

 .age-gate-box {
     background-color: #fff;
     border: 2px solid #6C63FF;
     padding: 30px;
     max-width: 400px;
     width: 90%;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .age-gate-box h2 {
     color: #6C63FF;
     margin-bottom: 10px;
 }

 .age-gate-box p {
     color: #333;
     margin-bottom: 20px;
 }

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

 .age-gate-buttons button {
     padding: 10px 20px;
     border: none;
     border-radius: 8px;
     font-weight: bold;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 #agree-btn {
     background-color: #6C63FF;
     color: #fff;
 }

 #agree-btn:hover {
     background-color: #5851d8;
 }

 #decline-btn {
     background-color: #e0e0e0;
     color: #333;
 }

 #decline-btn:hover {
     background-color: #ccc;
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #fff;
     border-top: 2px solid #6C63FF;
     padding: 20px;
     z-index: 9998;
     box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
     font-family: sans-serif;
 }

 .cookie-content {
     max-width: 1000px;
     margin: auto;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
 }

 .cookie-content p {
     margin: 0;
     color: #333;
     font-size: 15px;
 }

 .cookie-content a {
     color: #6C63FF;
     text-decoration: underline;
 }

 .cookie-buttons button {
     padding: 10px 16px;
     margin-left: 10px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-weight: bold;
     transition: 0.3s;
 }

 #accept-cookies {
     background-color: #6C63FF;
     color: #fff;
 }

 #accept-cookies:hover {
     background-color: #574ede;
 }

 #cookie-settings-btn {
     background-color: #e0e0e0;
     color: #333;
 }

 #cookie-settings-btn:hover {
     background-color: #ccc;
 }

 .cookie-settings-modal {
     position: fixed;
     z-index: 9999;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.4);
     display: none;
     align-items: center;
     justify-content: center;
 }

 .cookie-settings-box {
     background: #fff;
     border: 2px solid #6C63FF;
     padding: 25px;
     border-radius: 12px;
     width: 90%;
     max-width: 400px;
     text-align: left;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .cookie-settings-box h3 {
     margin-top: 0;
     color: #6C63FF;
 }

 .cookie-settings-actions button {
     margin-top: 15px;
     background-color: #6C63FF;
     color: #fff;
     padding: 10px 18px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
 }