 :root {

     --bg-main: #121217;
     --bg-darker: #0c0c10;
     --card-bg: #1e1e26;
     --card-hover: #262633;

     --primary-color: #8a0b29;
     --primary-hover: #a11335;
     --secondary-color: #1a2238;
     --secondary-hover: #232e4a;

     --text-main: #f0f0f5;
     --text-muted: #a0a0b0;
     --border-color: rgba(255, 255, 255, 0.08);
     --glow-color: rgba(138, 11, 41, 0.3);

     --font-main: 'Inter', sans-serif;
     --transition: all 0.3s ease;
 }

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

 html {
     scroll-behavior: smooth;
     font-size: 16px;
 }

 body {
     font-family: var(--font-main);
     background-color: var(--bg-main);
     color: var(--text-main);
     line-height: 1.6;
     overflow-x: hidden;
 }

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

 ul {
     list-style: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 h1 {
     font-size: 2.8rem;
 }

 h2 {
     font-size: 2.2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 p {
     margin-bottom: 1rem;
 }

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

 .section {
     padding: 5rem 0;
     border-bottom: 1px solid var(--border-color);
 }

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

 .section-header {
     margin-bottom: 3rem;
 }

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

 .section-subtitle {
     color: var(--text-muted);
     font-size: 1.1rem;
     font-weight: 400;
 }

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

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

 .mt-2 {
     margin-top: 2rem;
 }


 .btn {
     display: inline-block;
     padding: 12px 28px;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     border: none;
     text-align: center;
     transition: var(--transition);
     font-size: 1rem;
 }

 .btn-primary {
     background-color: var(--primary-color);
     color: #ffffff;
 }

 .btn-primary:hover {
     background-color: var(--primary-hover);
     box-shadow: 0 0 15px var(--glow-color);
 }

 .btn-secondary {
     background-color: var(--secondary-color);
     color: #ffffff;
 }

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

 .btn-outline {
     background-color: transparent;
     border: 1px solid var(--text-muted);
     color: var(--text-main);
 }

 .btn-outline:hover {
     border-color: var(--text-main);
     background-color: rgba(255, 255, 255, 0.05);
 }

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

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


 .card {
     background-color: var(--card-bg);
     border: 1px solid var(--border-color);
     border-radius: 12px;
     padding: 2rem;
     transition: var(--transition);
 }

 .card:hover {
     background-color: var(--card-hover);
     border-color: rgba(138, 11, 41, 0.4);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
     transform: translateY(-5px);
 }

 #main-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 20px 0;
     background-color: transparent;
     transition: var(--transition);
 }

 #main-header.scrolled {
     background-color: rgba(18, 18, 23, 0.95);
     backdrop-filter: blur(10px);
     padding: 15px 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
     border-bottom: 1px solid var(--border-color);
 }

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

 .logo-text {
     font-size: 1.5rem;
     font-weight: 700;
     color: #ffffff;
     letter-spacing: 0.5px;
 }

 .logo-accent {
     color: var(--primary-color);
 }

 .nav-links {
     display: flex;
     gap: 20px;
 }

 .nav-link {
     font-size: 0.95rem;
     font-weight: 500;
     color: var(--text-muted);
     padding: 5px 0;
     position: relative;
 }

 .nav-link:hover,
 .nav-link.active {
     color: #ffffff;
 }

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

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

 .burger-menu {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-main);
 }

 .hero-section {
     height: 100vh;
     min-height: 600px;
     background-image: url('../img/hero.png');
     background-size: cover;
     background-position: center;
     position: relative;
     display: flex;
     align-items: center;
     border-bottom: none;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(12, 12, 16, 0.95) 0%, rgba(26, 34, 56, 0.85) 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     text-align: center;
     margin: 0 auto;
 }

 .hero-subtitle {
     font-size: 1.2rem;
     color: var(--text-muted);
     margin-bottom: 2rem;
 }

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

 .trust-text {
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .trust-text i {
     color: var(--primary-color);
     margin-right: 5px;
 }

 .info-badge {
     display: inline-block;
     background-color: rgba(138, 11, 41, 0.15);
     color: var(--primary-color);
     padding: 6px 14px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     border: 1px solid rgba(138, 11, 41, 0.3);
 }

 .service-card .card-icon {
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 1.5rem;
 }

 .timeline {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     position: relative;
 }

 .timeline::before {
     content: '';
     position: absolute;
     left: 30px;
     top: 0;
     bottom: 0;
     width: 2px;
     background-color: var(--border-color);
 }

 .timeline-item {
     display: flex;
     gap: 2rem;
     align-items: flex-start;
 }

 .timeline-icon {
     width: 60px;
     height: 60px;
     background-color: var(--card-bg);
     border: 2px solid var(--primary-color);
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1.5rem;
     color: var(--primary-color);
     z-index: 2;
     flex-shrink: 0;
 }

 .timeline-content {
     flex: 1;
 }

 .top-cards-container {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .top-card {
     display: grid;
     grid-template-columns: 250px 1fr 300px;
     gap: 2rem;
     padding: 0;
     overflow: hidden;
 }

 .tc-header {
     background-color: rgba(0, 0, 0, 0.2);
     padding: 2rem;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border-right: 1px solid var(--border-color);
 }

 .tc-logo img {
     max-width: 150px;
     height: auto;
     background: #f0f0f5;
     border-radius: 10px;
     padding: 4px;
     margin-bottom: 1rem;
 }

 .tc-rating {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .rating-score {
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
 }

 .rating-stars {
     color: #fff;
     font-size: 0.9rem;
 }

 .tc-body {
     padding: 2rem 0;
 }

 .tc-desc {
     color: var(--text-muted);
     font-size: 0.95rem;
     margin-bottom: 1.5rem;
 }

 .tc-bonus {
     background-color: rgba(138, 11, 41, 0.1);
     border: 1px solid rgba(138, 11, 41, 0.3);
     padding: 10px 15px;
     border-radius: 6px;
     margin-bottom: 1.5rem;
     font-size: 0.95rem;
 }

 .tc-bonus i {
     color: var(--primary-color);
 }

 .tc-features ul li {
     margin-bottom: 8px;
     font-size: 0.9rem;
     color: var(--text-main);
 }

 .tc-features ul li i {
     color: #4CAF50;
     color: var(--text-muted);
     margin-right: 8px;
 }

 .tc-contact {
     margin-top: 1.5rem;
     padding-top: 1rem;
     border-top: 1px solid var(--border-color);
     font-size: 0.85rem;
     color: var(--text-muted);
 }

 .tc-contact p {
     margin-bottom: 5px;
 }

 .tc-contact i {
     margin-right: 8px;
     width: 15px;
     text-align: center;
 }

 .tc-footer {
     padding: 2rem;
     background-color: rgba(0, 0, 0, 0.1);
     border-left: 1px solid var(--border-color);
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .tc-disclaimer {
     font-size: 0.75rem;
     color: var(--text-muted);
     text-align: center;
     margin-top: 1rem;
 }


 .grid-card i {
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }


 .faq-container {
     max-width: 800px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .faq-item {
     padding: 0;
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     color: var(--text-main);
     font-size: 1.1rem;
     font-weight: 600;
     text-align: left;
     padding: 1.5rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-family: inherit;
 }

 .faq-question i {
     transition: transform 0.3s ease;
     color: var(--primary-color);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease;
     padding: 0 1.5rem;
 }

 .faq-item.active .faq-answer {
     padding-bottom: 1.5rem;
 }

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

 .faq-answer p {
     color: var(--text-muted);
     margin: 0;
 }

 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
 }

 .contact-detail {
     display: flex;
     align-items: center;
     gap: 15px;
     margin: 2rem 0;
     font-size: 1.2rem;
     font-weight: 600;
 }

 .contact-detail i {
     font-size: 1.5rem;
     color: var(--primary-color);
 }

 .contact-microcopy {
     background-color: rgba(255, 255, 255, 0.03);
     padding: 15px;
     border-radius: 8px;
     font-size: 0.85rem;
     color: var(--text-muted);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     background-color: rgba(0, 0, 0, 0.2);
     border: 1px solid var(--border-color);
     border-radius: 6px;
     color: var(--text-main);
     font-family: inherit;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 10px var(--glow-color);
 }

 .age-icon-18 {
     background-color: var(--card-bg);
     border: 1px solid var(--text-muted);
     color: var(--text-muted);
     border-radius: 50%;
     width: 36px;
     height: 36px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-weight: 700;
     font-size: 0.9rem;
     flex-shrink: 0;
 }

 .copyright {
     font-size: 0.85rem;
     color: var(--text-muted);
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(5px);
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
 }

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

 .modal-content {
     background-color: var(--card-bg);
     border: 1px solid var(--border-color);
     border-radius: 12px;
     padding: 3rem;
     max-width: 500px;
     width: 90%;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
 }

 .modal-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 1.5rem;
 }

 .modal-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-top: 2rem;
     margin-bottom: 1.5rem;
 }

 .modal-microcopy {
     font-size: 0.8rem;
     color: var(--text-muted);
 }


 .cookie-banner {
     position: fixed;
     bottom: -100%;
     left: 0;
     width: 100%;
     background-color: var(--card-bg);
     border-top: 1px solid var(--border-color);
     padding: 1rem 0;
     z-index: 9998;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
     transition: bottom 0.5s ease;
 }

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

 .cookie-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

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

 .cookie-buttons {
     display: flex;
     gap: 10px;
     flex-shrink: 0;
 }


 .cookie-settings-content {
     text-align: left;
     padding: 2rem;
 }

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

 .close-modal {
     cursor: pointer;
     font-size: 1.2rem;
     color: var(--text-muted);
 }

 .close-modal:hover {
     color: #fff;
 }

 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .option-info h4 {
     margin-bottom: 5px;
     font-size: 1rem;
 }

 .option-info p {
     font-size: 0.8rem;
     color: var(--text-muted);
     margin: 0;
     max-width: 300px;
 }


 .toggle-switch {
     position: relative;
     width: 50px;
     height: 24px;
 }

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

 .slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(255, 255, 255, 0.2);
     transition: .4s;
     border-radius: 24px;
 }

 .slider:before {
     position: absolute;
     content: "";
     height: 18px;
     width: 18px;
     left: 3px;
     bottom: 3px;
     background-color: white;
     transition: .4s;
     border-radius: 50%;
 }

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

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

 input:disabled+.slider {
     background-color: var(--primary-color);
     opacity: 0.5;
     cursor: not-allowed;
 }


 .scroll-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 45px;
     height: 45px;
     background-color: var(--primary-color);
     color: #fff;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 900;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 .scroll-top.visible {
     opacity: 1;
     visibility: visible;
 }

 .scroll-top:hover {
     background-color: var(--primary-hover);
     transform: translateY(-3px);
 }


 .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 992px) {
     .top-card {
         grid-template-columns: 1fr;
         grid-template-rows: auto auto auto;
     }

     .tc-header {
         border-right: none;
         border-bottom: 1px solid var(--border-color);
         flex-direction: row;
         justify-content: space-around;
         padding: 1.5rem;
     }

     .tc-body {
         padding: 1.5rem;
     }

     .tc-footer {
         border-left: none;
         border-top: 1px solid var(--border-color);
     }

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

     .footer-top {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
 }

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

     h2 {
         font-size: 1.8rem;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background-color: var(--bg-darker);
         flex-direction: column;
         align-items: center;
         padding-top: 2rem;
         transition: 0.4s ease;
     }

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

     .burger-menu {
         display: block;
     }

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

     .timeline::before {
         left: 20px;
     }

     .timeline-icon {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }

     .cookie-content {
         flex-direction: column;
         text-align: center;
     }

     .cookie-buttons {
         margin-top: 10px;
         flex-wrap: wrap;
         justify-content: center;
     }
 }

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

 .legal-wrapper {
     max-width: 900px;
     margin: 0 auto;
     padding: 3rem 4rem;
 }

 .legal-content h2 {
     font-size: 1.6rem;
     color: #ffffff;
     margin-top: 2.5rem;
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .legal-content h3 {
     font-size: 1.2rem;
     color: var(--text-main);
     margin-top: 1.5rem;
     margin-bottom: 0.8rem;
 }

 .legal-content p {
     color: var(--text-muted);
     font-size: 1rem;
     line-height: 1.7;
     margin-bottom: 1.2rem;
 }

 .legal-content ul {
     margin-bottom: 1.5rem;
     padding-left: 1rem;
 }

 .legal-content ul li {
     color: var(--text-muted);
     font-size: 1rem;
     margin-bottom: 0.8rem;
     line-height: 1.6;
 }

 .legal-content strong {
     color: var(--text-main);
 }

 @media (max-width: 768px) {
     .legal-wrapper {
         padding: 2rem 1.5rem;
     }

     .legal-content h2 {
         font-size: 1.4rem;
     }
 }