 :root {

     --primary-red: #e31c23;
     --primary-red-hover: #c41219;
     --primary-gradient: linear-gradient(135deg, #e31c23 0%, #b71c1c 100%);

     --accent-blue: #0056b3;
     --lotto-yellow: #f9c200;
     --multi-purple: #9c27b0;
     --euro-gold: #eeb824;


     --text-main: #111827;
     --text-secondary: #6b7280;
     --text-light: #9ca3af;
     --bg-body: #f3f4f6;
     --bg-white: #ffffff;
     --bg-footer: #1f2937;


     --border-radius: 12px;
     --border-radius-sm: 8px;
     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
     --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

     --header-height: 90px;
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

 body {
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     color: var(--text-main);
     background-color: var(--bg-body);
     line-height: 1.6;
     padding-top: var(--header-height);
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     -webkit-font-smoothing: antialiased;
 }

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

 ul {
     list-style: none;
 }

 img,
 svg {
     max-width: 100%;
     height: auto;
     display: block;
 }

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

 .py-large {
     padding-top: 80px;
     padding-bottom: 80px;
 }

 .mb-large {
     margin-bottom: 48px;
 }

 .mb-medium {
     margin-bottom: 24px;
 }

 .mt-medium {
     margin-top: 24px;
 }


 h1,
 h2,
 h3,
 h4,
 h5 {
     color: var(--text-main);
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 0.75em;
 }

 h1 {
     font-size: 2.75rem;
     letter-spacing: -0.02em;
 }

 h2 {
     font-size: 2rem;
     letter-spacing: -0.01em;
 }

 h3 {
     font-size: 1.5rem;
 }

 .intro-text {
     font-size: 1.125rem;
     color: var(--text-secondary);
     max-width: 800px;
     margin-bottom: 40px;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 0.95rem;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     text-align: center;
     letter-spacing: 0.01em;
 }

 .btn-primary {
     background: var(--primary-gradient);
     color: var(--bg-white);
     box-shadow: 0 4px 12px rgba(227, 28, 35, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 16px rgba(227, 28, 35, 0.4);
 }

 .btn-secondary {
     background-color: var(--bg-white);
     color: var(--text-main);
     border: 1px solid #e5e7eb;
 }

 .btn-secondary:hover {
     background-color: #f9fafb;
     border-color: #d1d5db;
     transform: translateY(-1px);
 }

 button:focus-visible,
 a:focus-visible,
 input:focus-visible {
     outline: 2px solid var(--primary-red);
     outline-offset: 2px;
 }

 .site-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(229, 231, 235, 0.5);
     z-index: 1000;
     padding: 10px 0;
     display: flex;
     align-items: center;
     transition: height 0.3s ease;
 }

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


 .logo-area {
     display: flex;
     flex-direction: column;
     flex-shrink: 1;
     min-width: 0;
     margin-right: 20px;
 }

 .brand-link {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     flex-shrink: 0;
 }

 .brand-text-wrapper {
     display: flex;
     flex-direction: column;
     justify-content: center;
     line-height: 1.1;
 }

 .logo-main {
     font-weight: 800;
     font-size: 1.1rem;
     color: var(--primary-red);
     text-transform: uppercase;
     letter-spacing: 0.05em;
     white-space: nowrap;
 }

 .logo-sub {
     font-weight: 500;
     font-size: 0.85rem;
     color: var(--text-main);
     letter-spacing: 0.15em;
     white-space: nowrap;
 }


 .legal-text-header {
     font-size: 0.65rem;
     color: var(--text-secondary);
     line-height: 1.3;
     display: block;
 }


 .main-nav {
     display: flex;
     align-items: center;
     flex-shrink: 0;
 }

 .main-nav ul {
     display: flex;
     gap: 24px;
     margin-right: 24px;
     align-items: center;
     list-style: none;
     margin-bottom: 0;
     padding-left: 0;
 }

 .main-nav a {
     font-size: 0.9rem;
     font-weight: 600;
     color: var(--text-main);
     position: relative;
     padding: 5px 0;
     white-space: nowrap;
 }

 .main-nav a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--primary-red);
     transition: width 0.3s ease;
 }

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

 .main-nav a.active {
     color: var(--primary-red);
 }

 #register-btn {
     white-space: nowrap;
     flex-shrink: 0;
 }


 .mobile-menu-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     flex-direction: column;
     gap: 6px;
     padding: 10px;
 }

 .mobile-menu-toggle span {
     width: 28px;
     height: 2px;
     background: var(--text-main);
     border-radius: 2px;
     transition: var(--transition);
 }

 .hero {
     background: radial-gradient(circle at top right, #fff1f2 0%, #fff 40%, #f3f4f6 100%);
     padding: 100px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(227, 28, 35, 0.03) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .hero .container {
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 24px;
     background: linear-gradient(to right, #111827, #374151);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-secondary);
     margin-bottom: 12px;
     font-weight: 400;
 }

 .hero-compliance {
     margin-top: 32px;
     font-size: 0.8rem;
     color: var(--text-light);
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

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

 .card {
     background: var(--bg-white);
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-md);
     overflow: hidden;
     transition: var(--transition);
     border: 1px solid rgba(0, 0, 0, 0.03);
     display: flex;
     flex-direction: column;
 }

 .card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-hover);
 }

 .card-header {
     padding: 24px;
     position: relative;
     color: var(--text-main);
 }

 .card-header h3 {
     margin: 0;
     font-size: 1.5rem;
     font-weight: 800;
 }

 .bg-yellow {
     background: var(--lotto-yellow);
     color: #000;
 }

 .bg-purple {
     background: var(--multi-purple);
     color: #fff;
 }

 .bg-gold {
     background: var(--euro-gold);
     color: #000;
 }

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

 .card-body h4 {
     font-size: 1.1rem;
     margin-bottom: 12px;
     color: var(--text-main);
 }

 .card-body p {
     color: var(--text-secondary);
     margin-bottom: 12px;
     font-size: 0.95rem;
 }

 .card-footer-info {
     margin-top: auto;
     padding-top: 20px;
     border-top: 1px solid #f3f4f6;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .badge {
     background: #fee2e2;
     color: #991b1b;
     padding: 4px 8px;
     border-radius: 6px;
     font-weight: 700;
     font-size: 0.75rem;
 }

 .link-arrow {
     display: inline-flex;
     align-items: center;
     margin-top: 16px;
     color: var(--primary-red);
     font-weight: 600;
     font-size: 0.95rem;
 }

 .link-arrow:hover {
     text-decoration: underline;
 }

 .table-responsive {
     overflow-x: auto;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-sm);
     border: 1px solid #e5e7eb;
 }

 table {
     width: 100%;
     border-collapse: collapse;
     background: var(--bg-white);
     font-size: 0.95rem;
 }

 th {
     background-color: #f9fafb;
     color: var(--text-secondary);
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.75rem;
     letter-spacing: 0.05em;
     padding: 16px 24px;
     text-align: left;
     border-bottom: 1px solid #e5e7eb;
 }

 td {
     padding: 16px 24px;
     border-bottom: 1px solid #f3f4f6;
     color: var(--text-main);
 }

 tr:last-child td {
     border-bottom: none;
 }

 tr:hover td {
     background-color: #f9fafb;
 }

 .filters-container {
     background: var(--bg-white);
     padding: 24px;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-sm);
     display: flex;
     gap: 24px;
     flex-wrap: wrap;
     align-items: flex-end;
     margin-bottom: 40px;
     border: 1px solid #e5e7eb;
 }

 .filter-group {
     flex: 1;
     min-width: 220px;
 }

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

 .form-control {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid #d1d5db;
     border-radius: var(--border-radius-sm);
     font-family: inherit;
     font-size: 0.95rem;
     transition: var(--transition);
     background-color: #fff;
 }

 .form-control:focus {
     border-color: var(--primary-red);
     box-shadow: 0 0 0 3px rgba(227, 28, 35, 0.1);
     outline: none;
 }

 .site-footer {
     background: var(--bg-footer);
     color: #e5e7eb;
     padding: 80px 0 40px;
     margin-top: auto;
 }

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

 .footer-logo {
     font-weight: 800;
     font-size: 1.5rem;
     color: var(--bg-white);
     margin-bottom: 20px;
     letter-spacing: -0.02em;
 }

 .footer-logo img {
     width: 60px;
 }

 .site-footer h5 {
     color: var(--bg-white);
     margin-bottom: 20px;
     font-size: 1.1rem;
 }

 .site-footer p {
     color: #9ca3af;
     margin-bottom: 10px;
     font-size: 0.9rem;
 }

 .warning-text {
     color: #fca5a5;
     font-weight: 600;
 }

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

 .footer-links a {
     color: #d1d5db;
 }

 .footer-links a:hover {
     color: var(--bg-white);
     text-decoration: underline;
 }

 .age-warning {
     border: 1px solid #6b7280;
     color: #9ca3af;
     display: inline-block;
     padding: 4px 8px;
     font-size: 0.75rem;
     border-radius: 4px;
     margin-top: 10px;
 }


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

 .modal[aria-hidden="false"] {
     opacity: 1;
     visibility: visible;
 }

 .modal-content {
     background: var(--bg-white);
     padding: 48px;
     border-radius: 24px;
     max-width: 480px;
     width: 90%;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     transform: scale(0.95);
     transition: var(--transition);
 }

 .modal[aria-hidden="false"] .modal-content {
     transform: scale(1);
 }

 .modal-content h2 {
     color: var(--text-main);
     margin-bottom: 16px;
 }

 .modal-actions {
     margin-top: 32px;
     display: flex;
     gap: 16px;
     justify-content: center;
 }

 .success-msg {
     color: #059669;
     background: #d1fae5;
     padding: 10px;
     border-radius: 8px;
     margin-top: 20px;
     font-weight: 600;
 }

 .hidden {
     display: none;
 }



 @media (max-width: 992px) {
     :root {
         --header-height: 70px;
     }

     .main-nav {
         position: fixed;
         top: 0;
         right: -100%;
         width: 85%;
         max-width: 300px;
         height: 100vh;
         background: var(--bg-white);
         flex-direction: column;
         justify-content: flex-start;
         align-items: stretch;
         padding: 80px 30px;
         box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
         transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 999;
     }

     .main-nav.open {
         right: 0;
     }

     .main-nav ul {
         flex-direction: column;
         gap: 20px;
         width: 100%;
         margin-right: 0;
         margin-bottom: 30px;
         align-items: flex-start;
     }

     .main-nav a {
         font-size: 1.1rem;
         display: block;
         padding: 10px 0;
         border-bottom: 1px solid #f3f4f6;
         width: 100%;
     }

     .main-nav a::after {
         display: none;
     }

     .mobile-menu-toggle {
         display: flex;
         z-index: 1001;
     }


     .main-nav.open~.mobile-menu-toggle span:nth-child(1) {
         transform: rotate(45deg) translate(5px, 5px);
     }

     .main-nav.open~.mobile-menu-toggle span:nth-child(2) {
         opacity: 0;
     }

     .main-nav.open~.mobile-menu-toggle span:nth-child(3) {
         transform: rotate(-45deg) translate(6px, -6px);
     }
 }

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

     .hero {
         padding: 60px 0;
     }

     .card-body {
         padding: 24px;
     }

     .filters-container {
         flex-direction: column;
         align-items: stretch;
     }

     .modal-actions {
         flex-direction: column;
     }

     .btn {
         width: 100%;
     }
 }

 .age-gate-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(17, 24, 39, 0.98);
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     backdrop-filter: blur(10px);
 }


 .age-gate-hidden {
     display: none !important;
 }

 .age-gate-content {
     background: white;
     padding: 50px;
     border-radius: 20px;
     max-width: 600px;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
     animation: fadeIn 0.5s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .age-gate-icon {
     margin-bottom: 20px;
     display: flex;
     justify-content: center;
 }

 .age-gate-content h1 {
     font-size: 1.8rem;
     margin-bottom: 15px;
     color: var(--text-main);
 }

 .age-gate-content p {
     color: var(--text-secondary);
     margin-bottom: 10px;
     line-height: 1.6;
 }

 .age-gate-content .question {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--text-main);
     margin: 25px 0;
 }

 .age-gate-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-top: 30px;
 }

 .btn-large {
     padding: 15px 40px;
     font-size: 1.1rem;
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: white;
     border-top: 1px solid #e5e7eb;
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
     padding: 20px;
     z-index: 9000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
     transform: translateY(0);
     transition: transform 0.4s ease;
 }

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

 .cookie-text {
     font-size: 0.9rem;
     color: var(--text-main);
     flex: 1;
 }

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

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


 .cookie-modal-content {
     text-align: left;
     max-width: 500px;
 }

 .cookie-option {
     margin-bottom: 20px;
     border-bottom: 1px solid #f3f4f6;
     padding-bottom: 10px;
 }

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

 .cookie-label {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     font-size: 1rem;
     color: var(--text-main);
 }

 .cookie-label input[type="checkbox"] {
     width: 18px;
     height: 18px;
     accent-color: var(--primary-red);
     cursor: pointer;
 }

 .cookie-desc {
     font-size: 0.85rem;
     color: var(--text-secondary);
     margin-left: 28px;
     margin-top: 5px;
 }


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

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

     .age-gate-content {
         padding: 30px 20px;
         width: 90%;
     }

     .age-gate-buttons {
         flex-direction: column;
     }

     .btn-large {
         width: 100%;
     }
 }