  :root {
            --primary-gold: #FFD700;
            --dark-gold: #B8860B;
            --light-gold: #FFF8DC;
            --accent-yellow: #FFC107;
            --dark-bg: #1a1a1a;
            --card-bg: #2a2a2a;
            --text-light: #f5f5f5;
            --text-muted: #aaa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        .electric-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .electric-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            filter: blur(1px);
            animation: electricFlow 3s linear infinite;
            opacity: 0.7;
        }
        
        @keyframes electricFlow {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(100vw);
                opacity: 0;
            }
        }
        
        .professional-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .professional-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--dark-gold);
        }
        
        .professional-logo {
            height: 100px;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        }
        
        .professional-main-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(to right, var(--primary-gold), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .professional-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }
        
        .professional-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .professional-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-gold), var(--accent-yellow));
        }
        
        .professional-progress-container {
            margin-bottom: 30px;
        }
        
        .professional-progress-bar {
            height: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        
        .professional-progress-fill {
            height: 100%;
            background: linear-gradient(to right, var(--primary-gold), var(--accent-yellow));
            border-radius: 4px;
            transition: width 0.5s ease;
        }
        
        .professional-progress-text {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .professional-question-section {
            display: none;
        }
        
        .professional-question-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .professional-question-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--primary-gold);
        }
        
        .professional-options-list {
            list-style: none;
        }
        
        .professional-option-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .professional-option-item:hover {
            background-color: rgba(255, 215, 0, 0.1);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
        }
        
        .professional-option-item label {
            display: block;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .professional-radio {
            margin-right: 10px;
            transform: scale(1.2);
        }
        
        .professional-completion-section {
            text-align: center;
            display: none;
        }
        
        .professional-completion-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .professional-completion-title {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }
        
        .professional-completion-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: var(--text-muted);
        }
        
        .professional-button {
            background: linear-gradient(to right, var(--primary-gold), var(--accent-yellow));
            color: #000;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        .professional-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
        }
        
        .professional-community-section {
            text-align: center;
            padding: 40px 0;
        }
        
        .professional-community-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }
        
        .professional-community-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--text-muted);
        }
        
        .professional-community-button {
            background: transparent;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .professional-community-button:hover {
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px);
        }
        
        .professional-about-section {
            margin: 40px 0;
            text-align: center;
        }
        
        .professional-about-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-gold);
        }
        
        .professional-about-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text-muted);
        }
        
        .professional-warning-section {
            background-color: rgba(184, 134, 11, 0.1);
            border-left: 0px solid var(--dark-gold);
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
        }
        
        .professional-warning-title {
            font-size: 1.2rem;
            color: var(--dark-gold);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .professional-warning-title::before {
            content: '⚠️';
            margin-right: 10px;
        }
        
        .professional-warning-text p {
            margin-bottom: 10px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-muted);
        }
        
        .professional-footer {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            text-align: center;
        }
        
        .professional-footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .professional-footer-link {
            color: var(--primary-gold);
            margin: 0 15px;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .professional-footer-link:hover {
            color: var(--accent-yellow);
            text-decoration: underline;
        }
        
        .professional-copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .professional-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .professional-modal-content {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid var(--primary-gold);
        }
        
        .professional-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .professional-modal-title {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }
        
        .professional-modal-text {
            line-height: 1.6;
            color: var(--text-muted);
        }
        
        @media (max-width: 768px) {
            .professional-main-title {
                font-size: 2rem;
            }
            
            .professional-card {
                padding: 20px;
            }
            
            .professional-question-title {
                font-size: 1.3rem;
            }
            
            .professional-footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }