 :root {
     --bg-deep: #050a14;
     --bg-card: #0f1623;
     --text-main: #e6e6e6;
     --text-muted: #a0aab5;
     --accent-teal: #2dd4bf;
     --accent-purple: #a78bfa;
     --border-color: #1f2937;
     --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     --spacing-unit: 1.5rem;
 }

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

 body {
     font-family: var(--font-family);
     background: linear-gradient(135deg, var(--bg-deep) 0%, #0b1120 100%);
     color: var(--text-main);
     line-height: 1.6;
     overflow-x: hidden;
 }

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

 ul {
     list-style: none;
 }


 h1,
 h2,
 h3,
 h4 {
     font-weight: 600;
     margin-bottom: 1rem;
     color: #ffffff;
 }

 h1 {
     font-size: 2.5rem;
     line-height: 1.2;
 }

 h2 {
     font-size: 2rem;
     color: var(--accent-teal);
 }

 h3 {
     font-size: 1.5rem;
     color: var(--text-main);
 }

 p {
     margin-bottom: 1rem;
     color: var(--text-muted);
 }


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

 .btn {
     display: inline-block;
     padding: 0.8rem 1.5rem;
     border-radius: 4px;
     font-weight: 500;
     cursor: pointer;
     border: 1px solid transparent;
     font-size: 1rem;
 }

 .btn-primary {
     background: transparent;
     border-color: var(--accent-teal);
     color: var(--accent-teal);
 }

 .btn-primary:hover {
     background: var(--accent-teal);
     color: var(--bg-deep) !important;
     box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
 }

 .btn-secondary {
     background: transparent;
     border-color: var(--text-muted);
     color: var(--text-muted);
     font-size: 0.9rem;
 }

 .btn-secondary:hover {
     border-color: var(--text-main);
     color: var(--text-main);
 }

 .section-padding {
     padding: 4rem 0;
 }


 .top-strip {
     background-color: #000;
     color: var(--text-muted);
     font-size: 0.75rem;
     text-align: center;
     padding: 0.5rem;
     border-bottom: 1px solid var(--border-color);
     text-transform: uppercase;
     letter-spacing: 1px;
 }


 .main-header {
     position: sticky;
     top: 0;
     background-color: rgba(5, 10, 20, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid var(--border-color);
     z-index: 1000;
     padding: 1rem 0;
 }

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

 .logo-area {
     display: flex;
     flex-direction: column;
 }

 .logo-text {
     font-size: 1.25rem;
     font-weight: 700;
     color: #fff;
 }

 .logo-tagline {
     font-size: 0.75rem;
     color: var(--accent-teal);
 }

 .desktop-nav ul {
     display: flex;
     gap: 1.5rem;
     align-items: center;
 }

 .desktop-nav a {
     font-size: 0.95rem;
     color: var(--text-muted);
 }

 .desktop-nav a:hover {
     color: var(--accent-teal);
 }

 .auth-buttons {
     display: flex;
     gap: 1rem;
     align-items: center;
 }

 .auth-link {
     font-size: 0.9rem;
     color: var(--text-main);
     font-weight: 500;
 }

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

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }


 #overview {
     padding: 6rem 0;
     text-align: center;
     background: url('../img/hero.png') center center/cover no-repeat;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .pill-container {
     display: flex;
     justify-content: center;
     gap: 0.5rem;
     margin-top: 2rem;
     flex-wrap: wrap;
 }

 .pill {
     font-size: 0.8rem;
     padding: 0.25rem 0.75rem;
     border: 1px solid var(--border-color);
     border-radius: 20px;
     color: var(--accent-purple);
 }


 .info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     margin-top: 2rem;
 }

 .info-col {
     background: var(--bg-card);
     padding: 2rem;
     border-radius: 8px;
     border-left: 3px solid var(--accent-teal);
 }

 .info-col.negative {
     border-left-color: var(--accent-purple);
 }

 .info-col ul li {
     margin-bottom: 0.5rem;
     position: relative;
     padding-left: 1.5rem;
     color: var(--text-muted);
 }

 .info-col ul li::before {
     content: "•";
     position: absolute;
     left: 0;
     color: var(--text-main);
 }


 .help-list {
     margin-top: 2rem;
     border-top: 1px solid var(--border-color);
     padding-top: 2rem;
 }

 .help-list li {
     margin-bottom: 1rem;
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

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


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

 .format-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     padding: 2rem;
     transition: transform 0.2s;
 }

 .format-card:hover {
     transform: translateY(-5px);
     border-color: var(--accent-teal);
 }

 .format-icon {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: var(--accent-purple);
 }

 .guidance-box {
     background: rgba(45, 212, 191, 0.05);
     padding: 1rem;
     border-radius: 4px;
     margin-top: 1rem;
     font-size: 0.9rem;
 }

 .guidance-box strong {
     color: var(--accent-teal);
     display: block;
     margin-bottom: 0.5rem;
 }


 .timeline {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 1.5rem;
     margin-top: 3rem;
 }

 .timeline-step {
     position: relative;
     padding: 1.5rem;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     text-align: left;
 }

 .step-num {
     font-size: 3rem;
     font-weight: 700;
     color: rgba(255, 255, 255, 0.05);
     position: absolute;
     top: 0;
     right: 1rem;
     line-height: 1;
 }


 .faq-item {
     border-bottom: 1px solid var(--border-color);
     padding: 1.5rem 0;
 }

 .faq-q {
     font-weight: 600;
     color: var(--text-main);
     margin-bottom: 0.5rem;
 }

 .faq-a {
     color: var(--text-muted);
     font-size: 0.95rem;
 }


 .resp-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 3rem;
 }

 .support-box {
     background: linear-gradient(180deg, rgba(167, 139, 250, 0.1) 0%, rgba(5, 10, 20, 0) 100%);
     border: 1px solid var(--accent-purple);
     padding: 2rem;
     border-radius: 8px;
 }

 .account-banner {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     padding: 3rem;
     text-align: center;
     border-radius: 8px;
     margin: 4rem 0;
 }

 #age-gate {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--bg-deep);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1rem;
 }

 .gate-content {
     background: var(--bg-card);
     padding: 3rem;
     max-width: 500px;
     text-align: center;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
 }

 .gate-actions {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     margin-top: 2rem;
 }


 #cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--bg-card);
     border-top: 1px solid var(--accent-teal);
     padding: 1.5rem;
     z-index: 5000;
     display: none;
 }

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

 .cookie-buttons {
     display: flex;
     gap: 1rem;
 }


 @media (max-width: 768px) {
     .desktop-nav {
         display: none;
     }

     .mobile-toggle {
         display: block;
         color: #fff;
     }

     .info-grid,
     .resp-grid {
         grid-template-columns: 1fr;
     }

     h1 {
         font-size: 2rem;
     }

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

     .cookie-buttons {
         width: 100%;
         flex-wrap: wrap;
     }
 }

 .login-section {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 2rem 0;
 }

 .login-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     padding: 2.5rem;
     border-radius: 8px;
     width: 100%;
     max-width: 450px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
 }

 .login-header {
     margin-bottom: 2rem;
     text-align: center;
 }

 .login-header h1 {
     font-size: 1.75rem;
     margin-bottom: 0.5rem;
     color: #fff;
 }

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


 .notice-box {
     background: rgba(167, 139, 250, 0.1);
     border: 1px solid var(--accent-purple);
     padding: 1rem;
     border-radius: 4px;
     font-size: 0.85rem;
     color: var(--text-main);
     margin-bottom: 2rem;
     display: flex;
     gap: 0.75rem;
     align-items: flex-start;
 }

 .notice-icon {
     color: var(--accent-purple);
     font-size: 1.2rem;
     line-height: 1;
 }


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

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

 .form-input {
     width: 100%;
     padding: 0.8rem;
     background: #050a14;
     border: 1px solid var(--border-color);
     border-radius: 4px;
     color: #fff;
     font-family: inherit;
     font-size: 1rem;
 }

 .form-input:focus {
     outline: none;
     border-color: var(--accent-teal);
 }

 .form-footer {
     margin-top: 1.5rem;
     text-align: center;
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .form-footer a {
     color: var(--accent-teal);
     text-decoration: underline;
 }

 .register-section {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 3rem 0;
 }

 .register-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     padding: 2.5rem;
     border-radius: 8px;
     width: 100%;
     max-width: 500px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
 }

 .reg-header {
     margin-bottom: 2rem;
     text-align: center;
 }

 .reg-header h1 {
     font-size: 1.75rem;
     margin-bottom: 0.5rem;
     color: #fff;
 }

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


 .info-box {
     background: rgba(45, 212, 191, 0.05);
     border: 1px solid var(--accent-teal);
     padding: 1rem;
     border-radius: 4px;
     font-size: 0.85rem;
     color: var(--text-main);
     margin-bottom: 2rem;
     display: flex;
     gap: 0.75rem;
     align-items: flex-start;
 }

 .info-icon {
     color: var(--accent-teal);
     font-size: 1.2rem;
     line-height: 1;
 }


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

 .form-row {
     display: flex;
     gap: 1rem;
 }

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

 .form-input {
     width: 100%;
     padding: 0.8rem;
     background: #050a14;
     border: 1px solid var(--border-color);
     border-radius: 4px;
     color: #fff;
     font-family: inherit;
     font-size: 1rem;
 }

 .form-input:focus {
     outline: none;
     border-color: var(--accent-teal);
 }


 .checkbox-group {
     margin-bottom: 1rem;
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
 }

 .checkbox-group input[type="checkbox"] {
     margin-top: 0.25rem;
     transform: scale(1.2);
     cursor: pointer;
     accent-color: var(--accent-teal);
 }

 .checkbox-label {
     font-size: 0.85rem;
     color: var(--text-muted);
     line-height: 1.4;
     cursor: pointer;
 }

 .form-footer {
     margin-top: 1.5rem;
     text-align: center;
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .form-footer a {
     color: var(--accent-teal);
     text-decoration: underline;
 }

 .main .legal-wrapper {
     padding: 4rem 0;
 }

 .main h1 {
     font-size: 2.5rem;
     color: #fff;
     margin-bottom: 0.5rem;
 }

 .main .last-updated {
     color: var(--text-muted);
     font-style: italic;
     font-size: 0.9rem;
     margin-bottom: 3rem;
     display: block;
 }

 .main h2 {
     font-size: 1.8rem;
     color: var(--accent-teal);
     margin-top: 3rem;
     margin-bottom: 1.5rem;
     border-bottom: 1px solid var(--border-color);
     padding-bottom: 0.5rem;
 }

 .main h3 {
     font-size: 1.3rem;
     color: #fff;
     margin-top: 2rem;
     margin-bottom: 1rem;
 }

 .main p {
     margin-bottom: 1.5rem;
     color: var(--text-muted);
 }

 .main ul {
     margin-bottom: 1.5rem;
     padding-left: 1.5rem;
     color: var(--text-muted);
 }

 .main li {
     margin-bottom: 0.5rem;
 }


 .main .toc {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     padding: 2rem;
     border-radius: 8px;
     margin-bottom: 3rem;
 }

 .main .toc h3 {
     margin-top: 0;
     font-size: 1.1rem;
     color: var(--accent-purple);
 }

 .main .toc ul {
     margin-bottom: 0;
     list-style: none;
     padding-left: 0;
 }

 .main .toc li {
     margin-bottom: 0.5rem;
 }

 .main .toc a {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 .main .toc a:hover {
     color: var(--accent-teal);
 }

 .highlight-box {
     background: var(--bg-card);
     border-left: 4px solid var(--accent-purple);
     padding: 2rem;
     margin: 2rem 0;
     border-radius: 0 8px 8px 0;
 }

 .myth-fact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
     margin: 2rem 0;
 }

 .myth-card,
 .fact-card {
     padding: 1.5rem;
     border-radius: 8px;
     border: 1px solid var(--border-color);
 }

 .myth-card {
     background: rgba(248, 113, 113, 0.1);
     border-color: rgba(248, 113, 113, 0.3);
 }

 .fact-card {
     background: rgba(45, 212, 191, 0.1);
     border-color: rgba(45, 212, 191, 0.3);
 }

 .myth-label {
     color: var(--accent-red);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.8rem;
     margin-bottom: 0.5rem;
     display: block;
 }

 .fact-label {
     color: var(--accent-teal);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.8rem;
     margin-bottom: 0.5rem;
     display: block;
 }

 .resources-list {
     background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%);
     border: 1px solid var(--border-color);
     padding: 2rem;
     border-radius: 8px;
 }

 .resource-item {
     margin-bottom: 1.5rem;
     padding-bottom: 1.5rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .resource-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .resource-name {
     font-weight: 700;
     color: #fff;
     font-size: 1.1rem;
 }

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

 .table-responsive {
     overflow-x: auto;
     margin-bottom: 2rem;
     border: 1px solid var(--border-color);
     border-radius: 8px;
 }

 table {
     width: 100%;
     border-collapse: collapse;
     background: var(--bg-card);
     min-width: 600px;
 }

 th,
 td {
     padding: 1rem;
     text-align: left;
     border-bottom: 1px solid var(--border-color);
     font-size: 0.9rem;
 }

 th {
     background-color: rgba(5, 10, 20, 0.5);
     color: #fff;
     font-weight: 600;
 }

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

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

 .mpc-footer {
     background-color: #121b2e;
     color: #e5e7eb;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
     font-size: 14px;
     line-height: 1.6;
 }

 .mpc-footer.border-slate {
     border-color: #1f2937 !important;
 }


 .mpc-footer .container-xxl {
     max-width: 1200px;
     margin-inline: auto;
     padding-top: 48px;
     padding-bottom: 40px;
 }


 .mpc-footer a {
     color: #e5e7eb;
     text-decoration: none;
 }

 .mpc-footer a:hover {
     color: #ffffff;
 }



 .mpc-footer .navbar-brand {
     padding: 0;
     margin-bottom: 24px;
     display: inline-flex;
     align-items: center;
     color: #f9fafb;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     font-size: 18px;
     font-weight: 600;
 }

 .mpc-footer .navbar-brand img {
     display: block;
     height: 42px;
     width: auto;
 }

 .mpc-footer p {
     margin-bottom: 8px;
     color: #d1d5db;
     font-size: 15px;
 }


 .mpc-footer a[href*="responsiblegambling.org"] {
     color: #63ac8d;
     font-weight: 600;
     text-decoration: underline;
     text-decoration-thickness: 2px;
     text-underline-offset: 3px;
 }




 .mpc-footer>.container-xxl>.row {
     display: flex;
     flex-wrap: wrap;
 }


 .mpc-footer>.container-xxl>.row>.col-md-12 {
     flex: 0 0 100%;
     max-width: 100%;
 }


 .mpc-footer>.container-xxl>.row>.col-md-6 {
     box-sizing: border-box;
     flex: 0 0 50%;
     max-width: 50%;
 }


 .mpc-footer>.container-xxl>.row>.col-12 {
     flex: 0 0 100%;
     max-width: 100%;
 }


 .mpc-footer .nav-pages>.row {
     display: flex;
     flex-wrap: wrap;
 }

 .mpc-footer .nav-pages>.row>.col-6 {
     box-sizing: border-box;
     flex: 0 0 50%;
     max-width: 50%;
 }



 .mpc-footer .nav-pages {
     margin-top: 40px;
 }

 .mpc-footer .label-nav {
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: #9ca3af;
     margin-bottom: 18px;
 }

 .mpc-footer .nav-pages a {
     display: block;
     font-size: 14px;
     color: #e5e7eb;
     opacity: 0.86;
     margin-bottom: 6px;
 }

 .mpc-footer .nav-pages a:hover {
     opacity: 1;
 }



 .mpc-footer .logo-trust {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 22px;
     margin-top: 4px;
 }

 .mpc-footer .logo-trust .age18 {
     width: 54px;
     height: 54px;
     border-radius: 50%;
     border: 3px solid #f04242;
     background: #121b2e;
     color: #f04242;
     font-weight: 700;
     font-size: 19px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .mpc-footer .logo-trust img {
     display: block;
     height: 38px;
     width: auto;
 }



 .mpc-footer .border-top.border-secondary {
     border-color: #1f2937 !important;
 }

 .mpc-footer .text-center.pt-3.mt-4 {
     padding-top: 18px !important;
     margin-top: 40px !important;
 }

 .mpc-footer .small {
     color: #9ca3af;
     line-height: 1.5;
 }

 .mpc-footer .small.fw-bold {
     color: #e5e7eb;
 }



 @media (max-width: 991.98px) {

     .mpc-footer>.container-xxl>.row>.col-md-6 {
         flex: 0 0 100%;
         max-width: 100%;
     }

     .mpc-footer .nav-pages {
         margin-top: 32px;
     }

     .mpc-footer .logo-trust {
         justify-content: flex-start;
         margin-top: 16px;
     }
 }

 @media (max-width: 575.98px) {
     .mpc-footer .container-xxl {
         padding-top: 36px;
         padding-bottom: 32px;
     }

     .mpc-footer .navbar-brand {
         font-size: 16px;
         letter-spacing: 0.12em;
         margin-bottom: 20px;
     }


     .mpc-footer .nav-pages>.row>.col-6 {
         flex: 0 0 100%;
         max-width: 100%;
         margin-bottom: 18px;
     }

     .mpc-footer .logo-trust {
         gap: 14px;
     }

     .mpc-footer .logo-trust .age18 {
         width: 48px;
         height: 48px;
         font-size: 17px;
     }

     .mpc-footer .logo-trust img {
         height: 30px;
     }

     .mpc-footer .small {
         font-size: 11px;
     }
 }