
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0A0A0A;
            color: #EDEDED;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 0 24px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: baseline;
            gap: 4px;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .logo-centri { color: white; }
        .logo-gon {
            background: linear-gradient(135deg, #FFFFFF 0%, #A855F7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .badge {
            font-size: 10px;
            font-weight: 600;
            background: rgba(168, 85, 247, 0.18);
            padding: 4px 10px;
            border-radius: 40px;
            color: #A855F7;
            margin-left: 10px;
        }

        .back-home {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 500;
            color: #E0E0E0;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .back-home:hover {
            background: rgba(168, 85, 247, 0.15);
            border-color: #A855F7;
            color: #C084FC;
        }

        .app-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 32px 24px 48px;
        }

        /* Steps wrapper - hidden scrollbar */
        .steps-wrapper {
            background: rgba(18, 18, 24, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 6px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .steps-wrapper::-webkit-scrollbar {
            display: none;
        }

        .steps-nav {
            display: inline-flex;
            gap: 6px;
            width: 100%;
            min-width: 500px;
        }

        .step-btn {
            background: transparent;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            color: #8A8A8A;
            font-family: 'Inter', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .step-btn i { font-size: 14px; }

        .step-btn.active {
            background: linear-gradient(135deg, #A855F7, #3B82F6);
            color: white;
            box-shadow: 0 6px 14px rgba(168, 85, 247, 0.3);
        }

        .step-btn.completed {
            background: rgba(168, 85, 247, 0.15);
            color: #C084FC;
        }

        .config-card {
            background: #0F0F0F;
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .card-header {
            padding: 28px 32px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .card-header h2 {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #FFFFFF, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .card-header p {
            color: #8A8A8A;
            margin-top: 8px;
            font-size: 14px;
        }

        .step-content {
            padding: 32px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            font-weight: 600;
            font-size: 12px;
            display: block;
            margin-bottom: 8px;
            color: #A0A0A0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        input, textarea, select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(20, 20, 26, 0.8);
            border: 1.5px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: all 0.2s;
            color: #EDEDED;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #A855F7;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
        }

        .row-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .color-row {
            display: flex;
            gap: 12px;
            align-items: center;
            background: rgba(20, 20, 26, 0.6);
            border: 1.5px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 8px 16px 8px 12px;
        }

        .color-swatch {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.15);
        }

        .color-hex-input {
            flex: 1;
            background: transparent;
            border: none;
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            padding: 0;
        }

        input[type="color"] {
            width: 48px;
            height: 48px;
            padding: 0;
            border-radius: 16px;
            cursor: pointer;
            border: none;
        }

        /* Premium Slider - perfectly aligned */
        .slider-wrapper {
            margin-bottom: 24px;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .slider-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: capitalize;
            color: #D0D0D0;
        }

        .slider-value {
            font-size: 11px;
            background: rgba(168, 85, 247, 0.2);
            padding: 3px 12px;
            border-radius: 40px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .slider-track-container {
            position: relative;
            width: 100%;
            height: 6px;
            background: #2a2a2a;
            border-radius: 6px;
            cursor: pointer;
        }

        .slider-fill {
            position: absolute;
            height: 100%;
            background: linear-gradient(90deg, #A855F7, #3B82F6);
            border-radius: 6px;
            pointer-events: none;
            transition: width 0.05s ease;
        }

        .slider-thumb {
            position: absolute;
            width: 18px;
            height: 18px;
            background: white;
            border-radius: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            border: 2px solid #A855F7;
            z-index: 2;
        }

        input.slider-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            -webkit-appearance: none;
            background: transparent;
            margin: 0;
            cursor: pointer;
            opacity: 0;
            z-index: 3;
        }

        input.slider-input:focus {
            outline: none;
        }

        input.slider-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: transparent;
            cursor: pointer;
        }

        /* Chips */
        .chips-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 12px 0 8px;
        }

        .chip {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 0.5px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s;
        }

        .chip i {
            font-size: 11px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        .chip i:hover {
            opacity: 1;
            color: #FF6B6B;
        }

        .add-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .small-btn {
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid rgba(168, 85, 247, 0.3);
            padding: 0 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 12px;
            color: #A855F7;
            cursor: pointer;
            transition: all 0.2s;
        }

        .small-btn:hover {
            background: rgba(168, 85, 247, 0.25);
        }

        .location-card {
            background: rgba(20, 20, 26, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 16px;
            margin-bottom: 16px;
            position: relative;
        }

        .remove-location {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(255, 70, 70, 0.15);
            border: none;
            color: #FF6B6B;
            width: 28px;
            height: 28px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .remove-location:hover {
            background: rgba(255, 70, 70, 0.3);
        }

        .action-buttons {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 24px 32px 32px;
            background: #0F0F0F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .btn-primary, .btn-secondary {
            flex: 1;
            border: none;
            padding: 14px 24px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #A855F7, #3B82F6);
            color: white;
        }

        .btn-primary:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(168, 85, 247, 0.3);
        }

        .btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #E0E0E0;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Confirm Screen */
        .confirm-section {
            background: rgba(168, 85, 247, 0.05);
            border-radius: 24px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid rgba(168, 85, 247, 0.15);
        }

        .confirm-title {
            font-size: 14px;
            font-weight: 700;
            color: #A855F7;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .confirm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .confirm-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .confirm-label {
            font-size: 11px;
            color: #888;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .confirm-value {
            font-size: 14px;
            font-weight: 500;
        }

        .trait-bar {
            margin-bottom: 16px;
        }

        .trait-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-bottom: 6px;
        }

        .trait-bar-track {
            height: 6px;
            background: #2a2a2a;
            border-radius: 6px;
            overflow: hidden;
        }

        .trait-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #A855F7, #3B82F6);
            border-radius: 6px;
            transition: width 0.3s ease;
        }

        .loading {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.6s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .app-container { padding: 20px 16px 32px; }
            .step-content { padding: 24px 20px; }
            .row-2col { grid-template-columns: 1fr; gap: 16px; }
            .action-buttons { padding: 20px 24px 24px; }
            .confirm-grid { grid-template-columns: 1fr; gap: 12px; }
        }

        /* Add these classes to replace inline styles */
.confirm-color-text {
    /* color will be set via JS */
}

.trait-bar-fill-dynamic {
    /* width will be set via JS */
}

.color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
    /* background color will be set via JS */
}

.color-swatch-mini {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

.add-location-btn {
    margin-left: 12px;
}

.slider-track-container {
    position: relative;
    width: 100%;
    height: 6px;
    background: #2a2a2a;
    border-radius: 6px;
    cursor: pointer;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #A855F7, #3B82F6);
    border-radius: 6px;
    pointer-events: none;
}

.slider-thumb {
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 2px solid #A855F7;
    z-index: 2;
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: transparent;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
}

.slider-input:focus {
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.slider-wrapper {
    margin-bottom: 24px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    color: #D0D0D0;
}

.slider-value {
    font-size: 11px;
    background: rgba(168, 85, 247, 0.2);
    padding: 3px 12px;
    border-radius: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.constraints-label {
    margin-top: 16px;
}

.constraints-value {
    margin-top: 8px;
}