
        /* CSS Variables for theming */
        :root {
            --deep-black: #0a0a0f;
            --dark-gray: #14141f;
            --medium-gray: #1f1f2f;
            --metallic-silver: #c0c0c0;
            --silver-glow: rgba(192, 192, 192, 0.3);
            --royal-gold: #d4af37;
            --gold-glow: rgba(212, 175, 55, 0.3);
            --light-text: #f5f5f7;
            --gray-text: #a0a0b0;
            --success: #10b981;
            --danger: #ef4444;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            --glass: rgba(255, 255, 255, 0.05);
            --border-radius: 12px;
            --vh: 1vh;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--deep-black);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            min-height: calc(var(--vh, 1vh) * 100);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            background: linear-gradient(to right, var(--metallic-silver), var(--royal-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--metallic-silver);
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        p {
            color: var(--gray-text);
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-height: 50px;
            min-width: 140px;
        }

        .btn-primary {
            background-color: var(--royal-gold);
            color: var(--deep-black);
            box-shadow: 0 4px 20px var(--gold-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px var(--gold-glow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--metallic-silver);
            border: 2px solid var(--metallic-silver);
            box-shadow: 0 4px 20px var(--silver-glow);
        }

        .btn-secondary:hover {
            background-color: var(--metallic-silver);
            color: var(--deep-black);
            transform: translateY(-3px);
        }

        .card {
            background: linear-gradient(145deg, var(--medium-gray), var(--dark-gray));
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .glass-effect {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .highlight {
            color: var(--royal-gold);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
/* =========================
   NAVBAR FIXES
========================= */

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

/* Logo image fix */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.35));
}

            /* Nav list spacing fix */
            .desktop-nav ul {
                display: flex;
                align-items: center;
                gap: 32px;
                list-style: none;
            }

            .desktop-nav li {
                margin: 0;
            }

            /* Nav link hover underline gold */
            .desktop-nav ul a {
                position: relative;
                padding-bottom: 6px;
            }

            .desktop-nav ul a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0%;
                height: 2px;
                background: var(--royal-gold);
                transition: width 0.3s ease;
            }

            .desktop-nav ul a:hover::after,
            .desktop-nav ul a.active::after {
                width: 100%;
            }

            /* Nav buttons spacing */
            .nav-actions {
                display: flex;
                align-items: center;
                gap: 14px;
            }

            .nav-actions .btn {
                margin-left: 0;
                min-width: 130px;
                padding: 12px 22px;
            }


            /* =========================
            BUTTON COLOR SAFETY
            ========================= */

            .btn-primary {
                color: var(--deep-black) !important;
            }

            .btn-secondary {
                color: var(--metallic-silver);
            }


            /* =========================
            FOOTER FIX (you had empty bg)
            ========================= */

            footer {
               
                padding: 60px 0 100px;
                border-top: 1px solid rgba(255,255,255,0.05);
            }


            /* Center footer block */
            .center-footer {
                display: flex;
                justify-content: center;
                text-align: center;
            }

            .footer-box {
                max-width: 720px;
            }

            .footer-box .logo {
                justify-content: center;
            }

            .footer-box img {
                max-width: 220px;
                height: auto;
            }


            /* =========================
            IMAGE SAFETY GLOBAL
            ========================= */

            img {
                max-width: 100%;
                height: auto;
                display: block;
            }


            /* =========================
            CONTAINER OVERFLOW FIX
            ========================= */

            .container {
                width: 100%;
                max-width: 1400px;
                margin: auto;
                padding-left: 20px;
                padding-right: 20px;
            }


            /* =========================
            MOBILE NAV FIX
            ========================= */

            @media (max-width: 1024px) {
                .desktop-nav ul {
                    display: none;
                }
            }

            @media (max-width: 768px) {
                .desktop-nav {
                    padding: 14px 0;
                }

                .logo img {
                    height: 36px;
                }

                .nav-actions {
                    display: none;
                }
            }


            /* =========================
            CARD HOVER MOBILE SAFE
            ========================= */

            @media (hover: none) {
                .card:hover,
                .team-member:hover {
                    transform: none;
                    box-shadow: var(--shadow);
                }
            }


            /* =========================
            SMALL SCREEN TEXT SAFE
            ========================= */

            @media (max-width:480px) {
                h1 { font-size: 1.9rem; }
                h2 { font-size: 1.5rem; }
                h3 { font-size: 1.2rem; }
            }


            /* =========================
            ACCESSIBILITY FOCUS
            ========================= */

            a:focus,
            button:focus {
                outline: 2px solid var(--royal-gold);
                outline-offset: 3px;
            }

        /* Mobile Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-gray);
            padding: 12px 0;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-bottom-nav-content {
            display: flex;
            justify-content: space-around;
            width: 100%;
        }

        .mobile-bottom-nav a {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray-text);
            transition: color 0.3s ease;
            padding: 5px;
            min-height: 60px;
        }

        .mobile-bottom-nav a.active {
            color: var(--royal-gold);
        }

        .mobile-bottom-nav span {
            font-size: 1.2rem;
            margin-bottom: 3px;
        }

        .mobile-bottom-nav small {
            font-size: 0.75rem;
        }

        /* Hero Section */
        .hero {
            padding-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(192, 192, 192, 0.05) 0%, rgba(10, 10, 15, 0) 70%);
            z-index: 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
        }

        /* Chart Container */
        .chart-container {
            background-color: var(--dark-gray);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
            max-width: 100%;
            overflow: hidden;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .asset-info {
            display: flex;
            align-items: center;
        }

        .asset-icon {
            width: 40px;
            height: 40px;
            background-color: var(--metallic-silver);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--deep-black);
            font-weight: bold;
        }

        .price-info h3 {
            margin-bottom: 5px;
            color: var(--metallic-silver);
        }

        .price-change {
            font-weight: bold;
        }

        .positive {
            color: var(--success);
        }

        .negative {
            color: var(--danger);
        }

        .chart-actions {
            display: flex;
            gap: 10px;
        }

        .chart {
            height: 250px;
            background-color: var(--deep-black);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .chart-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--metallic-silver);
            top: 50%;
            left: 0;
            opacity: 0.2;
        }

        .chart-data {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
        }

        .chart-bar {
            flex: 1;
            background-color: var(--metallic-silver);
            margin: 0 1px;
            border-radius: 2px 2px 0 0;
            opacity: 0.7;
            transition: height 0.5s ease;
        }

        .chart-bar:nth-child(odd) {
            background-color: var(--royal-gold);
        }

        /* Live Market Ticker */
        .market-ticker {
            background-color: var(--dark-gray);
            padding: 15px 0;
            overflow: hidden;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            width: 100%;
        }

        .ticker-content {
            display: flex;
            animation: ticker 30s linear infinite;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            margin-right: 50px;
            white-space: nowrap;
        }

        .ticker-symbol {
            font-weight: bold;
            margin-right: 10px;
        }

        .ticker-price {
            margin-right: 10px;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Trading Sections */
        .trading-section {
            margin-bottom: 40px;
        }

        .section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-list {
            list-style: none;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 10px 0;
            color: var(--gray-text);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }

        .feature-list li i {
            margin-right: 10px;
            color: var(--royal-gold);
        }

        .trade-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .trade-btn {
            flex: 1;
            padding: 15px;
            border-radius: var(--border-radius);
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.1rem;
            min-height: 50px;
        }

        .buy-btn {
            background-color: var(--success);
            color: white;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        }

        .sell-btn {
            background-color: var(--danger);
            color: white;
            box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
        }

        .trade-btn:hover {
            transform: translateY(-5px);
        }

        .buy-btn:hover {
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
        }

        .sell-btn:hover {
            box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
        }

        /* Team Section Styles */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, var(--metallic-silver), var(--royal-gold));
            overflow: hidden;
            position: relative;
        }

        .member-image img {
            width: 100%;
            height: 144%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.05);
        }

        .member-image i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: var(--deep-black);
            z-index: 1;
        }

        .member-name {
            font-size: 1.5rem;
            color: var(--metallic-silver);
            margin-bottom: 5px;
        }

        .member-role {
            color: var(--royal-gold);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .member-description {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: var(--medium-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--metallic-silver);
        }

        .social-links a:hover {
            background: var(--royal-gold);
            color: var(--deep-black);
            transform: translateY(-3px);
        }

        /* About Section Styles */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-image {
            position: relative;
            height: 400px;
            background: linear-gradient(45deg, var(--dark-gray), var(--medium-gray));
            border-radius: var(--border-radius);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: var(--royal-gold);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--metallic-silver), var(--royal-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--gray-text);
            font-size: 1rem;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            margin-top: 40px;
            overflow-x: auto;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .balance-info {
            display: flex;
            align-items: center;
        }

        .balance-amount {
            font-size: 2rem;
            font-weight: bold;
            color: var(--royal-gold);
            margin-right: 20px;
        }

        .balance-change {
            color: var(--success);
            font-weight: bold;
        }

        .dashboard-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .dashboard-table th {
            text-align: left;
            padding: 15px;
            color: var(--gray-text);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-weight: 600;
        }

        .dashboard-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trade-profit {
            font-weight: bold;
        }

        /* Trust & Security */
        .trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 60px;
        }

        .badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 200px;
        }

        .badge-icon {
            width: 70px;
            height: 70px;
            background-color: var(--medium-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--royal-gold);
        }

        /* Image Placeholders */
        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--metallic-silver), var(--royal-gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-black);
            font-weight: bold;
        }

        /* Footer */
        footer {
            background-color: ;
            padding: 60px 0 100px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--metallic-silver);
            margin-bottom: 20px;
        }

        .footer-links h4 {
            color: var(--metallic-silver);
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--gray-text);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--metallic-silver);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
            
            .hero-content {
                gap: 40px;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .desktop-nav ul {
                display: none;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            h3 {
                font-size: 1.4rem;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .hero {
                padding-top: 40px;
            }
            
            .hero-text p {
                font-size: 1rem;
                max-width: 100%;
            }
            
            .hero-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-actions .btn {
                width: 100%;
                text-align: center;
            }
            
            .chart-container {
                padding: 15px;
            }
            
            .chart {
                height: 200px;
            }
            
            .chart-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .chart-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .chart-actions .btn-secondary {
                flex: 1;
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .trade-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .trade-btn {
                width: 100%;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .desktop-nav .btn {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .member-image {
                width: 150px;
                height: 150px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-card {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .section-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card {
                padding: 20px;
            }
            
            .about-image {
                height: 250px;
                order: -1;
            }
            
            .about-image i {
                font-size: 6rem;
            }
            
            .market-ticker {
                margin-top: 20px;
                padding: 10px 0;
            }
            
            .ticker-item {
                margin-right: 30px;
                font-size: 0.9rem;
            }
            
            .dashboard-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .badge {
                max-width: 100%;
            }
            
            footer {
                padding-bottom: 80px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.2rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            section {
                padding: 40px 0;
            }
            
            .btn {
                padding: 14px 20px;
                font-size: 0.9rem;
                min-width: 120px;
            }
            
            .member-image {
                width: 120px;
                height: 120px;
            }
            
            .chart-actions .btn-secondary {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            
            .price-info h3 {
                font-size: 1.1rem;
            }
            
            .mobile-bottom-nav span {
                font-size: 1.1rem;
            }
            
            .mobile-bottom-nav small {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 360px) {
            h1 {
                font-size: 1.6rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            .container {
                padding: 0 12px;
            }
            
            .btn {
                padding: 12px 16px;
                font-size: 0.85rem;
            }
            
            .member-image {
                width: 100px;
                height: 100px;
            }
            
            .member-name {
                font-size: 1.2rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .card:hover,
            .team-member:hover,
            .btn-primary:hover,
            .btn-secondary:hover,
            .trade-btn:hover,
            .social-links a:hover,
            .stat-card:hover {
                transform: none;
            }
            
            .btn, .trade-btn, .nav-actions a {
                min-height: 44px;
            }
            
            .feature-list li {
                padding: 15px 0;
            }
        }

        /* Landscape mode optimizations */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                padding-top: 30px;
            }
            
            .hero-content {
                min-height: auto;
            }
            
            .chart {
                height: 180px;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
        }

        /* Prevent iOS zoom on inputs */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            select,
            textarea,
            input {
                font-size: 16px !important;
            }
        }

        /* Loading states */
        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        /* Accessibility improvements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Focus styles for accessibility */
        button:focus,
        a:focus {
            outline: 2px solid var(--royal-gold);
            outline-offset: 3px;
        }


.center-footer {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-box {
    max-width: 700px;
}

.footer-box .logo {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-box img {
    max-width: 220px;
    height: auto;
}

.footer-box p {
    line-height: 1.6;
    opacity: 0.85;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}
