 :root {

     --primary-dark: #0f172a;
     --primary-light: #1e293b;
     --accent: #10b981;
     --accent-hover: #059669;

     --text-main: #334155;
     --text-light: #64748b;

     --bg-body: #f8fafc;
     --white: #ffffff;
     --border: #e2e8f0;

     --error: #ef4444;
     --warning: #f59e0b;
     --success: #10b981;


     --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
     --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
     --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);


     --radius: 12px;
     --font-main: 'Inter', sans-serif;
     --container-width: 1140px;
 }

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

 html {
     scroll-behavior: smooth;
 }

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

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

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

 ul {
     list-style: none;
 }

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

 .container {
     max-width: var(--container-width);
     margin: 0 auto;
     padding: 0 24px;
 }

 .section-padding {
     padding: 80px 0;
 }

 .bg-light {
     background-color: #f1f5f9;
 }

 .hidden {
     display: none !important;
 }


 .btn-primary,
 .btn-primary-small {
     background-color: var(--accent);
     color: var(--white);
     padding: 12px 28px;
     border-radius: 8px;
     font-weight: 600;
     border: none;
     cursor: pointer;
     box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
     display: inline-block;
     text-align: center;
 }

 .btn-primary:hover,
 .btn-primary-small:hover {
     background-color: var(--accent-hover);
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
 }

 .btn-secondary {
     background: rgba(255, 255, 255, 0.1);
     color: var(--white);
     border: 1px solid rgba(255, 255, 255, 0.3);
     padding: 12px 28px;
     border-radius: 8px;
     font-weight: 600;
     backdrop-filter: blur(5px);
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: var(--white);
 }

 .btn-outline,
 .btn-outline-small {
     background: transparent;
     border: 1px solid var(--border);
     color: var(--text-main);
     padding: 10px 24px;
     border-radius: 8px;
     font-weight: 500;
     cursor: pointer;
     display: inline-block;
     width: 100%;
     text-align: center;
 }

 .btn-outline:hover,
 .btn-outline-small:hover {
     border-color: var(--accent);
     color: var(--accent);
     background: #f0fdf4;
 }

 .btn-primary-small,
 .btn-outline-small {
     padding: 8px 16px;
     font-size: 0.9rem;
     width: auto;
 }

 .btn-text {
     background: none;
     border: none;
     color: var(--text-light);
     text-decoration: underline;
     cursor: pointer;
     font-size: 0.9rem;
     margin-top: 10px;
 }

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

 .full-width {
     width: 100%;
     display: block;
 }

 #main-header {
     background-color: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(12px);
     position: sticky;
     top: 0;
     z-index: 100;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

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

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

 .text-accent {
     color: var(--accent);
 }

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

 .main-nav a {
     color: #cbd5e1;
     font-weight: 500;
     font-size: 0.95rem;
 }

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

 .nav-btn {
     background: rgba(255, 255, 255, 0.1);
     padding: 8px 18px;
     border-radius: 6px;
     color: var(--white) !important;
     transition: 0.3s;
 }

 .nav-btn:hover {
     background: var(--accent);
     color: var(--white) !important;
 }


 .burger {
     display: none;
     cursor: pointer;
 }

 .burger div {
     width: 25px;
     height: 2px;
     background-color: var(--white);
     margin: 6px;
     transition: all 0.3s ease;
 }

 .hero {
     background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
     color: var(--white);
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }


 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     pointer-events: none;
 }

 .hero-container {
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 60px;
     align-items: center;
     position: relative;
     z-index: 1;
 }

 .badge {
     background: rgba(16, 185, 129, 0.15);
     color: var(--accent);
     padding: 6px 14px;
     border-radius: 50px;
     font-size: 0.85rem;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 24px;
     border: 1px solid rgba(16, 185, 129, 0.3);
 }

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

 .hero-text p {
     color: #94a3b8;
     font-size: 1.15rem;
     margin-bottom: 35px;
     max-width: 90%;
 }

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

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

 .hero-image img {
     border-radius: var(--radius);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     transform: perspective(1000px) rotateY(-5deg);
     transition: transform 0.5s ease;
 }

 .hero-image:hover img {
     transform: perspective(1000px) rotateY(0deg);
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .section-header h2 {
     font-size: 2.25rem;
     margin-bottom: 15px;
 }

 .section-header p {
     color: var(--text-light);
     font-size: 1.1rem;
 }

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

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

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

 .card-header {
     background-color: #f8fafc;
     padding: 30px;
     height: 120px;
     display: flex;
     justify-content: center;
     align-items: center;
     border-bottom: 1px solid var(--border);
 }

 .bookmaker-logo {
     max-height: 100px;
     max-width: 180px;
     object-fit: contain;
     opacity: 0.8;
     transition: 0.3s;
     mix-blend-mode: multiply;
     border-radius: 10px;
 }

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

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

 .card-body h3 {
     margin-bottom: 10px;
     font-size: 1.25rem;
 }

 .card-body p {
     font-size: 0.95rem;
     color: var(--text-light);
     margin-bottom: 20px;
     line-height: 1.5;
 }

 .features-list {
     margin-bottom: 20px;
     border-top: 1px solid #f1f5f9;
     padding-top: 15px;
 }

 .features-list li {
     font-size: 0.9rem;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     color: var(--text-main);
 }

 .features-list li i {
     color: var(--accent);
     margin-right: 10px;
     width: 20px;
     text-align: center;
 }

 .payment-icons {
     display: flex;
     gap: 15px;
     margin-bottom: 25px;
     color: #94a3b8;
     font-size: 1.4rem;
 }

 .bookmaker-card .btn-outline {
     margin-top: auto;
 }

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

 .step-card {
     padding: 25px;
     border-radius: var(--radius);
     transition: 0.3s;
     border: 1px solid transparent;
 }

 .step-card:hover {
     background: var(--white);
     box-shadow: var(--shadow-md);
     border-color: var(--border);
 }

 .step-icon {
     width: 60px;
     height: 60px;
     background-color: #ecfdf5;
     color: var(--accent);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     margin-bottom: 20px;
 }

 .advantages-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
 }

 .advantage-item {
     flex: 1;
     min-width: 280px;
     text-align: center;
     padding: 30px;
     background: var(--white);
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
 }

 .advantage-item i {
     font-size: 2.5rem;
     color: var(--primary-dark);
     margin-bottom: 20px;
 }

 .responsible-layout {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 50px;
 }

 .responsible-text ul {
     list-style: disc;
     margin-left: 20px;
     margin-bottom: 20px;
     color: var(--text-light);
 }

 .responsible-text p {
     margin-bottom: 15px;
 }

 .responsible-img-placeholder {
     background-color: #f1f5f9;
     border-radius: var(--radius);
     padding: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 30px;
 }

 .info-box {
     background-color: #fff1f2;
     border: 1px solid #fecdd3;
     padding: 30px;
     border-radius: var(--radius);
     color: #be123c;
 }

 .icon-18 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #e11d48;
 }

 .info-box h3 {
     color: #9f1239;
     margin-bottom: 10px;
 }

 .info-box p {
     font-size: 0.9rem;
     margin-bottom: 10px;
     color: #881337;
 }

 .help-links a {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     text-decoration: underline;
     color: #be123c;
 }

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

 .accordion-item {
     border-bottom: 1px solid var(--border);
 }

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

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

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

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     padding: 0 24px;
     background-color: #fff;
 }

 .accordion-content p {
     padding-bottom: 24px;
     color: var(--text-light);
     line-height: 1.6;
 }

 .accordion-item.active .accordion-header {
     color: var(--accent);
 }

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

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1.5fr 1fr;
     gap: 60px;
     max-width: 1000px;
     margin: 0 auto;
 }

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

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

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid var(--border);
     border-radius: 8px;
     font-family: inherit;
     font-size: 1rem;
     background-color: var(--white);
     transition: 0.3s;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--accent);
     box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
 }


 .form-group.error input,
 .form-group.error textarea {
     border-color: var(--error);
 }

 .error-msg {
     color: var(--error);
     font-size: 0.85rem;
     display: none;
     margin-top: 5px;
 }

 .form-group.error .error-msg {
     display: block;
 }

 .success-msg {
     color: var(--success);
     margin-top: 20px;
     display: none;
     font-weight: 600;
     background: #ecfdf5;
     padding: 15px;
     border-radius: 8px;
     text-align: center;
 }

 .contact-info {
     padding-top: 20px;
 }

 .info-item {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: 20px;
     font-size: 1.05rem;
 }

 .info-item i {
     color: var(--accent);
     font-size: 1.2rem;
 }

 .small-text {
     font-size: 0.8rem;
     color: #94a3b8;
 }

 .mt-20 {
     margin-top: 20px;
 }

 .main-footer {
     background-color: var(--primary-dark);
     color: #94a3b8;
     padding: 80px 0 30px;
     margin-top: 60px;
 }

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

 .footer-col h4 {
     color: var(--white);
     margin-bottom: 25px;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .footer-col p {
     font-size: 0.9rem;
     line-height: 1.6;
 }

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

 .footer-col a {
     color: #cbd5e1;
     font-size: 0.95rem;
 }

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

 .footer-legal-icons {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
 }

 .age-icon {
     background: #fff;
     color: var(--primary-dark);
     font-weight: bold;
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 0.8rem;
 }

 .footer-logos {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
 }

 .logo-placeholder img {
     height: 40px;
     padding: 5px;
     border-radius: 4px;
     opacity: 0.9;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 30px;
     text-align: center;
     font-size: 0.85rem;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.7);
     backdrop-filter: blur(8px);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 2000;
     opacity: 1;
     transition: opacity 0.3s ease;
 }

 .glass-panel {
     background: rgba(255, 255, 255, 0.95);
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     max-width: 500px;
     width: 90%;
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.5);
     position: relative;
 }


 .icon-circle {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
 }

 .icon-circle.warning {
     background: #fffbeb;
     color: #d97706;
 }

 .icon-circle.error {
     background: #fef2f2;
     color: #ef4444;
 }

 .warning img {
     width: 100%;
     max-width: 50px;
 }


 .modal-content h2 {
     margin-bottom: 15px;
 }

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

 .modal-buttons {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 20px;
 }


 .close-btn {
     background: none;
     border: none;
     font-size: 1.2rem;
     cursor: pointer;
     color: var(--text-light);
     transition: 0.2s;
 }

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

 .modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     border-bottom: 1px solid var(--border);
     padding-bottom: 15px;
 }

 .cookie-banner {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 900px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(12px);
     border: 1px solid var(--border);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     border-radius: 16px;
     padding: 24px;
     z-index: 1000;
     animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 @keyframes slideUp {
     from {
         transform: translate(-50%, 150%);
         opacity: 0;
     }

     to {
         transform: translate(-50%, 0);
         opacity: 1;
     }
 }

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

 .cookie-text-group h3 {
     font-size: 1.1rem;
     margin-bottom: 4px;
 }

 .cookie-text-group p {
     font-size: 0.9rem;
     color: var(--text-light);
     margin: 0;
 }

 .cookie-actions {
     display: flex;
     gap: 12px;
     flex-shrink: 0;
 }


 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid var(--border);
     text-align: left;
 }

 .option-info {
     padding-right: 20px;
 }

 .option-title {
     font-weight: 600;
     display: block;
     margin-bottom: 4px;
 }

 .option-info p {
     font-size: 0.85rem;
     color: var(--text-light);
     margin: 0;
 }


 .toggle-switch {
     position: relative;
     width: 50px;
     height: 28px;
     flex-shrink: 0;
 }

 .toggle-switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #cbd5e1;
     transition: .4s;
     border-radius: 34px;
 }

 .slider:before {
     position: absolute;
     content: "";
     height: 22px;
     width: 22px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 input:checked+.slider {
     background-color: var(--accent);
 }

 input:checked+.slider:before {
     transform: translateX(22px);
 }


 .toggle-switch.disabled .slider {
     background-color: #94a3b8;
     opacity: 0.6;
     cursor: not-allowed;
 }

 .modal-footer {
     margin-top: 30px;
 }

 @media screen and (max-width: 992px) {
     .hero-container {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 40px;
     }

     .hero-text {
         order: 1;
     }

     .hero-image {
         order: 2;
         max-width: 500px;
         margin: 0 auto;
     }

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

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

 @media screen and (max-width: 768px) {

     .header-container {
         padding: 0 20px;
     }

     .burger {
         display: block;
         z-index: 102;
     }

     .burger.toggle .line1 {
         transform: rotate(-45deg) translate(-5px, 6px);
     }

     .burger.toggle .line2 {
         opacity: 0;
     }

     .burger.toggle .line3 {
         transform: rotate(45deg) translate(-5px, -6px);
     }

     .main-nav ul {
         position: fixed;
         right: 0;
         top: 0;
         height: 100vh;
         width: 100%;
         background-color: var(--primary-dark);
         flex-direction: column;
         justify-content: center;
         transform: translateX(100%);
         transition: transform 0.4s ease-in-out;
         z-index: 101;
         padding: 0;
     }

     .main-nav.nav-active ul {
         transform: translateX(0);
     }

     .main-nav a {
         font-size: 1.5rem;
     }


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


     .cookie-content {
         flex-direction: column;
         text-align: left;
         gap: 20px;
     }

     .cookie-actions {
         width: 100%;
         justify-content: flex-end;
     }

     .btn-outline-small,
     .btn-primary-small {
         flex: 1;
         text-align: center;
     }


     .card-header {
         height: 100px;
     }

     .bookmaker-logo {
         max-height: 45px;
     }
 }

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

 .legal-page-header h1 {
     color: var(--white);
 }

 .legal-content {
     background: var(--white);
     padding: 60px;
     margin-top: -40px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-lg);
     position: relative;
     z-index: 10;
 }

 .legal-body {
     color: var(--text-main);
     line-height: 1.8;
     font-size: 1rem;
 }

 .legal-body h2 {
     margin-top: 40px;
     margin-bottom: 20px;
     font-size: 1.5rem;
     color: var(--primary-dark);
     border-bottom: 1px solid var(--border);
     padding-bottom: 10px;
 }

 .legal-body h3 {
     margin-top: 25px;
     margin-bottom: 15px;
     font-size: 1.2rem;
     color: var(--text-main);
 }

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

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

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

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

 .highlight-box {
     background: #f1f5f9;
     padding: 20px;
     border-left: 4px solid var(--accent);
     margin: 20px 0;
     border-radius: 4px;
 }

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

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

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

 @media (max-width: 768px) {

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