
        :root {
            /* Dark Gold Theme Variables */
            --bg-dark: #121212;
            --bg-darker: #0a0a0a;
            --gold-primary: #D4AF37;
            --gold-secondary: #FFD700;
            --gold-light: #FFECB3;
            --text-light: #F5F5F5;
            --text-muted: #AAAAAA;
            --border-gold: rgba(212, 175, 55, 0.3);
            --shadow-gold: 0 4px 8px rgba(212, 175, 55, 0.2);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        /* Header Styles */
        .header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logo {
            width: 180px;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
        }

        .section-title {
            color: var(--gold-primary);
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Toggle Switch */
        .billing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2.5rem 0;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .billing-option {
            font-size: 1rem;
            color: var(--text-light);
        }

        .discount-badge {
            color: var(--gold-secondary);
            font-size: 0.9em;
            margin-left: 0.5rem;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
            margin: 0 1rem;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #555;
            transition: var(--transition);
            border-radius: 34px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: var(--transition);
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: var(--gold-primary);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pricing-card {
            background-color: var(--bg-darker);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-gold);
            border-color: var(--gold-primary);
        }

        .popular-card {
            border: 2px solid var(--gold-primary);
            transform: scale(1.02);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--gold-primary);
            color: var(--bg-dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-name {
            color: var(--gold-primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .price-display {
            font-size: 2.5rem;
            margin: 1.5rem 0;
            color: var(--gold-secondary);
            font-weight: 700;
        }

        .price-display span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
        }

        .plan-features li:before {
            content: "✓";
            color: var(--gold-primary);
            margin-right: 0.8rem;
            font-weight: bold;
        }

        .select-plan-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gold-primary);
            color: var(--bg-dark);
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .select-plan-btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-2px);
        }

        /* Selected Plan Section */
        .selected-plan-container {
            text-align: center;
            margin: 3rem auto;
            padding: 2rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            max-width: 600px;
            display: none;
        }

        .selected-plan-title {
            color: var(--gold-primary);
            margin-bottom: 1rem;
        }

        .selected-plan-name {
            font-weight: 600;
        }

        .selected-price {
            font-size: 1.8rem;
            color: var(--gold-secondary);
            font-weight: 700;
            margin: 1rem 0;
        }

        .change-plan-btn {
            background: transparent;
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .change-plan-btn:hover {
            background: var(--gold-primary);
            color: var(--bg-dark);
        }

        /* Payment Section */
        .payment-section {
            display: none;
            margin: 3rem 0;
        }

        .payment-methods-container {
            background: var(--bg-darker);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .section-heading {
            color: var(--gold-primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .payment-method {
            position: relative;
        }

        .payment-method input {
            position: absolute;
            opacity: 0;
        }

        .payment-method-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            border: 2px solid var(--border-gold);
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
            height: 100%;
        }

        .payment-method i {
            font-size: 2.5rem;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }

        .payment-method-label {
            font-size: 1rem;
            font-weight: 500;
        }

        .payment-method input:checked + .payment-method-content {
            border-color: var(--gold-primary);
            background: rgba(212, 175, 55, 0.1);
            box-shadow: 0 0 0 2px var(--gold-primary);
        }

        .payment-details {
            margin-top: 2rem;
            padding: 2rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-gold);
            border-radius: 8px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gold-light);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: var(--bg-darker);
            border: 1px solid var(--border-gold);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .info-note {
            font-size: 0.9rem;
            color: var(--gold-light);
            font-style: italic;
            margin-top: 1rem;
        }

        /* Registration Form */
        .registration-form {
            background: var(--bg-darker);
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 2rem;
        }

        .terms-container {
            margin: 2rem 0;
        }

        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .terms-checkbox input {
            margin-right: 1rem;
            margin-top: 0.3rem;
        }

        .terms-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .terms-link {
            color: var(--gold-secondary);
            text-decoration: underline;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gold-primary);
            color: var(--bg-dark);
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .submit-btn:disabled {
            background: #555;
            color: #999;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .payment-methods {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 1.5rem 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }
    







        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

        .login-container {
            width: 100%;
            max-width: 450px;
            background: var(--bg-darker);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-gold);
            border: 1px solid var(--border-gold);
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .login-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
            z-index: -1;
        }

        .logo-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .logo-img {
            height: 80px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
        }

        .logo-text {
            font-size: 2.2rem;
            color: var(--gold-primary);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        .logo-subtext {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 400;
        }

        .login-form .form-group {
            margin-bottom: 1.5rem;
        }

        .login-form .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--gold-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .login-form .form-control {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-gold);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .login-form .form-control:focus {
            outline: none;
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

        .forgot-password {
            display: block;
            text-align: right;
            margin-top: -0.8rem;
            margin-bottom: 1.5rem;
        }

        .forgot-password a {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .forgot-password a:hover {
            color: var(--gold-primary);
            text-decoration: underline;
        }

        .login-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gold-primary);
            color: var(--bg-dark);
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
            box-shadow: var(--shadow-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .login-btn:hover {
            background: var(--gold-secondary);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.8rem 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .divider:before, .divider:after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-gold);
        }

        .divider:before {
            margin-right: 1rem;
        }

        .divider:after {
            margin-left: 1rem;
        }

        .register-cta {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .register-cta a {
            color: var(--gold-primary);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            margin-left: 0.5rem;
        }

        .register-cta a:hover {
            color: var(--gold-secondary);
            text-decoration: underline;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-dark);
            border: 1px solid var(--border-gold);
            color: var(--text-light);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .social-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
            
            .login-container {
                padding: 2rem 1.5rem;
            }
            
            .logo-img {
                height: 70px;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }
        }
    