
        :root {
            --bg-dark: #00081a;
            --nav-bg: rgba(23, 37, 74, 0.7);
            --accent-blue: #2b82ad;
            --text-main: #ffffff;
            --text-muted: #b0b8c1;
            --btn-light: #b7d1e2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 80% 20%, #001a4d 0%, var(--bg-dark) 50%);
            color: var(--text-main);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* --- BACKGROUND WAVES --- */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            z-index: -1;
            opacity: 0.4;
        }

        /* --- HEADER NAVIGATION --- */
        .header-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 25px 20px;
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .navbar-capsule {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--nav-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 8px 10px 8px 30px;
            width: 100%;
            max-width: 1100px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .logo {
            text-decoration: none;
        }
        .logo svg {
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-links a.active {
            color: #fff;
            border-bottom-color: #2b82ad;
        }

        .nav-auth {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .login {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .btn-pill-sm {
            background: var(--accent-blue);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: transform 0.2s, background 0.3s;
        }

        .btn-pill-sm {
            text-decoration: none;
            display: inline-block;
        }
        .btn-pill-sm:hover {
            background: #3694c2;
            transform: translateY(-1px);
        }

        /* --- HERO SECTION --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 160px 10% 80px 10%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            max-width: 550px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 35px;
            letter-spacing: -1px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 480px;
        }

        .btn-main {
            background-color: var(--btn-light);
            color: #1a2a3a;
            border: none;
            padding: 18px 42px;
            border-radius: 100px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .btn-main:hover {
            opacity: 0.9;
        }

        /* --- PHONE MOCKUP --- */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            perspective: 1200px;
        }

        .stats-marquee {
            width: 100%;
            overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            background: #000;
            padding: 14px 0;
        }

        .stats-marquee-track {
            display: inline-flex;
            align-items: center;
            gap: 52px;
            white-space: nowrap;
            min-width: max-content;
            padding-left: 100%;
            animation: stats-scroll 28s linear infinite;
            font-size: 0.95rem;
            font-weight: 600;
            color: #dbe9f3;
            letter-spacing: 0.2px;
        }

        .stats-sep {
            opacity: 0.45;
            font-weight: 500;
        }

        @keyframes stats-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .phone-container {
            width: 300px;
            height: 610px;
            background: #000;
            border: 10px solid #1a1a1a;
            border-radius: 45px;
            transform: rotateY(-15deg) rotateX(5deg);
            box-shadow: 40px 60px 100px rgba(0,0,0,0.6);
            overflow: hidden;
            position: relative;
        }

        .phone-screen {
            background: #f8f9fc;
            height: 100%;
            width: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            color: #1a1a1a;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .chart-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 20px auto;
            background: conic-gradient(#4facfe 0% 35%, #00f2fe 35% 60%, #70e1f5 60% 85%, #ffd1ff 85% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .chart-circle::after {
            content: '';
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 50%;
            position: absolute;
        }

        .chart-text {
            z-index: 1;
            text-align: center;
        }

        .chart-text .val { font-weight: 800; font-size: 1.1rem; display: block; }
        .chart-text .pct { color: #2ecc71; font-size: 0.7rem; font-weight: 700; }

        .list-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.85rem;
        }

        /* --- CHAT BUBBLE --- */
        .chat-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #1a1a1a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

        /* --- FEATURE HUB SECTION --- */
        .hub-section {
            background: #f5f7fa;
            color: #1a2a3a;
            padding: 100px 5% 80px;
        }

        .hub-heading {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 60px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .hub-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hub-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .hub-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .hub-card-mockup {
            width: 140px;
            height: 200px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hub-card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hub-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 12px;
            gap: 12px;
        }

        .hub-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .hub-card-desc {
            color: #5a6570;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 20px;
            flex: 1;
        }

        .hub-card-desc sup {
            font-size: 0.65em;
        }

        .btn-learn {
            background: #2b82ad;
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }

        .btn-learn:hover {
            background: #3694c2;
        }

        .hub-footnotes {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 5%;
            font-size: 0.8rem;
            color: #6b7280;
        }

        .hub-footnotes sup {
            font-size: 0.7em;
        }

        /* --- SEE M1 IN ACTION / FEATURE SECTION --- */
        .action-section {
            background: #f4f6f8;
            color: #0b1f35;
            padding: 100px 5% 80px;
        }

        .action-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 40px;
            color: #546b81;
        }

        .hero-video-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 80px;
            border-radius: 20px;
            overflow: hidden;
            background: #000;
        }

        .hero-video-container video {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            display: block;
            object-fit: cover;
        }

        .feature-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 300;
            margin-bottom: 60px;
            color: #546b81;
        }

        .feature-grid {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .feature-content {
            flex: 1;
        }

        .sub-label {
            display: block;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            color: #546b81;
        }

        .feature-content h3 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            line-height: 1.2;
            margin-bottom: 20px;
            color: #3e526a;
        }

        .feature-content p {
            color: #546b81;
            font-size: 1rem;
            margin-bottom: 30px;
            max-width: 400px;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e1e8ed;
            background: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .nav-btn:hover {
            background: #e1e8ed;
        }

        .nav-btn svg {
            color: #0b1f35;
        }

        .feature-visual {
            flex: 1;
            background-color: #ebf0f5;
            border-radius: 12px;
            padding: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .slide-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 0.7rem;
            color: #546b81;
        }

        .ui-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            width: 100%;
            max-width: 340px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .buying-power-label {
            font-size: 0.8rem;
            color: #546b81;
        }

        .ui-card .amount {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 5px 0 15px 0;
            color: #0b1f35;
        }

        .card-description {
            font-size: 0.75rem;
            color: #546b81;
            margin-bottom: 20px;
        }

        .toggle-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border: 1px solid #e1e8ed;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .toggle-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #0b1f35;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .switch input { opacity: 0; width: 0; height: 0; }

        .switch .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 18px; width: 18px;
            left: 3px; bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .switch input:checked + .slider { background-color: #2b82ad; }
        .switch input:checked + .slider:before { transform: translateX(20px); }

        .input-group {
            padding: 10px 15px;
            border: 1px solid #e1e8ed;
            border-radius: 10px;
        }

        .input-group label {
            display: block;
            font-size: 0.65rem;
            color: #546b81;
            margin-bottom: 2px;
        }

        .input-group input {
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            width: 100%;
            outline: none;
            color: #0b1f35;
        }

        /* --- FOOTER --- */
        .m1-footer {
            background-color: #f4f8fb;
            padding: 60px 8% 40px;
            color: #002244;
        }

        .footer-top {
            text-align: center;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .footer-top a {
            color: #2a6ead;
            text-decoration: none;
        }

        .footer-divider {
            border: 0;
            border-top: 1px solid #d1d9e0;
            margin-bottom: 50px;
            width: 100%;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            flex: 0 0 50px;
        }

        .footer-logo svg {
            fill: #002244;
            width: 32px;
            height: 32px;
        }

        .footer-column {
            flex: 1;
            min-width: 150px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #333;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #2a6ead;
            text-decoration: underline;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-column ul li a:hover {
            color: #002244;
        }

        .social-col {
            flex: 0 0 200px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-icons a {
            color: #2a6ead;
            font-size: 20px;
            text-decoration: none;
        }

        .app-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-badges img {
            width: 135px;
            height: auto;
            cursor: pointer;
            border-radius: 4px;
        }

        /* --- HAMBURGER BUTTON --- */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10;
            flex-direction: column;
            gap: 5px;
            margin-left: auto;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* --- SIDEBAR DRAWER --- */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 6, 20, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .sidebar-overlay.open {
            display: block;
            opacity: 1;
        }

        .sidebar-drawer {
            display: none;
            position: fixed;
            top: 0; left: 0; bottom: 0;
            width: 280px;
            background: rgba(13, 22, 48, 0.98);
            border-right: 1px solid rgba(255,255,255,0.06);
            z-index: 1600;
            transform: translateX(-100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            flex-direction: column;
            overflow-y: auto;
            box-shadow: 8px 0 40px rgba(0,0,0,0.5);
        }
        .sidebar-drawer.open {
            transform: translateX(0);
        }

        .sidebar-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 28px 22px 22px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            position: relative;
        }
        .sidebar-close {
            position: absolute;
            top: 20px; right: 16px;
            background: rgba(255,255,255,0.06);
            border: none;
            color: rgba(255,255,255,0.5);
            width: 32px; height: 32px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .sidebar-close:hover {
            background: rgba(255,255,255,0.12);
            color: #fff;
        }
        .sidebar-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(43,130,173,0.15);
            color: #2b82ad;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .sidebar-user-info { min-width: 0; }
        .sidebar-user-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .sidebar-user-email {
            font-size: 0.72rem;
            color: var(--text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-top: 2px;
        }

        .sidebar-nav {
            flex: 1;
            padding: 14px 12px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.2s;
        }
        .sidebar-link:hover {
            background: rgba(255,255,255,0.05);
            color: #fff;
        }
        .sidebar-link.active {
            background: rgba(43,130,173,0.18);
            color: #fff;
            font-weight: 600;
        }
        .sidebar-link .sidebar-icon {
            width: 32px; height: 32px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.88rem;
            flex-shrink: 0;
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.4);
            transition: all 0.2s;
        }
        .sidebar-link:hover .sidebar-icon {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.7);
        }
        .sidebar-link.active .sidebar-icon {
            background: rgba(43,130,173,0.25);
            color: #2b82ad;
        }
        .sidebar-link .sidebar-label { flex: 1; }

        .sidebar-admin .sidebar-icon {
            color: rgba(243,156,18,0.6);
        }
        .sidebar-admin:hover .sidebar-icon {
            color: #f39c12;
        }
        .sidebar-admin.active .sidebar-icon {
            background: rgba(243,156,18,0.15);
            color: #f39c12;
        }
        .sidebar-admin.active {
            background: rgba(243,156,18,0.1);
        }

        .sidebar-divider {
            height: 1px;
            background: rgba(255,255,255,0.06);
            margin: 8px 16px;
        }

        .sidebar-footer {
            display: flex;
            flex-direction: column;
            padding: 14px 12px 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .sidebar-logout {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            color: #e74c3c;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .sidebar-logout:hover { background: rgba(231,76,60,0.1); }
        .sidebar-logout .sidebar-icon {
            width: 32px; height: 32px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.88rem;
            background: rgba(231,76,60,0.1);
            color: #e74c3c;
        }

        .sidebar-auth-btn {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .sidebar-login-btn {
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
        }
        .sidebar-signup-btn {
            background: linear-gradient(135deg, #2b82ad, #1a5276);
            color: #fff;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 968px) {
            .hamburger { display: flex; }
            .sidebar-drawer { display: flex; }
            .nav-links, .nav-auth { display: none; }

            .header-wrapper {
                flex-direction: column;
                align-items: stretch;
                padding: 14px 12px;
                background: var(--nav-bg);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid rgba(255,255,255,0.06);
                transition: background 0.3s;
            }
            .navbar-capsule {
                width: 100%;
                padding: 0 6px;
                background: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none;
                border-radius: 0;
                box-shadow: none;
            }

            .hero { flex-direction: column; text-align: center; padding-top: 120px; }
            .hero-content { display: flex; flex-direction: column; align-items: center; }
            .hero-image { transform: scale(0.8); margin-top: -40px; }
            .stats-marquee-track { animation-duration: 22s; font-size: 0.88rem; gap: 36px; }
            .hub-cards { grid-template-columns: 1fr; }
            .hub-section { padding: 60px 5% 60px; }
            .feature-grid { flex-direction: column; text-align: center; }
            .feature-content p { margin: 0 auto 30px auto; }
            .nav-buttons { justify-content: center; }
            .action-section { padding: 60px 5% 60px; }
            .feature-visual { padding: 40px 20px; }
            .footer-content { flex-direction: column; padding-left: 20px; }
            .footer-column { width: 100%; }
            .signup-container { flex-direction: column-reverse; text-align: center; gap: 40px; }
            .signup-card { max-width: 100%; }
        }

        /* --- FLASH MESSAGES --- */
        .flash-messages {
            position: fixed;
            top: 90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1100;
        }
        .flash {
            padding: 12px 24px;
            border-radius: 8px;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .flash.success { background: #2ecc71; color: white; }
        .flash.error { background: #e74c3c; color: white; }

        /* --- LOGIN PAGE --- */
        .login-page {
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 80px;
        }
        .login-box {
            background: rgba(23, 37, 74, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px;
            width: 100%;
            max-width: 400px;
        }
        .login-box h1 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 30px;
            text-align: center;
        }
        .login-box label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: var(--text-muted);
        }
        .login-box input[type="email"],
        .login-box input[type="password"] {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .login-box input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .login-box button[type="submit"] {
            width: 100%;
            padding: 14px;
            background: var(--accent-blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
        }
        .login-box button[type="submit"]:hover {
            background: #3694c2;
        }

        /* --- SIGNUP PAGE --- */
        .signup-page {
            padding: 120px 5% 80px;
        }
        .signup-container {
            display: flex;
            max-width: 1000px;
            margin: 0 auto 60px;
            gap: 80px;
            align-items: center;
        }
        .signup-card {
            background: transparent;
            backdrop-filter: none;
            border: none;
            border-radius: 0;
            padding: 40px;
            width: 100%;
            max-width: 410px;
            box-shadow: none;
        }
        .signup-card .input-group {
            position: relative;
            margin-bottom: 15px;
        }
        .signup-card .input-group input {
            width: 100%;
            padding: 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }
        .signup-card .input-group input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .signup-card .password-group {
            margin-bottom: 10px;
        }
        .signup-card .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            opacity: 0.6;
            color: var(--text-muted);
        }
        .signup-card .password-hint {
            font-size: 11px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .signup-card .disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .signup-card .disclaimer a {
            color: var(--text-main);
            text-decoration: underline;
        }
        .signup-card .btn-join {
            width: 100%;
            padding: 16px;
            background: var(--btn-light);
            border: none;
            border-radius: 25px;
            color: #0b0d10;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 25px;
            transition: opacity 0.2s;
        }
        .signup-card .btn-join:hover {
            opacity: 0.9;
        }
        .signup-card .login-link {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .signup-card .login-link a {
            color: var(--btn-light);
            text-decoration: underline;
        }
        .signup-content h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .signup-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .store-section {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .store-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 13px;
        }
        .store-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--text-main);
        }
        .store-header svg {
            color: var(--text-main);
        }
        .rating {
            font-size: 12px;
            color: var(--text-muted);
        }
        .as-of {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
        }
    
