 :root {

     --navy-dark: #0f172a;
     --navy-primary: #1e293b;
     --navy-light: #334155;

     --teal-primary: #0d9488;
     --teal-hover: #0f766e;
     --teal-light: #ccfbf1;

     --bg-body: #f8fafc;
     --bg-white: #ffffff;
     --bg-glass: rgba(255, 255, 255, 0.85);

     --border-color: #e2e8f0;
     --text-main: #1e293b;
     --text-muted: #64748b;


     --container-width: 1140px;
     --header-height: 72px;
     --radius-md: 12px;
     --radius-sm: 6px;


     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }


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

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

 body {
     font-family: 'Inter', system-ui, -apple-system, sans-serif;
     color: var(--text-main);
     background-color: var(--bg-body);
     line-height: 1.65;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

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

 ul {
     list-style: none;
 }

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


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

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


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

 .btn-primary {
     background-color: var(--teal-primary);
     color: white;
     box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
 }

 .btn-primary:hover {
     background-color: var(--teal-hover);
     transform: translateY(-1px);
     box-shadow: 0 6px 10px rgba(13, 148, 136, 0.3);
 }

 .btn-text {
     color: var(--navy-primary);
     background: transparent;
 }

 .btn-text:hover {
     color: var(--teal-primary);
     background-color: rgba(13, 148, 136, 0.05);
 }



 .compliance-bar {
     background-color: var(--navy-dark);
     color: rgba(255, 255, 255, 0.9);
     text-align: center;
     padding: 0.6rem 1rem;
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.02em;
     text-transform: uppercase;
 }


 .main-header {
     background: var(--bg-glass);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(226, 232, 240, 0.6);
     height: var(--header-height);
     position: sticky;
     top: 0;
     z-index: 1000;
     display: flex;
     align-items: center;
 }

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

 .brand-logo {
     font-weight: 800;
     font-size: 1.35rem;
     color: var(--navy-dark);
     letter-spacing: -0.02em;
 }

 .main-nav {
     display: flex;
     align-items: center;
     gap: 2.5rem;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
 }

 .nav-links a {
     color: var(--navy-light);
     font-size: 0.925rem;
     font-weight: 500;
     position: relative;
 }

 .nav-links a:hover {
     color: var(--navy-dark);
 }


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

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

 .auth-buttons {
     display: flex;
     gap: 1rem;
     padding-left: 2rem;
     border-left: 1px solid var(--border-color);
 }


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

 .burger-menu span {
     width: 24px;
     height: 2px;
     background-color: var(--navy-primary);
     transition: var(--transition);
     border-radius: 2px;
 }




 .hero-section {
     padding: 9rem 0 7rem;
     text-align: center;

     background: url('../img/hero.png') center center/cover no-repeat;
     position: relative;
     overflow: hidden;
 }


 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.8);
     z-index: 1;
     pointer-events: none;
 }


 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 860px;
     margin: 0 auto;
 }


 .hero-section h1 {
     font-size: 3.5rem;
     font-weight: 800;
     color: #ffffff !important;
     margin-bottom: 1.5rem;
     line-height: 1.1;
     letter-spacing: -0.02em;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-desc {
     font-size: 1.25rem;
     color: #e2e8f0 !important;
     margin-bottom: 2.5rem;
     max-width: 680px;
     margin-left: auto;
     margin-right: auto;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
 }

 .tagline {
     display: inline-block;
     text-transform: uppercase;
     color: #2dd4bf;
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 1.5px;
     margin-bottom: 1.5rem;
     background: rgba(255, 255, 255, 0.1);
     padding: 0.35rem 0.85rem;
     border-radius: 20px;
     backdrop-filter: blur(4px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }


 .feature-badge {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: #f1f5f9;
     backdrop-filter: blur(4px);
 }

 .feature-badge::before {
     color: #2dd4bf;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 860px;
     margin: 0 auto;
 }

 .tagline {
     display: inline-block;
     text-transform: uppercase;
     color: var(--teal-primary);
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 1.5px;
     margin-bottom: 1rem;
     background: rgba(20, 184, 166, 0.1);
     padding: 0.25rem 0.75rem;
     border-radius: 20px;
 }

 .hero-section h1 {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--navy-dark);
     margin-bottom: 1.5rem;
     line-height: 1.1;
     letter-spacing: -0.02em;
 }

 .hero-desc {
     font-size: 1.25rem;
     color: var(--navy-light);
     margin-bottom: 2.5rem;
     max-width: 680px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-features {
     margin-top: 4rem;
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .feature-badge {
     background: var(--bg-white);
     border: 1px solid var(--border-color);
     padding: 0.6rem 1.2rem;
     border-radius: 100px;
     font-size: 0.9rem;
     color: var(--text-muted);
     box-shadow: var(--shadow-sm);
     display: flex;
     align-items: center;
 }

 .feature-badge::before {
     content: '•';
     color: var(--teal-primary);
     margin-right: 8px;
     font-size: 1.2rem;
     line-height: 0;
 }


 .disclaimer-block {
     padding: 4rem 0;
     background-color: var(--bg-white);
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
 }

 .disclaimer-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2.5rem;
 }

 .disclaimer-card {
     padding: 2.5rem;
     border-radius: var(--radius-md);
     position: relative;
     overflow: hidden;
 }

 .yes-card {
     background-color: #f0fdfa;
     border: 1px solid #ccfbf1;
 }

 .no-card {
     background-color: #f1f5f9;
     border: 1px solid #e2e8f0;
 }

 .disclaimer-card h3 {
     margin-bottom: 1.25rem;
     font-size: 1.35rem;
     color: var(--navy-dark);
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .disclaimer-card ul li {
     margin-bottom: 0.75rem;
     padding-left: 1.5rem;
     position: relative;
     color: var(--navy-primary);
     font-size: 1.05rem;
 }


 .yes-card ul li::before {
     content: "✓";
     position: absolute;
     left: 0;
     color: var(--teal-primary);
     font-weight: bold;
 }

 .no-card ul li::before {
     content: "✕";
     position: absolute;
     left: 0;
     color: var(--text-muted);
     font-size: 0.9rem;
     top: 2px;
 }


 .usage-guide {
     padding: 4rem 0;
     background-color: var(--navy-dark);
     color: white;
     background-image: linear-gradient(to bottom right, var(--navy-dark), #020617);
 }

 .usage-guide h2 {
     margin-bottom: 1.5rem;
     font-size: 2rem;
 }

 .usage-guide p {
     font-size: 1.15rem;
     color: #cbd5e1;
     max-width: 700px;
     margin: 0 auto;
 }


 .formats-section {
     padding: 7rem 0;
 }

 .section-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .section-header h2 {
     font-size: 2.5rem;
     color: var(--navy-dark);
     margin-bottom: 1rem;
     letter-spacing: -0.02em;
 }

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

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

 .format-card {
     background: var(--bg-white);
     border: 1px solid var(--border-color);
     padding: 2.5rem;
     border-radius: var(--radius-md);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

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

 .card-icon {
     font-size: 1.5rem;
     color: var(--teal-primary);
     margin-bottom: 1.5rem;
     width: 60px;
     height: 60px;
     background: #f0fdfa;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

 .format-card h3 {
     font-size: 1.35rem;
     margin-bottom: 0.75rem;
     color: var(--navy-dark);
 }

 .format-card .intro {
     color: var(--text-muted);
     margin-bottom: 2rem;
     flex-grow: 1;
 }

 .format-card h4 {
     font-size: 0.8rem;
     text-transform: uppercase;
     color: var(--navy-light);
     margin: 1.5rem 0 0.75rem;
     font-weight: 700;
     letter-spacing: 0.05em;
 }

 .example-box {
     background: var(--bg-body);
     padding: 1.25rem;
     border-radius: var(--radius-sm);
     font-size: 0.9rem;
     color: var(--navy-primary);
     margin-top: 1.5rem;
     border-left: 3px solid var(--teal-primary);
 }


 .calm-guide-section {
     padding: 6rem 0;
     background-color: #f8fafc;
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
 }

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

 .step-item {
     background: var(--bg-white);
     padding: 2.5rem 2rem;
     border-radius: var(--radius-md);
     text-align: center;
     box-shadow: var(--shadow-sm);
     transition: var(--transition);
 }

 .step-item:hover {
     box-shadow: var(--shadow-md);
 }

 .step-num {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--teal-primary);
     color: white;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     margin-bottom: 1.5rem;
     font-weight: 700;
     font-size: 1.1rem;
     box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
 }

 .step-item h3 {
     color: var(--navy-dark);
     margin-bottom: 0.75rem;
 }

 .step-item p {
     color: var(--text-muted);
     font-size: 0.95rem;
 }


 .faq-section {
     padding: 6rem 0;
 }

 .faq-grid {
     display: grid;
     gap: 1.5rem;
     max-width: 800px;
     margin: 3rem auto 0;
 }

 .faq-item {
     background: var(--bg-white);
     border: 1px solid var(--border-color);
     padding: 2rem;
     border-radius: var(--radius-md);
 }

 .faq-item h3 {
     font-size: 1.15rem;
     color: var(--navy-dark);
     margin-bottom: 0.75rem;
 }


 .responsible-section {
     padding: 6rem 0;
     background-color: var(--navy-dark);
     color: #e2e8f0;
     position: relative;
 }

 .resp-columns {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     margin-bottom: 4rem;
 }

 .resp-col h3 {
     color: var(--teal-primary);
     margin-bottom: 1.5rem;
     font-size: 1.5rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding-bottom: 1rem;
 }

 .resp-col ul li {
     margin-bottom: 1rem;
     padding-left: 1.5rem;
     position: relative;
     color: #cbd5e1;
 }

 .resp-col ul li::before {
     content: "•";
     color: var(--teal-primary);
     position: absolute;
     left: 0;
 }

 .support-box {
     background: rgba(255, 255, 255, 0.05);
     padding: 3rem;
     border-radius: var(--radius-md);
     text-align: center;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .resource-links a {
     color: var(--teal-light);
     text-decoration: none;
     border-bottom: 1px solid rgba(204, 251, 241, 0.3);
     padding-bottom: 2px;
 }

 .resource-links a:hover {
     color: white;
     border-color: white;
 }


 .account-cta {
     padding: 6rem 0;
 }

 .cta-card {
     background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
     padding: 5rem 2rem;
     border-radius: 20px;
     text-align: center;
     max-width: 900px;
     margin: 0 auto;
     box-shadow: var(--shadow-md);
 }

 .cta-card h2 {
     color: #115e59;
     font-size: 2.25rem;
     margin-bottom: 1rem;
 }

 .cta-card p {
     color: #134e4a;
     font-size: 1.15rem;
     margin-bottom: 2.5rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .disclaimer {
     font-size: 0.85rem;
     color: #64748b;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 @media (max-width: 900px) {
     :root {
         --header-height: 64px;
     }

     .hero-section h1 {
         font-size: 2.5rem;
     }

     .hero-desc {
         font-size: 1.1rem;
     }

     .disclaimer-grid,
     .resp-columns {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }


     .burger-menu {
         display: flex;
     }

     .main-nav {
         position: fixed;
         top: var(--header-height);
         left: 0;
         width: 100%;
         height: 0;
         background: var(--bg-white);
         flex-direction: column;
         overflow: hidden;
         transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
         padding-top: 0;
         box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
         border-bottom: 1px solid var(--border-color);
     }

     .main-nav.active {
         height: calc(100vh - var(--header-height));
         padding-top: 2rem;
     }

     .nav-links {
         flex-direction: column;
         align-items: center;
         width: 100%;
         gap: 1.5rem;
         margin-bottom: 2.5rem;
     }

     .nav-links a {
         font-size: 1.25rem;
         font-weight: 600;
     }

     .auth-buttons {
         flex-direction: column;
         width: 80%;
         text-align: center;
         padding-left: 0;
         border-left: none;
         padding-top: 2rem;
         border-top: 1px solid var(--border-color);
     }
 }

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

 .auth-container {
     max-width: 400px;
     margin: 4rem auto;
     padding: 2rem;
     background: white;
     border: 1px solid var(--border);
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

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

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

 .form-control {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid var(--border);
     border-radius: 6px;
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
     font-size: 0.85rem;
     color: var(--slate);
 }

 .auth-wrapper {
     min-height: 80vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 2rem 0;
 }

 .auth-card {
     background: var(--bg-white);
     max-width: 480px;
     margin: 0 auto;
     padding: 3rem;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-lg);
     border: 1px solid var(--border-color);
 }

 .auth-header {
     text-align: center;
     margin-bottom: 2.5rem;
 }

 .auth-header h1 {
     color: var(--navy-dark);
     font-size: 1.75rem;
     margin-bottom: 0.5rem;
 }

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


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

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: var(--navy-primary);
     font-weight: 500;
     font-size: 0.9rem;
 }

 .form-control {
     width: 100%;
     padding: 0.85rem 1rem;
     border: 1px solid var(--border-color);
     border-radius: var(--radius-sm);
     font-family: inherit;
     font-size: 1rem;
     color: var(--text-main);
     background-color: var(--bg-body);
     transition: var(--transition);
 }

 .form-control:focus {
     outline: none;
     border-color: var(--teal-primary);
     box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
     background-color: var(--bg-white);
 }


 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     margin-bottom: 2rem;
     background-color: #f0fdfa;
     padding: 1rem;
     border-radius: var(--radius-sm);
     border: 1px solid #ccfbf1;
 }

 .checkbox-group input[type="checkbox"] {
     margin-top: 0.25rem;
     accent-color: var(--teal-primary);
     width: 18px;
     height: 18px;
     cursor: pointer;
 }

 .checkbox-group label {
     font-size: 0.85rem;
     color: var(--navy-primary);
     line-height: 1.4;
     cursor: pointer;
     margin-bottom: 0;
 }

 .auth-footer {
     text-align: center;
     margin-top: 2rem;
     padding-top: 1.5rem;
     border-top: 1px solid var(--border-color);
     font-size: 0.9rem;
     color: var(--text-muted);
 }

 .auth-footer a {
     color: var(--teal-primary);
     font-weight: 600;
 }

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

 .btn-full {
     width: 100%;
 }

 .legal-header {
     background-color: var(--navy-dark);
     color: white;
     padding: 4rem 0;
     text-align: center;
 }

 .legal-header h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .legal-meta {
     color: var(--teal-light);
     font-size: 0.9rem;
     font-family: monospace;
 }

 .legal-container {
     max-width: 800px;
     margin: 0 auto;
     padding: 4rem 1.5rem;
     background: var(--bg-white);
     box-shadow: var(--shadow-sm);
     min-height: 80vh;
 }

 .legal-content {
     font-size: 1.05rem;
     color: var(--navy-primary);
 }

 .legal-content h2 {
     font-size: 1.5rem;
     color: var(--navy-dark);
     margin-top: 3rem;
     margin-bottom: 1.25rem;
     padding-bottom: 0.75rem;
     border-bottom: 1px solid var(--border-color);
 }

 .legal-content h3 {
     font-size: 1.15rem;
     color: var(--teal-hover);
     margin-top: 2rem;
     margin-bottom: 1rem;
 }

 .legal-content p {
     margin-bottom: 1.25rem;
     line-height: 1.7;
     color: var(--text-main);
 }

 .legal-content ul {
     margin-bottom: 1.5rem;
     padding-left: 1.5rem;
     list-style-type: disc;
 }

 .legal-content li {
     margin-bottom: 0.75rem;
     padding-left: 0.5rem;
     color: var(--text-main);
 }

 .legal-content strong {
     color: var(--navy-dark);
     font-weight: 600;
 }


 .legal-notice-box {
     background: #f1f5f9;
     border-left: 4px solid var(--navy-light);
     padding: 1.5rem;
     margin: 2rem 0;
     font-size: 0.95rem;
     font-style: italic;
 }

 .legal-content strong {
     color: var(--navy-dark);
     font-weight: 600;
 }

 .warning-box {
     background-color: #fff1f2;
     border-left: 4px solid #e11d48;
     padding: 1.5rem;
     margin: 2rem 0;
     color: #881337;
     font-weight: 500;
 }

 .info-box {
     background-color: #f0fdfa;
     border: 1px solid #ccfbf1;
     padding: 1.5rem;
     border-radius: 8px;
     margin: 2rem 0;
 }

 .page-hero {
     background-color: var(--navy-dark);
     color: white;
     padding: 5rem 0;
     text-align: center;
 }

 .page-hero h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .page-hero p {
     max-width: 700px;
     margin: 0 auto;
     color: #cbd5e1;
     font-size: 1.1rem;
 }

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

 .text-block {
     margin-bottom: 3rem;
 }

 .text-block h2 {
     color: var(--navy-dark);
     font-size: 1.75rem;
     margin-bottom: 1.5rem;
 }

 .text-block h3 {
     color: var(--teal-hover);
     font-size: 1.25rem;
     margin-bottom: 1rem;
     margin-top: 2rem;
 }

 .text-block p {
     margin-bottom: 1rem;
     color: var(--navy-primary);
     font-size: 1.05rem;
 }


 .myth-box {
     background: white;
     border: 1px solid var(--border-color);
     border-radius: var(--radius-md);
     padding: 2rem;
     margin: 1.5rem 0;
     box-shadow: var(--shadow-sm);
 }

 .myth-label {
     text-transform: uppercase;
     font-weight: 700;
     font-size: 0.8rem;
     letter-spacing: 1px;
     margin-bottom: 0.5rem;
     display: block;
 }

 .myth-text {
     color: #dc2626;
     margin-bottom: 1rem;
     font-weight: 500;
 }

 .fact-text {
     color: var(--teal-primary);
     font-weight: 600;
 }


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

 .resource-card {
     background: #f8fafc;
     border: 1px solid var(--border-color);
     padding: 2rem;
     border-radius: var(--radius-md);
     text-align: center;
     transition: var(--transition);
 }

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

 .resource-card h4 {
     color: var(--navy-dark);
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }

 .resource-card p {
     font-size: 0.9rem;
     color: var(--text-muted);
     margin-bottom: 1.5rem;
 }


 .checklist {
     list-style: none;
     margin: 1.5rem 0;
 }

 .checklist li {
     padding: 1rem;
     border-bottom: 1px solid var(--border-color);
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .checklist li::before {
     content: "?";
     background: var(--teal-light);
     color: var(--teal-primary);
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     flex-shrink: 0;
 }

 .hidden {
     display: none !important;
 }

 .btn-full {
     width: 100%;
     text-align: center;
 }

 .btn-outline {
     border: 1px solid var(--border-color);
     background: transparent;
     color: var(--text-muted);
     padding: 0.75rem 1.75rem;
     border-radius: var(--radius-sm);
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
 }

 .btn-outline:hover {
     border-color: var(--navy-primary);
     color: var(--navy-dark);
 }

 .age-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.95);
     backdrop-filter: blur(8px);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1.5rem;
 }

 .age-card {
     background: white;
     padding: 3rem;
     border-radius: var(--radius-md);
     max-width: 450px;
     width: 100%;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border: 1px solid var(--border-color);
 }

 .age-icon {
     font-size: 2rem;
     font-weight: 800;
     color: var(--teal-primary);
     border: 3px solid var(--teal-primary);
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
 }

 .age-card h2 {
     color: var(--navy-dark);
     margin-bottom: 1rem;
 }

 .age-card p {
     color: var(--navy-light);
     margin-bottom: 1.5rem;
 }

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

 .age-buttons {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--bg-white);
     border-top: 1px solid var(--border-color);
     padding: 1.5rem;
     box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
     z-index: 9000;
     animation: slideUp 0.5s ease-out;
 }

 .cookie-content {
     max-width: var(--container-width);
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 2rem;
     flex-wrap: wrap;
 }

 .cookie-actions {
     display: flex;
     gap: 1rem;
     align-items: center;
 }

 @keyframes slideUp {
     from {
         transform: translateY(100%);
     }

     to {
         transform: translateY(0);
     }
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 9100;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1rem;
 }

 .modal-card {
     background: var(--bg-white);
     border-radius: var(--radius-md);
     width: 100%;
     max-width: 500px;
     overflow: hidden;
     box-shadow: var(--shadow-lg);
 }

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

 .modal-header h3 {
     font-size: 1.25rem;
     color: var(--navy-dark);
     margin: 0;
 }

 .close-btn {
     background: none;
     border: none;
     font-size: 2rem;
     line-height: 1;
     cursor: pointer;
     color: var(--text-muted);
 }

 .modal-body {
     padding: 1.5rem;
 }

 .modal-footer {
     padding: 1.5rem;
     border-top: 1px solid var(--border-color);
     background: var(--bg-body);
 }

 .toggle-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
     gap: 1rem;
 }

 .toggle-info strong {
     display: block;
     color: var(--navy-dark);
 }

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

 .toggle-switch {
     position: relative;
     display: inline-block;
     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: #cbd5e1;
     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(--teal-primary);
 }

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

 .toggle-switch.disabled {
     opacity: 0.6;
     pointer-events: none;
 }

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

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