/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4F4F4F;
    background-color: #ffffff !important;
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0A194E;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

a:hover {
    color: #E65A00;
    text-decoration: underline;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-white {
    color: #ffffff;
}

.btn {
    display: inline-block;
    background-color: #FF6B00;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.btn:hover {
    background-color: #E65A00;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.btn-secondary:hover {
    background-color: #FF6B00;
    color: #ffffff;
}

/* ===== GLOBAL HEADER ===== */
.global-header {
    background-color: #8F00FF;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.site-logo img {
    height: 80px;
    width: auto;
}

.site-logo a {
    outline: none;
    border: none;
}

.site-logo a:focus {
    outline: none;
    box-shadow: none;
}

.site-logo img:focus {
    outline: none;
    box-shadow: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #FFFAFA;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6B00;
    text-decoration: none;
}

.account-access {
    display: flex;
    gap: 15px;
    align-items: center;
}

.account-access .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(10, 25, 78, 0.7), rgba(10, 25, 78, 0.7)), url('../images/Hero_1920x800.webp') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .caption {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-align: center;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.hero-content .btn {
    font-size: 16px;
    padding: 18px 40px;
    margin-bottom: 1.5rem;
}

.hero-content .mini-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* ===== FEATURE CARDS CONTAINER ===== */
.feature-cards-container {
    background-color: #F8F9FD;
    padding: 40px 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    background-color: #FF6B00;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #0A194E;
    margin: 0;
    font-weight: 600;
}

/* ===== SECTION STYLING ===== */
.section {
    padding: 80px 0;
}

.section-header {
    max-width: 1160px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0A194E;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefit-item {
    background: #F8F9FD;
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8eaf6;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item .icon {
    width: 60px;
    height: 60px;
    background-color: #FF6B00;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
}

.benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #0A194E;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background-color: #F8F9FD;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 360px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-step .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #FF6B00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.process-step .step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step .icon {
    width: 70px;
    height: 70px;
    background-color: #F8F9FD;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B00;
    font-size: 32px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #0A194E;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.8rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    text-align: left;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.trust-item:hover {
    background-color: #F8F9FD;
}

.trust-item .icon {
    width: 60px;
    height: 60px;
    background-color: #FF6B00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
}

.trust-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0A194E;
}

.trust-item-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #F8F9FD;
}

.contact-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
    height: 560px;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-image {
    width: 540px;
    height: 560px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.contact-form-container {
    width: 540px;
    height: 560px;
    background-color: #8F00FF;
    padding: 40px;
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFFAFA;
    text-align: center;
}

/* ===== NOTICE SECTION ===== */
.notice-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.notice-zone1 {
    max-width: 980px;
    margin: 0 auto 50px;
    text-align: center;
    background-color: #FF8F00;
    border: 8px solid #FF8F00;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.notice-zone1 h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFFAFA;
}

.notice-zone1 p {
    color: #FFFAFA;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.notice-zone2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.notice-zone2 a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.notice-zone2 a:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.notice-zone2 img {
    height: 60px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.notice-zone2 a:hover img {
    filter: grayscale(0%);
}

/* ===== GLOBAL FOOTER ===== */
.global-footer {
    background-color: #0A194E;
    margin-top: 0.75rem;
    max-height: 15vh;
}

.footer-container {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
    padding-bottom: 0.75rem;
}

/* Legal Links Section */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
}

.legal-links a {
    font-size: 14px;
    font-weight: 500;
    color: #FFFAFA;
    text-decoration: none;
    text-align: center;
    line-height: 1.6;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.legal-links a:hover {
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legal-links a:active {
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.legal-links a:focus {
    outline: 2px solid #FFFAFA;
    outline-offset: 2px;
    font-weight: 600;
}

/* Divider Element */
.footer-divider {
    height: 1px;
    width: 100%;
    background-color: #E5E4E2;
    margin: 0.5rem 0 1rem 0;
}

/* Copyright Block */
.copyright-block {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright-wrapper p {
    font-size: 10px;
    font-weight: 400;
    font-family: var(--font-family-base);
    color: #E5E4E2;
    text-align: center;
    line-height: 1rem;
    margin: 0 0 0.25rem 0;
    hyphens: none;
}

.copyright-wrapper p:last-child {
    margin-bottom: 0;
}

.copyright-wrapper strong {
    font-weight: 600;
}

.copyright-wrapper a {
    color: #E5E4E2;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.copyright-wrapper a:hover {
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.copyright-wrapper a:active {
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.copyright-wrapper a:focus {
    outline: 1px solid #E5E4E2;
    outline-offset: 1px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .legal-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .copyright-wrapper p {
        line-height: 0.9rem;
    }
}

/* ===== POLICY PAGES ===== */
.policy-hero {
    background-color: #0A194E;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.policy-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.policy-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-hero .last-updated {
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.7;
    font-size: 0.95rem;
}

.policy-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.policy-content .container {
    max-width: 900px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #FF6B00;
    padding-bottom: 10px;
    color: #0A194E;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0A194E;
}

.policy-content h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #0A194E;
}

.policy-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.policy-content th, .policy-content td {
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: left;
}

.policy-content th {
    background-color: #F8F9FD;
    font-weight: 700;
    color: #0A194E;
}

.policy-content tr:nth-child(even) {
    background-color: #fafafa;
}

.policy-content strong {
    color: #0A194E;
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps {
        gap: 30px;
    }
    
    .process-step {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .caption {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .policy-hero h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 280px;
    }
    
    .notice-zone2 {
        gap: 20px;
    }
    
    .notice-zone2 img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 80px 15px 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .caption {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-item, .process-step {
        padding: 25px 20px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-item .icon {
        margin: 0 auto 15px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.feature-card, .benefit-item, .process-step, .trust-item {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #FF6B00;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card, .benefit-item, .process-step {
        border: 2px solid #000;
    }
}


/* ===== CSS VARIABLES ===== */
:root {
    --colour-text-default: #333333;
    --colour-text-inverse: #ffffff;
    --colour-text-placeholder: #999999;
    --colour-text-error: #ff0800;
    --colour-background-accent: #FF6B00;
    --colour-background-header: #8F00FF;
    --colour-background-error: #ff0800;
    --colour-background-success: #32cd32;
    --colour-border-error: #ff0800;
    --colour-border-success: #32cd32;
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-inverse-elevated: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== SECURE LOGIN MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.secure-login-modal {
    max-width: 480px;
    width: 90%;
    height: 520px;
    background: var(--colour-text-default);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-inverse-elevated);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-family: var(--font-family-base);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--colour-text-inverse);
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-header {
    width: 100%;
    text-align: left;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--colour-text-inverse);
    margin-bottom: 1.5rem;
}

.tab-toggle {
    display: flex;
    width: 100%;
    gap: 0;
    margin-bottom: 2rem;
}

.tab-button {
    flex: 1;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--colour-text-inverse);
    background: transparent;
    color: var(--colour-text-inverse);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 9999px;
}

.tab-button:first-child {
    margin-right: 8px;
}

.tab-button.active {
    background: var(--colour-background-accent);
    color: var(--colour-text-inverse);
    font-weight: 700;
    border-color: var(--colour-background-accent);
}

.tab-button:not(.active):hover {
    background: var(--colour-background-accent);
}

.modal-body {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.tab-content.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-label {
    position: absolute;
    left: -9999px;
}

.form-input {
    width: 100%;
    height: 44px;
    background: transparent;
    color: var(--colour-text-inverse);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family-base);
    border: 1px solid var(--colour-text-inverse);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: var(--colour-text-placeholder);
}

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

.modal-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submit-button {
    width: 100%;
    height: 48px;
    background: var(--colour-text-inverse);
    color: var(--colour-background-header);
    font-weight: 700;
    font-family: var(--font-family-base);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #f0f0f0;
    box-shadow: var(--shadow-subtle);
}

.submit-button:active {
    box-shadow: var(--shadow-inset);
}

.submit-button.error {
    background: #FF0800;
    color: #FFFAFA;
    border: 1px solid #FF0800;
}

.submit-button.success {
    background: #32CD32;
    color: #FFFAFA;
    border: 1px solid #32CD32;
}

.status-box {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    display: none;
    margin-top: 0.5rem;
}

.status-box.error {
    background: rgba(255, 8, 0, 0.85);
    color: #FFFFFF;
    border: 1px solid #FF0800;
}

.status-box.success {
    background: rgba(50, 205, 50, 0.85);
    color: #FFFFFF;
    border: 1px solid #32CD32;
}

.status-box.show {
    display: block;
}

/* Mobile responsive */
@media (max-width: 420px) {
    .secure-login-modal {
        padding: 1rem;
        height: auto;
        min-height: 520px;
    }
    
    .tab-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-button:first-child {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}



/* ===================================
   AGE VERIFICATION MODAL STYLES
   =================================== */

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-verification-modal {
    max-width: 520px;
    width: 100%;
    background: #FFFFFF;
    opacity: 0.96;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    font-family: "Open Sans", sans-serif;
    overflow: hidden;
}

.age-modal-header {
    background: #CE2029;
    padding: 1rem;
    text-align: center;
}

.age-modal-header h2 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.5px;
}

.age-modal-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.age-icon-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-icon {
    width: 120px;
    height: 120px;
    border: 4px solid #CE2029;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #000000;
}

.age-text-column {
    flex: 1;
}

.age-text-column p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    color: #000000;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.age-modal-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.age-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.age-btn:focus-visible {
    outline: 3px solid #0066CC;
    outline-offset: 2px;
}

.age-btn-yes {
    background: #32CD32;
    color: #FFFFFF;
}

.age-btn-yes:hover {
    background: #28A428;
    transform: translateY(-1px);
}

.age-btn-no {
    background: #CE2029;
    color: #FFFFFF;
}

.age-btn-no:hover {
    background: #A01A21;
    transform: translateY(-1px);
}

/* Access Denied Modal */
.access-denied-modal {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 520px;
    width: 100%;
    background: #CE2029;
    border: 4px solid #CE2029;
    border-radius: 16px;
    opacity: 0.96;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    font-family: "Open Sans", sans-serif;
    text-align: center;
    margin: 1rem;
}

.access-denied-content h2 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    letter-spacing: 1px;
}

.access-denied-content p {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .age-modal-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .age-icon {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .age-modal-actions {
        flex-direction: column;
    }
    
    .age-verification-overlay {
        padding: 0.5rem;
    }
    
    .access-denied-modal {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .access-denied-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .age-modal-header h2 {
        font-size: 16px;
    }
    
    .age-icon {
        width: 80px;
        height: 80px;
        font-size: 18px;
    }
    
    .age-text-column p {
        font-size: 13px;
    }
    
    .age-btn {
        font-size: 13px;
        padding: 0.6rem 0.8rem;
    }
}

