 :root {

     --bg-dark: #020617;
     --bg-card: #0f172a;
     --bg-card-hover: #1e293b;
     --border-color: #1e293b;


     --text-main: #f8fafc;
     --text-muted: #94a3b8;
     --text-dim: #64748b;


     --accent-gold: #fbbf24;
     --accent-gold-hover: #f59e0b;
     --accent-teal: #2dd4bf;
     --accent-teal-dark: #14b8a6;


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


     --max-width: 1200px;
     --nav-height: 80px;
     --font-main: 'Inter', system-ui, -apple-system, sans-serif;
     --radius: 8px;
     --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
     --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
 }

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

 html {
     scroll-behavior: smooth;
 }

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

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

 ul {
     list-style: none;
 }

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

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

 h1 {
     font-size: 3rem;
 }

 h2 {
     font-size: 2.25rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 h4 {
     font-size: 1.25rem;
 }

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

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

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

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



 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: var(--radius);
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     letter-spacing: 0.5px;
     text-transform: uppercase;
     font-size: 0.9rem;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
     color: #000;
     box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
     filter: brightness(1.1);
 }

 .btn-primary:active {
     transform: translateY(0);
 }

 .btn-secondary {
     background: transparent;
     border: 2px solid var(--accent-teal);
     color: var(--accent-teal);
     box-shadow: 0 4px 15px rgba(45, 212, 191, 0.1);
 }

 .btn-secondary:hover {
     background: var(--accent-teal);
     color: #0f172a;
     box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
     transform: translateY(-2px);
 }

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

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


 .badge {
     display: inline-block;
     background: rgba(45, 212, 191, 0.1);
     color: var(--accent-teal);
     border: 1px solid rgba(45, 212, 191, 0.2);
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     backdrop-filter: blur(4px);
 }

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

 .section {
     padding: 80px 0;
     position: relative;
 }


 .grid,
 .grid-2,
 .grid-3,
 .grid-4 {
     display: grid;
     gap: 32px;
 }

 .grid-2 {
     grid-template-columns: repeat(2, 1fr);
 }

 .grid-3 {
     grid-template-columns: repeat(3, 1fr);
 }

 .grid-4 {
     grid-template-columns: repeat(4, 1fr);
 }

 header {
     height: var(--nav-height);
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(2, 6, 23, 0.85);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     transition: background 0.3s;
 }

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

 .logo {
     font-size: 1.5rem;
     font-weight: 800;
     color: #fff;
     display: flex;
     flex-direction: column;
     line-height: 1;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .logo span {
     font-size: 0.7rem;
     color: var(--accent-gold);
     font-weight: 500;
     margin-top: 4px;
     letter-spacing: 2px;
 }

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

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

 .nav-links a {
     font-size: 0.95rem;
     font-weight: 500;
     color: var(--text-muted);
     position: relative;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: #fff;
 }


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

 .nav-links a:hover::after {
     width: 100%;
 }

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

 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     color: #fff;
     font-size: 1.8rem;
     cursor: pointer;
 }


 .hero {
     position: relative;
     min-height: 85vh;
     display: flex;
     align-items: center;
     padding-top: var(--nav-height);

     background:
         linear-gradient(to right, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.7) 60%, rgba(2, 6, 23, 0.4) 100%),
         linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%),
         url('../img/hero.png') center center/cover no-repeat;
     background-color: var(--bg-dark);
 }

 .hero-content {
     max-width: 700px;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 24px;
     background: linear-gradient(to right, #fff, #94a3b8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

 .hero p {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 40px;
     font-weight: 300;
 }

 .hero-badges {
     display: flex;
     gap: 12px;
     margin-bottom: 24px;
     flex-wrap: wrap;
 }

 .card {
     background-color: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 16px;
     padding: 32px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }


 .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--accent-teal), transparent);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
     border-color: rgba(45, 212, 191, 0.3);
     background-color: var(--bg-card-hover);
 }

 .card:hover::before {
     opacity: 1;
 }

 .feature-list li {
     margin-bottom: 16px;
     padding-left: 30px;
     position: relative;
     color: var(--text-muted);
 }

 .feature-list li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--accent-teal);
     font-weight: bold;
 }

 .feature-list.negative li::before {
     content: '✕';
     color: var(--danger);
 }


 .step-item {
     text-align: center;
     position: relative;
 }

 .step-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
     border: 2px solid var(--accent-gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 24px;
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--accent-gold);
     box-shadow: 0 0 20px rgba(251, 191, 36, 0.1);
 }

 .auth-page {
     min-height: calc(100vh - var(--nav-height));
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
     background: radial-gradient(circle at 50% 50%, #0f172a 0%, var(--bg-dark) 70%);
 }

 .auth-card {
     background: var(--bg-card);
     padding: 48px;
     border-radius: 24px;
     width: 100%;
     max-width: 500px;
     border: 1px solid var(--border-color);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
 }

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

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

 .form-control {
     width: 100%;
     padding: 14px 16px;
     background: #020617;
     border: 1px solid #334155;
     border-radius: var(--radius);
     color: #fff;
     font-size: 1rem;
     transition: all 0.3s;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--accent-teal);
     box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
 }

 .checkbox-group {
     display: flex;
     gap: 12px;
     align-items: flex-start;
 }

 .checkbox-group input {
     margin-top: 5px;
     accent-color: var(--accent-gold);
     cursor: pointer;
 }

 .checkbox-group label {
     font-size: 0.9rem;
     line-height: 1.4;
     cursor: pointer;
 }

 footer {
     background-color: #000205;
     padding: 80px 0 30px;
     border-top: 1px solid var(--border-color);
     margin-top: auto;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 60px;
 }

 .footer-links h4 {
     color: #fff;
     margin-bottom: 24px;
     font-size: 1.1rem;
 }

 .footer-links ul li {
     margin-bottom: 14px;
 }

 .footer-links ul li a {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

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

 .legal-bar {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 30px;
     text-align: center;
     color: var(--text-dim);
     font-size: 0.85rem;
 }


 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(2, 6, 23, 0.9);
     backdrop-filter: blur(8px);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 1;
     visibility: visible;
     transition: all 0.5s ease;
 }

 .modal-overlay.hidden {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
 }

 .age-modal {
     background: var(--bg-card);
     padding: 48px;
     border-radius: 24px;
     max-width: 550px;
     width: 90%;
     text-align: center;
     border: 1px solid var(--border-color);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
     transform: translateY(0);
     transition: transform 0.5s ease;
 }

 .modal-overlay.hidden .age-modal {
     transform: translateY(20px);
 }

 .age-18-icon {
     font-size: 3.5rem;
     color: var(--danger);
     font-weight: 800;
     margin-bottom: 20px;
     text-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
 }

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

     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 40px;
     }
 }

 @media (max-width: 768px) {

     .grid-2,
     .grid-3,
     .grid-4 {
         grid-template-columns: 1fr;
     }

     .hero {
         text-align: center;
         padding-top: 120px;
         align-items: flex-start;
     }

     .hero-content {
         margin: 0 auto;
     }

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

     .mobile-toggle {
         display: block;
     }

     .nav-menu {
         position: fixed;
         top: var(--nav-height);
         left: 0;
         width: 100%;
         height: calc(100vh - var(--nav-height));
         background: var(--bg-dark);
         flex-direction: column;
         padding: 40px 20px;
         transform: translateX(100%);
         transition: transform 0.3s ease;
         border-top: 1px solid var(--border-color);
     }

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

     .nav-links {
         flex-direction: column;
         align-items: center;
         width: 100%;
         gap: 20px;
         font-size: 1.2rem;
     }

     .nav-buttons {
         flex-direction: column;
         width: 100%;
         margin-top: 30px;
     }

     .btn {
         width: 100%;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         text-align: center;
     }
 }

 .site-footer {
     background: linear-gradient(180deg, #020617 0%, #020617 100%);
     color: #d4d4d4;
     font-family: var(--font-family);
     font-size: 14px;
     line-height: 1.8;
     padding: 32px 20px;
     text-align: center;
     border-top: 1px solid rgba(148, 163, 184, 0.4);
 }

 .site-footer p {
     margin: 10px auto;
     max-width: 900px;
     color: #e5e7eb;
 }

 .site-footer strong {
     color: #ffffff;
     font-weight: 600;
 }

 .site-footer a {
     color: #38bdf8;
     text-decoration: none;
     transition: color 0.25s ease;
 }

 .site-footer a:hover {
     color: #a5b4fc;
     text-decoration: underline;
 }

 .site-footer .footer-warning {
     color: #f97316;
     font-weight: bold;
     font-size: 15px;
 }

 .site-footer .footer-links {
     font-size: 13px;
 }

 .site-footer .footer-links a {
     color: #9ca3af;
     margin: 0 10px;
 }

 .site-footer .footer-links a:hover {
     color: #38bdf8;
 }

 .site-footer .footer-copyright {
     margin-top: 22px;
     font-size: 12px;
     color: #6b7280;
     padding-top: 18px;
     border-top: 1px solid #1f2937;
 }

 .resp-header {

     background: radial-gradient(circle at center, #1e293b 0%, var(--bg-dark) 100%);
     padding: 100px 0 60px;
     text-align: center;
     border-bottom: 1px solid var(--border-color);
     margin-bottom: 60px;
     position: relative;
     overflow: hidden;
 }


 .resp-header::before {
     content: '';
     position: absolute;
     top: -50%;
     left: 50%;
     transform: translateX(-50%);
     width: 60%;
     height: 100%;
     background: var(--accent-teal);
     filter: blur(120px);
     opacity: 0.08;
     pointer-events: none;
     z-index: 0;
 }


 .resp-header .container {
     position: relative;
     z-index: 2;
 }

 .resp-header h1 {
     font-size: 3rem;
     margin-bottom: 24px;
     color: var(--accent-teal);
     text-shadow: 0 4px 20px rgba(45, 212, 191, 0.2);
 }

 .resp-header p {
     font-size: 1.1rem;
     color: var(--text-muted);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.8;
 }


 @media (max-width: 768px) {
     .resp-header {
         padding: 120px 0 40px;
     }

     .resp-header h1 {
         font-size: 2rem;
     }
 }

 .legal-content {
     background-color: var(--bg-card);
     padding: 60px;
     border-radius: 16px;
     border: 1px solid var(--border-color);
     margin-bottom: 60px;
 }

 .legal-content h1 {
     color: #fff;
     margin-bottom: 10px;
 }

 .legal-meta {
     color: var(--text-muted);
     font-size: 0.9rem;
     margin-bottom: 40px;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--border-color);
 }

 .legal-content h2 {
     color: var(--accent-teal);
     font-size: 1.5rem;
     margin-top: 40px;
     margin-bottom: 20px;
 }

 .legal-content h3 {
     color: #fff;
     font-size: 1.1rem;
     margin-top: 25px;
     margin-bottom: 15px;
 }

 .legal-content p {
     color: var(--text-muted);
     margin-bottom: 16px;
     text-align: justify;
 }

 .legal-content ul {
     margin-bottom: 20px;
     padding-left: 20px;
 }

 .legal-content li {
     color: var(--text-muted);
     margin-bottom: 8px;
     list-style: disc;
 }

 .legal-content strong {
     color: #fff;
 }

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

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

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

 .cookie-table th {
     background-color: #020617;
     color: #fff;
     font-weight: 600;
 }

 .cookie-table tr:hover td {
     background-color: rgba(255, 255, 255, 0.02);
 }

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

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

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(10px);
     border-top: 1px solid var(--border-color);
     padding: 20px 0;
     z-index: 2000;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
     transform: translateY(0);
     transition: transform 0.4s ease;
 }

 .cookie-banner.hidden {
     transform: translateY(100%);
 }

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

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

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


 .cookie-modal-content {
     background: var(--bg-card);
 }

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

 .cookie-option:last-child {
     border-bottom: none;
 }

 .cookie-info strong {
     color: #fff;
     display: block;
     margin-bottom: 4px;
 }

 .cookie-info p {
     font-size: 0.8rem;
     color: var(--text-muted);
     margin: 0;
     max-width: 90%;
 }


 .toggle-switch {
     position: relative;
     width: 50px;
     height: 26px;
     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: #334155;
     transition: .4s;
     border-radius: 34px;
 }

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

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

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

 .toggle-switch.disabled {
     opacity: 0.6;
     cursor: not-allowed;
 }

 .toggle-switch.disabled .slider {
     cursor: not-allowed;
     background-color: var(--accent-teal-dark);
 }


 @media (max-width: 768px) {
     .cookie-content {
         flex-direction: column;
         text-align: center;
     }

     .cookie-buttons {
         width: 100%;
         justify-content: center;
     }

     .cookie-buttons button {
         width: 50%;
     }
 }