 :root {
     --bg-dark: #0B1623;
     --bg-card: #152232;
     --bg-lighter: #1C2D41;
     --text-main: #E6F1FF;
     --text-muted: #94A3B8;
     --accent-teal: #64FFDA;
     --accent-soft-blue: #5C95FF;
     --border-color: #2A3F55;
     --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
     --max-width: 1150px;
     --spacing-sm: 1rem;
     --spacing-md: 2rem;
     --spacing-lg: 4rem;
 }

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

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

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

 ul {
     list-style: none;
 }

 h1,
 h2,
 h3,
 h4 {
     font-weight: 600;
     color: var(--text-main);
     margin-bottom: 1rem;
 }

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

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

 .btn {
     display: inline-block;
     padding: 0.8rem 1.6rem;
     border-radius: 4px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 0.95rem;
     border: 1px solid transparent;
 }

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

 .btn-primary:hover {
     background-color: rgba(100, 255, 218, 0.1);
 }

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

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

 .section-padding {
     padding: var(--spacing-lg) 0;
 }

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

 .age-strip span {
     color: var(--accent-teal);
     font-weight: bold;
 }

 header {
     position: sticky;
     top: 0;
     background-color: rgba(11, 22, 35, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     border-bottom: 1px solid var(--border-color);
 }

 .header-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
 }

 .logo-area h2 {
     font-size: 1.25rem;
     margin-bottom: 0;
     letter-spacing: -0.5px;
 }

 .logo-area span {
     display: block;
     font-size: 0.7rem;
     color: var(--accent-soft-blue);
     font-weight: 400;
 }

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

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

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

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

 .btn-small {
     padding: 0.5rem 1rem;
     font-size: 0.8rem;
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     background: none;
     border: none;
     color: var(--text-main);
     cursor: pointer;
 }

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

 .hero h1 {
     font-size: 2.5rem;
     max-width: 800px;
     margin: 0 auto 1.5rem;
     line-height: 1.2;
 }

 .hero-desc {
     max-width: 600px;
     margin: 0 auto 2rem;
     font-size: 1.1rem;
 }

 .hero-badges {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-top: 1.5rem;
     font-size: 0.8rem;
     color: var(--text-muted);
 }

 .badge-icon {
     color: var(--accent-teal);
     margin-right: 0.5rem;
 }

 .info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     background-color: var(--bg-card);
     border-radius: 8px;
     padding: 3rem;
     border: 1px solid var(--border-color);
 }

 .info-col h3 {
     color: var(--accent-soft-blue);
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

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

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

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

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

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

 .format-header {
     margin-bottom: 1.5rem;
     padding-bottom: 1rem;
     border-bottom: 1px solid var(--border-color);
 }

 .format-header h4 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
 }

 .meta-line {
     font-size: 0.8rem;
     color: var(--accent-soft-blue);
 }

 .sub-head {
     font-size: 0.9rem;
     font-weight: bold;
     color: var(--text-main);
     margin-top: 1rem;
     margin-bottom: 0.5rem;
 }

 .example-box {
     background-color: var(--bg-dark);
     padding: 1rem;
     border-radius: 4px;
     margin: 1rem 0;
     font-family: monospace;
     color: var(--accent-teal);
     font-size: 0.9rem;
 }

 .steps-wrapper {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     max-width: 800px;
     margin: 0 auto;
 }

 .step-item {
     display: flex;
     gap: 1.5rem;
 }

 .step-num {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: var(--bg-lighter);
     border: 1px solid var(--accent-teal);
     color: var(--accent-teal);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
 }

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

 details summary {
     padding: 1rem 0;
     cursor: pointer;
     font-weight: 500;
     list-style: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 details summary::-webkit-details-marker {
     display: none;
 }

 details summary::after {
     content: "+";
     font-size: 1.2rem;
     color: var(--accent-teal);
 }

 details[open] summary::after {
     content: "-";
 }

 .faq-answer {
     padding-bottom: 1.5rem;
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 .account-box {
     background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-lighter) 100%);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     padding: 3rem;
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
 }

 .disclaimer-list {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin-top: 2rem;
     font-size: 0.85rem;
     color: var(--text-muted);
     flex-wrap: wrap;
 }

 .legal-block {
     border-top: 1px solid var(--border-color);
     padding-top: 2rem;
     color: #556075;
     font-size: 0.8rem;
     text-align: center;
 }

 .legal-block p {
     color: inherit;
     margin-bottom: 0.5rem;
 }

 @media (max-width: 768px) {
     .nav-menu {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 80px;
         left: 0;
         width: 100%;
         background-color: var(--bg-dark);
         padding: 1rem;
         border-bottom: 1px solid var(--border-color);
     }

     .nav-menu.active {
         display: flex;
     }

     .header-actions {
         display: none;
     }

     .mobile-toggle {
         display: block;
     }

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

     .hero h1 {
         font-size: 1.8rem;
     }
 }

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

 .login-wrapper {
     width: 100%;
     max-width: 420px;
     margin: 40px auto;
 }

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

 .brand-header h1 {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--text-main);
     margin-bottom: 0.5rem;
 }

 .brand-header p {
     color: var(--accent-teal);
     font-size: 0.9rem;
 }

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

 .info-notice {
     background-color: rgba(92, 149, 255, 0.1);
     border: 1px solid rgba(92, 149, 255, 0.2);
     border-radius: 4px;
     padding: 0.75rem;
     font-size: 0.85rem;
     color: var(--text-muted);
     margin-bottom: 1.5rem;
     text-align: center;
 }

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

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

 .form-input {
     width: 100%;
     padding: 0.8rem;
     background-color: var(--bg-dark);
     border: 1px solid var(--border-color);
     border-radius: 4px;
     color: var(--text-main);
     font-size: 1rem;
     transition: border-color 0.2s ease;
 }

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

 .btn-submit {
     width: 100%;
     padding: 0.9rem;
     background-color: transparent;
     border: 1px solid var(--accent-teal);
     color: var(--accent-teal);
     font-weight: 600;
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.2s ease;
     margin-top: 1rem;
 }

 .btn-submit:hover {
     background-color: rgba(100, 255, 218, 0.1);
 }

 .links-row {
     display: flex;
     justify-content: space-between;
     margin-top: 1.5rem;
     font-size: 0.85rem;
 }

 .links-row a {
     color: var(--text-muted);
     text-decoration: none;
     transition: color 0.2s;
 }

 .links-row a:hover {
     color: var(--accent-teal);
 }

 .register-wrapper {
     width: 100%;
     max-width: 480px;
     margin: 40px auto;
 }

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

 .purpose-notice {
     background-color: rgba(100, 255, 218, 0.05);
     border: 1px solid rgba(100, 255, 218, 0.2);
     border-radius: 4px;
     padding: 1rem;
     font-size: 0.85rem;
     color: var(--text-muted);
     margin-bottom: 1.5rem;
 }

 .purpose-notice strong {
     color: var(--accent-teal);
     display: block;
     margin-bottom: 0.25rem;
 }

 .page .main-content {
     padding: 4rem 0;
 }

 .page h1 {
     font-size: 2.5rem;
     margin-bottom: 0.5rem;
     color: var(--text-main);
 }

 .page .last-updated {
     color: var(--text-muted);
     font-size: 0.9rem;
     margin-bottom: 3rem;
     display: block;
     border-bottom: 1px solid var(--border-color);
     padding-bottom: 2rem;
 }

 .page h2 {
     color: var(--accent-teal);
     font-size: 1.5rem;
     margin-top: 3rem;
     margin-bottom: 1rem;
 }

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

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

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

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

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

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin: 2rem 0;
     font-size: 0.9rem;
     background-color: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 4px;
     overflow: hidden;
 }

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

 .cookie-table th {
     background-color: var(--bg-lighter);
     color: var(--text-main);
     font-weight: 600;
 }

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

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

 .info-box {
     background-color: var(--bg-lighter);
     padding: 1.5rem;
     border-radius: 4px;
     margin: 1.5rem 0;
     border: 1px solid var(--border-color);
 }

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

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

 .card h4 {
     color: var(--text-main);
     font-size: 1.1rem;
     margin-bottom: 1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .myth-table {
     width: 100%;
     border-collapse: collapse;
     margin: 2rem 0;
     background-color: var(--bg-card);
     border-radius: 8px;
     overflow: hidden;
 }

 .myth-table th,
 .myth-table td {
     padding: 1.5rem;
     text-align: left;
     border-bottom: 1px solid var(--border-color);
     vertical-align: top;
 }

 .myth-table th {
     background-color: var(--bg-lighter);
     font-size: 1.1rem;
     width: 50%;
 }

 .myth-col-myth {
     color: var(--accent-warning);
 }

 .myth-col-fact {
     color: var(--accent-teal);
 }

 .warning-box {
     background-color: rgba(255, 171, 112, 0.1);
     border: 1px solid var(--accent-warning);
     padding: 2rem;
     border-radius: 8px;
     margin-top: 2rem;
 }

 .warning-box h3 {
     color: var(--accent-warning);
     margin-top: 0;
 }

 .resource-list {
     list-style: none;
     padding: 0;
 }

 .resource-list li {
     background-color: var(--bg-lighter);
     padding: 1.5rem;
     margin-bottom: 1rem;
     border-radius: 6px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
 }

 .resource-list strong {
     color: var(--text-main);
     font-size: 1.1rem;
 }

 @media (max-width: 768px) {

     .myth-table th,
     .myth-table td {
         display: block;
         width: 100%;
     }

     .myth-table th {
         border-bottom: none;
         padding-bottom: 0.5rem;
     }

     .myth-table td {
         padding-top: 0.5rem;
     }
 }

 .age-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(5, 12, 20, 0.95);
     backdrop-filter: blur(10px);
     z-index: 10000;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 1rem;
 }

 .age-card {
     background-color: var(--bg-card);
     border: 1px solid var(--border-color);
     padding: 2.5rem;
     border-radius: 12px;
     max-width: 500px;
     width: 100%;
     text-align: center;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
 }

 .age-icon {
     font-size: 2rem;
     font-weight: bold;
     color: var(--bg-dark);
     background-color: var(--accent-teal);
     width: 60px;
     height: 60px;
     line-height: 60px;
     border-radius: 50%;
     margin: 0 auto 1.5rem;
 }

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

 .age-card p {
     color: var(--text-muted);
     margin-bottom: 0.5rem;
 }

 .age-subtext {
     font-size: 0.85rem;
     opacity: 0.7;
     margin-bottom: 2rem !important;
 }

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

 @media(min-width: 480px) {
     .age-buttons {
         flex-direction: row;
     }
 }

 .btn-age {
     flex: 1;
     padding: 1rem;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s;
     font-size: 1rem;
 }

 .btn-deny {
     background: transparent;
     border: 1px solid #FF6B6B;
     color: #FF6B6B;
 }

 .btn-deny:hover {
     background: rgba(255, 107, 107, 0.1);
 }

 .btn-confirm {
     background: var(--accent-teal);
     border: 1px solid var(--accent-teal);
     color: var(--bg-dark);
 }

 .btn-confirm:hover {
     background: #4cdbb9;
 }


 .cookie-bar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: var(--bg-lighter);
     border-top: 1px solid var(--accent-teal);
     padding: 1.5rem;
     z-index: 9000;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 1.5rem;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
 }

 .cookie-content {
     flex: 1;
     min-width: 300px;
 }

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

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

 .btn-cookie {
     padding: 0.6rem 1.2rem;
     font-size: 0.9rem;
     border-radius: 4px;
     cursor: pointer;
     font-weight: 500;
 }

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

 .btn-outline:hover {
     border-color: var(--accent-teal);
     color: var(--accent-teal);
 }

 .btn-fill {
     background: var(--accent-teal);
     border: 1px solid var(--accent-teal);
     color: var(--bg-dark);
     font-weight: 600;
 }

 .btn-fill:hover {
     background: #4cdbb9;
 }


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

 .settings-card {
     background: var(--bg-card);
     width: 100%;
     max-width: 500px;
     border-radius: 8px;
     border: 1px solid var(--border-color);
 }

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

 .settings-header h3 {
     margin: 0;
     color: var(--text-main);
     font-size: 1.2rem;
 }

 .close-x {
     background: none;
     border: none;
     color: var(--text-muted);
     font-size: 1.5rem;
     cursor: pointer;
 }

 .settings-body {
     padding: 1.5rem;
 }

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

 .toggle-info strong {
     display: block;
     color: var(--text-main);
     font-size: 0.95rem;
 }

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

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

 .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 input:checked+.slider {
     background-color: #4A5B70;
     cursor: not-allowed;
 }

 .settings-footer {
     padding: 1.5rem;
     border-top: 1px solid var(--border-color);
     text-align: right;
 }