        :root {
            --primary: #F9B124;
            /* Gold color */
            --primary-dark: #D89A1F;
            --dark: #0A0A0A;

            /* Beautiful Soft Color Palette */
            --soft-cream: #faf6f0;
            /* Soft cream color */
            --ivory-white: #fffef9;
            /* Ivory white */
            --pearl-gray: #f5f3f0;
            /* Pearl gray */
            --soft-sand: #f8f4e9;
            /* Soft sand color */
            --light-beige: #f7f2e8;
            /* Light beige */
            --warm-white: #fefcf7;
            /* Warm white */
            --soft-border: #e8e1d5;
            /* Soft border color */

            /* Text Colors for Light Backgrounds */
            --text-charcoal: #2c3e50;
            /* Charcoal gray */
            --text-slate: #4a5568;
            /* Slate gray */
            --text-gray: #718096;
            /* Light gray */
            --text-warm: #5d4037;
            /* Warm brown */
        }

        body {
            background-color: var(--dark);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
            color: #FFFFFF;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Hero Section - UNCHANGED */
        .hero-section {
            height: 1000px;
            background: url('../images/landscaepbg.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(249, 177, 36, 0.2) 0%, transparent 70%);
            top: 10%;
            right: 10%;
            filter: blur(40px);
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(249, 177, 36, 0.15) 0%, transparent 70%);
            bottom: 10%;
            left: 5%;
            filter: blur(30px);
        }

        label.error {
            background-color: #362b2b;
            font-size: 14px;
            padding: 3px 10px;
            color: #fff;
            font-weight: 700;
            border-radius: 5px
        }

        .logo-container {
            margin-bottom: 40px;
        }

        .logo-circle {
            width: 140px;
            height: 140px;
            margin: 0 auto;
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: rgba(249, 177, 36, 0.05);
            backdrop-filter: blur(10px);
            box-shadow:
                0 0 30px rgba(249, 177, 36, 0.2),
                inset 0 0 20px rgba(249, 177, 36, 0.05);
            top: 200px;
        }

        .logo-circle::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border: 1px dashed rgba(249, 177, 36, 0.4);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .logo-text {
            color: var(--primary);
            font-size: 70px;
            font-weight: 900;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(249, 177, 36, 0.5);
        }

        /* Simple Tagline Section - BEAUTIFUL SOFT SHADES */
        .tagline-section {
            padding: 36px 20px;
            background: linear-gradient(145deg,
                    var(--soft-cream) 0%,
                    var(--ivory-white) 50%,
                    var(--soft-cream) 100%);
            position: relative;
            text-align: center;
        }

        .tagline-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            top: 0;
            left: 0;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(249, 177, 36, 0.2),
                    transparent);
        }

        .tagline-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tagline-text {
            font-size: 30px;
            font-weight: 700;
            margin: 0;
            color: #000;
            position: relative;
            display: inline-block;
            line-height: 1.2;
            font-family: "Michroma", sans-serif;
            letter-spacing: 1px;
        }

        .tagline-accent {
            color: #a5a5a5;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .tagline-accent::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0px;
            left: 0;
            background: linear-gradient(90deg,
                    transparent,
                    #a5a5a5,
                    rgba(165, 165, 165, 0.7),
                    transparent);

            border-radius: 2px;
        }

        .tagline-decoration {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .tagline-decoration-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(165, 165, 165, 0.3),
                    transparent);

        }

        .tagline-decoration-dot {
            width: 6px;
            height: 6px;
            background-color: #a5a5a5;
            border-radius: 50%;
            opacity: 0.5;
        }

        /* Pre-Launch Registration Form - BEAUTIFUL SOFT SHADES */
        .form-section {
            padding: 60px 20px;
            background: linear-gradient(145deg,
                    var(--pearl-gray) 0%,
                    var(--warm-white) 100%);
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            top: 0;
            left: 0;
            background: linear-gradient(90deg, transparent, rgba(96, 95, 92, 0.2), #aea1a100);
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--ivory-white);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid var(--soft-border);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.05),
                0 8px 25px rgba(0, 0, 0, 0.03),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #a5a5a5;
        }

        .form-header {
            text-align: center;
            margin-bottom: 45px;
            position: relative;
            z-index: 1;
        }

        .form-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-charcoal);
            font-family: "Michroma", sans-serif;
            letter-spacing: 0.5px;
        }

        .form-title-accent {
            color: #a5a5a5;
            position: relative;
        }

        .form-title-accent::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg,
                    transparent,
                    #a5a5a5,
                    transparent);
        }

        .form-subtitle {
            font-size: 16px;
            color: var(--text-slate);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        .form-row {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 20px;
            }
        }

        .form-group {
            flex: 1;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-charcoal);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .form-label span {
            color: #a5a5a5;
        }

        .form-input {
            width: 100%;
            padding: 10px 20px;
            background: var(--soft-sand);
            border: 1px solid var(--soft-border);
            border-radius: 10px;
            color: var(--text-charcoal);
            font-size: 13px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            box-shadow:
                inset 0 2px 4px rgba(0, 0, 0, 0.03);
        }

        .form-input:focus {
            outline: none;
            border-color: #a5a5a5;
            box-shadow:
                0 0 0 3px rgba(249, 177, 36, 0.1),
                inset 0 2px 4px rgba(0, 0, 0, 0.03);
            background: var(--warm-white);
        }

        .form-input::placeholder {
            color: var(--text-gray);
            font-weight: 400;
        }

        .select-wrapper {
            position: relative;
        }

        .select-wrapper::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #a5a5a5;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .form-select {
            appearance: none;
            cursor: pointer;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            margin: 25px 0;
            position: relative;
            z-index: 1;
        }

        .form-checkbox-input {
            margin-right: 15px;
            margin-top: 5px;
            accent-color: var(--primary);
        }

        .form-checkbox-label {
            color: var(--text-slate);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .form-checkbox-label a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .form-checkbox-label a:hover {
            text-decoration: underline;
        }

        .form-submit-btn {
            width: 100%;
            background: #a5a5a5;
            color: #ffffff;
            border: none;
            padding: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .form-submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            ;
            transition: left 0.7s;
        }



        .form-note {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.85rem;
            margin-top: 25px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .form-note i {
            color: #a5a5a5;
            margin-right: 8px;
        }

        /* Footer */
        .footer {
            padding: 12px 20px 12px;
            background: var(--dark);
            text-align: center;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            top: 0;
            left: 0;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .footer-text {
            color: #CCCCCC;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Success Message Modal with Soft Colors */
        .success-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .success-content {
            background: linear-gradient(145deg,
                    var(--ivory-white) 0%,
                    var(--soft-cream) 100%);
            border-radius: 20px;
            padding: 60px 50px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--soft-border);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.08);
            animation: modalFadeIn 0.5s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            font-size: 5rem;
            color: var(--primary);
            margin-bottom: 30px;
            animation: successPulse 1.5s infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        @keyframes successPulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .success-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-charcoal);
            font-family: "Michroma", sans-serif;
        }

        .success-message {
            font-size: 1.1rem;
            color: var(--text-slate);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .close-success {
            background: linear-gradient(135deg,
                    var(--primary) 0%,
                    var(--primary-dark) 100%);
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow:
                0 8px 20px rgba(249, 177, 36, 0.25);
        }

        .close-success:hover {
            transform: translateY(-3px);
            box-shadow:
                0 12px 25px rgba(249, 177, 36, 0.35);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .tagline-text {
                font-size: 3.8rem;
            }

            .form-container {
                padding: 40px 35px;
            }
        }

        @media (max-width: 768px) {
            .tagline-text {
                font-size: 3rem;
            }

            .form-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 480px) {
            .tagline-text {
                font-size: 2.2rem;
            }

            .form-title {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 30px 20px;
            }
        }

        /* Responsive adjustments */
        @media screen and (min-width:381px) and (max-width:575.98px) {
            .hero-section {
                height: 300px;
            }

            .logo-circle {
                width: 70px;
                height: 70px;
                top: 26px;
            }

            .logo-text {
                font-size: 38px;
            }

            .logo-circle::before {
                width: 90px;
                height: 90px;
            }

            .tagline-section {
                padding: 20px 20px;
            }

            .tagline-text {
                font-size: 13px;
                line-height: 36px;
            }

            .tagline-accent::after {
                bottom: 5px;
            }

            .form-section {
                padding: 40px 20px;
            }

            .form-title {
                font-size: 20px;
            }

            .form-subtitle {
                font-size: 14px;
            }

            .form-header {
                margin-bottom: 30px;
            }

            .form-submit-btn {
                padding: 16px;
                font-size: 15px;
            }
        }

        @media screen and (min-width:320px) and (max-width:380.98px) {
            .hero-section {
                height: 300px;
            }

            .logo-circle {
                width: 70px;
                height: 70px;
                top: 26px;
            }

            .logo-text {
                font-size: 38px;
            }

            .logo-circle::before {
                width: 90px;
                height: 90px;
            }

            .tagline-section {
                padding: 60px 20px;
            }

            .tagline-text {
                font-size: 24px;
                line-height: 36px;
            }

            .tagline-accent::after {
                bottom: 5px;
            }

            .form-section {
                padding: 40px 20px;
            }

            .form-title {
                font-size: 20px;
            }

            .form-subtitle {
                font-size: 14px;
            }

            .form-header {
                margin-bottom: 30px;
            }

            .form-submit-btn {
                padding: 16px;
                font-size: 15px;
            }
        }