/* ===== SUNDUQVAULT GOLDEN EDITION ===== */
/* EVERYTHING GOLD - BACKGROUND TOO */

:root {
    --primary: #ffd700;        /* Rich Gold */
    --secondary: #ffed4e;       /* Light Gold */
    --dark: #1a1a1a;            /* Almost Black (for text only) */
    --light: #ffffff;           /* White */
    --accent: #ffb347;          /* Warm Amber */
    --success: #ffd700;          /* Gold */
    --danger: #ff4444;           /* Red */
    --gray: #666666;             /* Gray */
    --card-bg: rgba(255, 215, 0, 0.95); /* GOLD BACKGROUND */
    --gold-glow: rgba(255, 215, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); /* GOLD GRADIENT */
    min-height: 100vh;
    color: #1a1a1a;  /* Dark text for contrast */
    padding: 20px;
}

.container,
body > div:not(.specific-exception) {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);  /* Semi-transparent white */
    backdrop-filter: blur(10px);
    border: 2px solid #1a1a1a;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;  /* Dark text */
    font-weight: 800;
    text-align: center;
}

.card h1 {
    color: #1a1a1a;
}

.tagline, 
.subtitle,
.question-hint,
p {
    font-size: 1.1rem;
    color: #1a1a1a;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    text-align: center;
}

input[type="radio"] {
    margin: 10px;
    accent-color: #1a1a1a;
    transform: scale(1.3);
}

.option {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid #1a1a1a !important;
    color: #1a1a1a !important;
    padding: 25px 20px !important;
    border-radius: 16px !important;
    margin: 15px 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.option:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    border-color: #1a1a1a !important;
}

.option div:first-child {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.option strong {
    color: #1a1a1a !important;
    font-size: 1.3rem !important;
    display: block;
    margin-top: 10px;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

label {
    display: block;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.next-btn,
.choice-btn,
.whatsapp-btn,
button[onclick*="goTo"],
.btn {
    background: #1a1a1a !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 30px !important;
    color: #ffd700 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s !important;
    margin-top: 20px !important;
    display: block !important;
    text-decoration: none !important;
    text-align: center !important;
}

.next-btn:hover,
.choice-btn:hover,
.whatsapp-btn:hover,
.btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.choice-btn.option2 {
    background: #333333 !important;
}

.choice-btn.option2:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

#previewArea {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin: 30px auto !important;
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.controls {
    background: rgba(255, 255, 255, 0.3) !important;
    padding: 20px !important;
    border-radius: 16px !important;
    margin: 20px 0 !important;
    text-align: center !important;
}

.controls h3 {
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
}

.controls button {
    background: #1a1a1a !important;
    color: #ffd700 !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    margin: 8px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    display: inline-block !important;
    width: auto !important;
}

.controls button:hover {
    background: #333333 !important;
    transform: translateY(-2px) !important;
}

.summary-box {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #1a1a1a;
}

.summary-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #1a1a1a;
    display: flex;
    justify-content: space-between;
}

.label {
    font-weight: 700;
    color: #1a1a1a;
}

.value {
    color: #1a1a1a;
    font-weight: 600;
}

.final-price {
    background: #1a1a1a;
    color: #ffd700;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #1a1a1a !important;
    color: #ffd700 !important;
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.error-msg,
#errorMsg {
    background: rgba(255, 68, 68, 0.2);
    color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    margin: 20px 0;
    text-align: center;
}

.success-msg {
    background: rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    margin: 20px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .card, .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .next-btn, .whatsapp-btn, .btn {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    #previewArea {
        width: 95% !important;
        height: auto !important;
        padding: 10px !important;
    }
}

.emoji {
    font-size: 1.4em;
}

.hidden {
    display: none !important;
    }
