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

        :root {
            --gold: #c9a96e;
            --gold-light: #e0c48a;
            --gold-dark: #a07840;
            --navy: #0b1a2e;
            --navy-mid: #112236;
            --navy-light: #1a3050;
            --navy-card: #16294a;
            --white: #ffffff;
            --gray-light: #e8e8e8;
            --text-muted: #a0b0c8;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--navy);
            color: var(--white);
            line-height: 1.6;
        }

        /* ─── NAVBAR ─── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        
            padding: 16px 48px;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 169, 110, 0.2);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .nav-logo-kaytrip {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .nav-logo-kaytrip span.brand-main {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        .nav-logo-kaytrip span.brand-sub {
            font-size: 10px;
            color: var(--gold);
            letter-spacing: 2px;
            font-weight: 400;
        }

        .nav-divider {
            width: 1px;
            height: 32px;
            background: rgba(201, 169, 110, 0.4);
        }

        .nav-logo-mg {
            font-size: 14px;
            color: var(--gold);
            letter-spacing: 1px;
            font-weight: 600;
        }

        .nav-links { margin-left: auto;
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

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

        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--navy) !important;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 700 !important;
            transition: opacity 0.3s !important;
        }

        .nav-cta:hover {
            opacity: 0.85;
            color: var(--navy) !important;
        }

        /* ─── HERO ─── */
        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.08) 0%, transparent 70%),
                linear-gradient(180deg, #0b1a2e 0%, #07101e 100%);
        }

        /* Animated golden lines */
        .hero-lines {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-line {
            position: absolute;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
            animation: lineFade 4s ease-in-out infinite;
        }

        .hero-line:nth-child(1) { left: 15%; height: 60%; top: 20%; animation-delay: 0s; }
        .hero-line:nth-child(2) { left: 35%; height: 40%; top: 30%; animation-delay: 1s; }
        .hero-line:nth-child(3) { left: 65%; height: 55%; top: 15%; animation-delay: 0.5s; }
        .hero-line:nth-child(4) { left: 85%; height: 45%; top: 25%; animation-delay: 1.5s; }

        @keyframes lineFade {
            0%, 100% { opacity: 0; transform: scaleY(0.5); }
            50% { opacity: 1; transform: scaleY(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,169,110,0.12);
            border: 1px solid rgba(201,169,110,0.35);
            border-radius: 40px;
            padding: 6px 18px;
            margin-bottom: 28px;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .hero-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        .hero-collab {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .hero-brand {
            font-size: 15px;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .hero-x {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(201,169,110,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--gold);
        }

        .hero-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 8px;
            color: var(--white);
            letter-spacing: 2px;
        }

        .hero-title em {
            font-style: normal;
            color: var(--gold);
        }

        .hero-subtitle-en {
            font-size: 18px;
            color: var(--gold);
            font-style: italic;
            letter-spacing: 3px;
            font-weight: 300;
            margin-bottom: 16px;
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
            letter-spacing: 0.5px;
        }

        .hero-desc strong {
            color: var(--gold-light);
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--navy);
            border: none;
            padding: 14px 32px;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,169,110,0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 14px 32px;
            border-radius: 4px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 11px;
            letter-spacing: 2px;
            animation: bounceDown 2s ease-in-out infinite;
        }

        @keyframes bounceDown {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        .hero-scroll svg {
            width: 20px;
            height: 20px;
        }

        /* ─── SECTION SHARED ─── */
        section {
            padding: 80px 24px;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(26px, 4vw, 38px);
            font-weight: 300;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .section-divider {
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 0 auto 20px;
        }

        .section-desc {
            text-align: center;
            color: var(--text-muted);
            font-size: 15px;
            max-width: 600px;
            margin: 0 auto 56px;
            line-height: 1.8;
        }

        /* ─── ABOUT MG ─── */
        #about {
            background: var(--navy-mid);
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .stat-card {
            background: var(--navy-card);
            border: 1px solid rgba(201,169,110,0.15);
            border-radius: 8px;
            padding: 32px 24px;
            text-align: center;
            transition: border-color 0.3s, transform 0.3s;
        }

        .stat-card:hover {
            border-color: rgba(201,169,110,0.4);
            transform: translateY(-4px);
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            background: rgba(201,169,110,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 20px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ─── OUTLETS ─── */
        #outlets {
            background: var(--navy);
        }

        .outlets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .outlet-card {
            background: var(--navy-card);
            border: 1px solid rgba(201,169,110,0.15);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .outlet-card:hover {
            transform: translateY(-6px);
            border-color: rgba(201,169,110,0.45);
            box-shadow: 0 20px 48px rgba(0,0,0,0.3);
        }

        .outlet-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .outlet-img-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .outlet-country-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(11,26,46,0.85);
            border: 1px solid rgba(201,169,110,0.4);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 11px;
            color: var(--gold);
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
        }

        .outlet-body {
            padding: 24px;
        }

        .outlet-name-zh {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .outlet-name-en {
            font-size: 12px;
            color: var(--gold);
            letter-spacing: 2px;
            margin-bottom: 16px;
            font-style: italic;
        }

        .outlet-location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .outlet-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px;
        }

        .outlet-meta-item {
            background: rgba(201,169,110,0.06);
            border-radius: 6px;
            padding: 10px 12px;
        }

        .outlet-meta-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .outlet-meta-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--gold);
        }

        .outlet-meta-value span {
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .outlet-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ─── BENEFITS ─── */
        #benefits {
            background: var(--navy-mid);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            max-width: 900px;
            margin: 0 auto;
        }

        .benefit-card {
            background: var(--navy-card);
            border: 1px solid rgba(201,169,110,0.15);
            border-radius: 12px;
            padding: 36px 28px;
            text-align: center;
            position: relative;
            transition: transform 0.3s, border-color 0.3s;
        }

        .benefit-card.featured {
            border-color: rgba(201,169,110,0.45);
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            border-color: rgba(201,169,110,0.5);
        }

        .benefit-featured-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--navy);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .benefit-icon {
            width: 72px;
            height: 72px;
            background: rgba(201,169,110,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            border: 1px solid rgba(201,169,110,0.2);
        }

        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--white);
        }

        .benefit-highlight {
            font-size: 36px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .benefit-highlight small {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .benefit-tag {
            display: inline-block;
            background: rgba(201,169,110,0.12);
            border: 1px solid rgba(201,169,110,0.3);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 12px;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .benefit-list {
            list-style: none;
            text-align: left;
            margin-top: 16px;
        }

        .benefit-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
        }

        .benefit-list li::before {
            content: "✓";
            color: var(--gold);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* ─── FORM ─── */
        #register {
            background: var(--navy);
        }

        .form-wrapper {
            max-width: 640px;
            margin: 0 auto;
            background: var(--navy-card);
            border: 1px solid rgba(201,169,110,0.2);
            border-radius: 16px;
            padding: 48px 48px;
        }

        .form-title {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
        }

        .form-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .form-label .required {
            color: var(--gold);
            margin-left: 2px;
        }

        .form-control {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 6px;
            padding: 12px 16px;
            color: var(--white);
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s, background 0.3s;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
        }

        .form-control:focus {
            border-color: rgba(201,169,110,0.5);
            background: rgba(255,255,255,0.06);
        }

        .form-control::placeholder {
            color: rgba(160,176,200,0.5);
        }

        select.form-control {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
            cursor: pointer;
        }

        select.form-control option {
            background: var(--navy-card);
            color: var(--white);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-notice {
            background: rgba(201,169,110,0.06);
            border: 1px solid rgba(201,169,110,0.15);
            border-radius: 6px;
            padding: 14px 16px;
            margin-bottom: 24px;
        }

        .form-notice p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .form-notice p + p {
            margin-top: 6px;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 24px;
        }

        .form-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
            accent-color: var(--gold);
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            cursor: pointer;
        }

        .form-checkbox a {
            color: var(--gold);
            text-decoration: none;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--navy);
            border: none;
            padding: 16px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 1px;
            transition: all 0.3s;
            font-family: inherit;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,169,110,0.35);
        }

        .form-notes {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .form-notes p {
            font-size: 11.5px;
            color: rgba(160,176,200,0.6);
            line-height: 1.7;
            margin-bottom: 6px;
        }

        /* ─── FOOTER ─── */
        footer {
            background: #070f1a;
            border-top: 1px solid rgba(201,169,110,0.15);
            padding: 32px 24px;
            text-align: center;
        }

        .footer-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
        }

        .footer-brand {
            font-size: 13px;
            color: var(--gold);
            letter-spacing: 2px;
            font-weight: 600;
        }

        .footer-sep {
            color: rgba(201,169,110,0.3);
        }

        footer p {
            font-size: 12px;
            color: rgba(160,176,200,0.4);
            line-height: 1.8;
        }

        footer a {
            color: rgba(201,169,110,0.6);
            text-decoration: none;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            nav {
                padding: 14px 20px;
            }

            .nav-links {
                display: none;
            }

            .form-wrapper {
                padding: 32px 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 20px;
            }
        }