/* --- RESET & FONTS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    background-color: #121215; /* Deep dark background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- LAYOUT --- */
.app-container {
    width: 100%;
    max-width: 400px; /* Constrains it to a nice box width */
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 25px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: #e4c67d; /* Gold Accent */
}

.subtitle {
    color: #6b7280;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- THE CARD (The Box) --- */
.prediction-card {
    background: #1c1d21; /* Slightly lighter dark box */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #2b2f38;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- 1. IMAGE AREA --- */
.image-container {
    height: 150px;
    background: #131417; /* Very dark inner box */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #2b2f38;
    overflow: hidden;
}

#skin-image {
    max-width: 90%;
    max-height: 90%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

#image-placeholder {
    color: #6b7280;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- 2. INPUTS --- */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

label {
    display: block;
    color: #888;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

select, input[type="number"] {
    width: 100%;
    background: #131417;
    border: 1px solid #2b2f38;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

select:focus, input:focus {
    border-color: #e4c67d; /* Gold focus */
}

/* --- 3. TOGGLE --- */
.toggle-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #131417;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #2b2f38;
}

.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    margin-right: 10px;
}

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

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

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

input:checked + .slider { background-color: #fff; }
input:checked + .slider:before { background-color: #121215; transform: translateX(16px); }

.label-text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* --- 4. NEW: CUSTOMIZATIONS (Fits the theme) --- */
.customization-section {
    position: relative;
    margin-bottom: 20px;
    border: 1px dashed #2b2f38;
    padding: 10px;
    border-radius: 6px;
    background: #131417;
}

.section-label {
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
}

.slots-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.3; /* Ghost effect */
}

.slot {
    width: 30px;
    height: 30px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #555;
}

.keychain-slot { border-radius: 4px; color: #e4c67d; border-color: #e4c67d; }
.plus { font-size: 14px; color: #555; }

/* The Lock Overlay */
.locked-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(19, 20, 23, 0.85);
    z-index: 5;
}

.locked-overlay span {
    border: 1px solid #e4c67d;
    color: #e4c67d;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(-3deg);
    background: #1c1d21;
}

/* --- 5. BUTTON (The Green One) --- */
button {
    width: 100%;
    padding: 14px;
    background: #4caf50; /* The exact green from your image */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

button:hover { background: #43a047; }
button:disabled { background: #2f3b47; color: #555; cursor: not-allowed; }

/* --- 6. RESULTS --- */
#result-area {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #2b2f38;
}

.price-label { font-size: 11px; color: #888; text-transform: uppercase; margin-bottom: 4px; }
.price-value { font-size: 28px; color: #4caf50; font-weight: 700; }
.hidden { display: none !important; }