:root {
    --bg-dark: #020205;
    --aura-purple: #7d5fff;
    --aura-cyan: #00d2ff;
    --aura-green: #00ff88;
    --aura-gold: #ffd700;
    --glass: rgba(255, 255, 255, 0.035);
    --glass-border: rgba(125, 95, 255, 0.18);
    --success: #00ff88;
    --error: #ff4757;
    --warning: #ffa502;
    
    /* Typography scale using rem */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-md: 1.125rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 1.875rem;
    --font-3xl: 2.25rem;
    
    /* Spacing scale using rem */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999rem;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
}

body {
    background-color: var(--bg-dark);
    color: #f0f0f0;
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 30% 20%, #1a1a3a 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, #0f0f2e 0%, transparent 65%),
                radial-gradient(circle at 50% 80%, #02020a 0%, var(--bg-dark) 80%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.35;
    mix-blend-mode: screen;
}

/* Setup Container */
.setup-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: var(--space-3xl);
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-sm);
    color: #888;
    transition: all 0.4s ease;
}

.step.active {
    color: var(--aura-cyan);
}

.step.completed {
    color: var(--success);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--glass);
    border: 0.125rem solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active .step-number {
    border-color: var(--aura-cyan);
    background: rgba(0, 210, 255, 0.15);
    box-shadow: 0 0 1.25rem rgba(0, 210, 255, 0.3);
}

.step.completed .step-number {
    border-color: var(--success);
    background: rgba(0, 255, 136, 0.15);
}

.progress-bar-bg {
    position: absolute;
    top: 1.25rem;
    left: 0;
    right: 0;
    height: 0.125rem;
    background: var(--glass-border);
    z-index: 1;
}

.progress-bar-fill {
    position: absolute;
    top: 1.25rem;
    left: 0;
    height: 0.125rem;
    background: linear-gradient(90deg, var(--aura-purple), var(--aura-cyan));
    width: 0%;
    transition: width 0.5s ease;
    z-index: 2;
}

/* Form Sections */
/* RESET EVERYTHING FOR SECTIONS */
.form-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    margin-bottom: var(--space-xl);
    opacity: 0;
    visibility: hidden;
}

/* The Force-Show State */
.form-section.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Basic fade in without the 'forwards' trap */
    transition: opacity 0.3s ease; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(1.25rem); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-2xl);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #fff, var(--aura-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #a0a0c0;
    margin-bottom: var(--space-xl);
    font-size: var(--font-sm);
}

/* Form Groups */
.form-group {
    margin-bottom: var(--space-xl);
}

label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: #d0d0e0;
}

input, textarea, select {
    width: 100%;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.4);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-md);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--aura-purple);
    box-shadow: 0 0 0.9375rem rgba(125, 95, 255, 0.2);
}

textarea {
    resize: vertical;
    min-height: 6.25rem;
}

/* Server Type Options */
.server-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.server-option {
    background: rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-option:hover {
    border-color: var(--aura-purple);
    transform: translateY(-0.1875rem);
}

.server-option.selected {
    border-color: var(--aura-cyan);
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 1.25rem rgba(0, 210, 255, 0.2);
}

.server-option .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.server-option .name {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.server-option .desc {
    font-size: var(--font-xs);
    color: #a0a0c0;
}

/* Premium Pricing Cards */
.pricing-container {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 15rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--aura-purple);
    box-shadow: 0 1.25rem 2.5rem rgba(125, 95, 255, 0.2);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(125, 95, 255, 0.15), rgba(0, 210, 255, 0.08));
    border: 0.125rem solid transparent;
    background-clip: padding-box;
    position: relative;
    cursor: pointer;
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 0.125rem;
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan), var(--aura-gold));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Temp disabled overlay for premium card */
.pricing-card.premium.disabled-temp {
    opacity: 0.85;
}

.pricing-card.premium.disabled-temp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    pointer-events: none;
    backdrop-filter: blur(1px);
}

/* Coming Soon Badge - Animated */
.pricing-card.premium .badge {
    position: absolute;
    top: -0.75rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #ff6b6b, #ffa502);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    color: white;
    box-shadow: 0 0 0.625rem rgba(255, 107, 107, 0.5);
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
        transform: scale(1.05);
    }
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-xl);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff, var(--aura-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.premium h3 {
    background: linear-gradient(135deg, var(--aura-gold), var(--aura-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Lock icon on premium title */
.pricing-card.premium h3::after {
    content: ' 🔒';
    font-size: 0.8rem;
    opacity: 0.6;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--aura-cyan);
    font-family: 'Orbitron', sans-serif;
}

.pricing-card.premium .price {
    color: var(--aura-gold);
    text-shadow: 0 0 0.625rem rgba(255, 215, 0, 0.3);
}

.pricing-card .price span {
    font-size: var(--font-base);
    font-weight: 400;
    color: #a0a0c0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-card ul li {
    padding: var(--space-sm) 0;
    color: #d0d0e0;
    font-size: var(--font-sm);
    border-bottom: 0.0625rem solid var(--glass-border);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Coming Soon Note Styles */
.coming-soon-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
    flex-wrap: wrap;
}

.coming-soon-note span:first-child {
    color: var(--aura-gold);
    font-weight: 600;
    font-size: var(--font-xs);
}

/* Notify Me Button */
.notify-me {
    background: rgba(125, 95, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-xs);
    font-weight: 600;
    border: 1px solid rgba(125, 95, 255, 0.3);
    white-space: nowrap;
}

.notify-me:hover {
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan));
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(125, 95, 255, 0.5);
}

/* Disabled Radio Button Styles */
.pricing-card input[type="radio"] {
    display: none;
}

.pricing-card input[type="radio"][disabled] {
    display: none;
}

.pricing-card input[type="radio"][disabled] + .btn-select {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.pricing-card input[type="radio"][disabled] + .btn-select::before {
    content: '🔒';
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.pricing-card input[type="radio"][disabled] + .btn-select:hover {
    transform: none;
    box-shadow: none;
}

/* Tooltip on hover for disabled button */
.pricing-card input[type="radio"][disabled] + .btn-select {
    position: relative;
}

.pricing-card input[type="radio"][disabled] + .btn-select:hover::after {
    content: 'Premium will be available when we reach 500+ players!';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--aura-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    white-space: nowrap;
    z-index: 100;
    margin-bottom: 0.5rem;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: normal;
    text-transform: none;
}

.pricing-card .btn-select {
    display: inline-block;
    width: 100%;
    padding: var(--space-md);
    background: var(--glass);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-full);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card input[type="radio"]:checked + .btn-select {
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan));
    border-color: transparent;
    box-shadow: 0 0 0.9375rem rgba(125, 95, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-note {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card input[type="radio"][disabled] + .btn-select:hover::after {
        display: none;
    }
}

/* Extras Section */
.extras-section {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 0.0625rem solid var(--glass-border);
}

.extras-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-lg);
    margin-bottom: var(--space-lg);
    color: var(--aura-cyan);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: var(--space-md);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.extra-item:hover {
    border-color: var(--aura-purple);
    background: rgba(125, 95, 255, 0.1);
}

.extra-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    cursor: pointer;
}

.extra-item span {
    font-size: var(--font-sm);
    color: #d0d0e0;
}

/* Buttons */
.button-group {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.btn {
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--glass);
    border: 0.0625rem solid var(--glass-border);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan));
    border: none;
    box-shadow: 0 0 1.25rem rgba(125, 95, 255, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2.1875rem rgba(125, 95, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--aura-purple);
    transform: scale(1.02);
}

/* Review Section */
.review-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 0.0625rem solid var(--glass-border);
}

.review-label {
    font-weight: 600;
    color: var(--aura-cyan);
}

.review-value {
    color: #d0d0e0;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 5, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 3.75rem;
    height: 3.75rem;
    border: 0.1875rem solid var(--glass-border);
    border-top-color: var(--aura-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: var(--space-xl);
}

.success-message .emoji {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .setup-container {
        padding: var(--space-lg);
    }
    
    .form-section {
        padding: var(--space-lg);
    }
    
    .pricing-container {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .pricing-card {
        min-width: auto;
    }
    
    .server-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-text {
        display: none;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .server-type-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .section-title {
        font-size: var(--font-xl);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: var(--glass);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--aura-purple);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aura-cyan);
}

/* Animations for premium cards */
@keyframes premiumGlow {
    0%, 100% {
        box-shadow: 0 0 1.25rem rgba(125, 95, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 2.5rem rgba(125, 95, 255, 0.4);
    }
}

.pricing-card.premium {
    animation: premiumGlow 3s ease-in-out infinite;
}

.learn-more-link {
    margin-top: var(--space-md);
    text-align: center;
}

.learn-more-link a {
    color: var(--aura-cyan);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-link a:hover {
    color: var(--aura-purple);
    transform: translateX(5px);
}

/* Config Section */
.config-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--glass-border);
}

.config-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-md);
    color: var(--aura-cyan);
    margin-bottom: var(--space-sm);
}

.config-desc {
    font-size: var(--font-sm);
    color: #a0a0c0;
    margin-bottom: var(--space-lg);
}

.quest-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.quest-item label {
    min-width: 80px;
    margin-bottom: 0;
}

.quest-item input {
    flex: 2;
    min-width: 200px;
}

.btn-config {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: var(--aura-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-config:hover {
    border-color: var(--aura-purple);
    transform: scale(1.02);
}

.btn-config-small {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 2px 8px;
    color: var(--aura-cyan);
    cursor: pointer;
    font-size: var(--font-xs);
    transition: all 0.3s ease;
}

.btn-config-small:hover {
    border-color: var(--aura-purple);
}

/* Toggle Switch */
.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--glass-border);
}

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

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

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

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

input:checked + .slider {
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan));
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Survey Config */
.survey-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.survey-header input {
    width: 100px;
}

.survey-questions {
    margin-bottom: var(--space-md);
}

.survey-question-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--glass-border);
}

.btn-add-question {
    background: var(--glass);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: var(--aura-cyan);
    cursor: pointer;
    width: 100%;
    margin-top: var(--space-sm);
    transition: all 0.3s ease;
}

.btn-add-question:hover {
    border-color: var(--aura-purple);
    background: rgba(125, 95, 255, 0.1);
}

/* Config Modal */
.config-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.config-modal.active {
    display: flex;
}

.config-modal-content {
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.98), rgba(5, 5, 15, 0.98));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.config-modal-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.config-modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--font-lg);
    background: linear-gradient(135deg, var(--aura-cyan), var(--aura-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.config-modal-body {
    padding: var(--space-xl);
}

.config-modal-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
}

.locked-vip {
    position: relative;
    overflow: hidden;
}

.vip-hype-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px dashed #00ff88;
    border-radius: 12px;
}

.disabled-input {
    opacity: 0.5;
    pointer-events: none;
}

/* Ensure Modals actually show up */
.config-modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}
