/* FINAL FIXED — CLEAN, READABLE, PREMIUM DARK THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* { box-sizing: border-box; margin:0; padding:0; }
body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

/* LOGO — NOT MASSIVE ANYMORE */
.logo { height: 70px !important; }   /* ← Was 90px, now perfect */

/* ALL TEXT WHITE */
.card, .form-control, .form-select, label, p, h1,h2,h3,h4,h5,h6, small, li, td, th, span {
    color: #ffffff !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.6) !important; }

/* INPUT FIELDS */
.form-control, .form-select {
    background: rgba(30,35,50,0.9) !important;
    border: 1px solid rgba(255,120,1,0.3) !important;
    border-radius: 14px;
    padding: 14px;
}
.form-control:focus, .form-select:focus {
    border-color: #ff7801 !important;
    box-shadow: 0 0 20px rgba(255,120,1,0.4) !important;
    background: rgba(40,45,60,0.95) !important;
}

/* CARDS */
.card {
    background: rgba(20,25,35,0.8) !important;
    border: 1px solid rgba(255,120,1,0.2) !important;
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
}
.card:hover { transform: translateY(-8px); }

/* BUTTONS — FIXED: NO WHITE TEXT ON WHITE BG */
.btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.4) !important;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border-color: #ff7801 !important;
}

/* BRAND BUTTON */
.btn-brand {
    background: linear-gradient(45deg, #ff7801, #ff9a3d) !important;
    color: white !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255,120,1,0.4);
}
.btn-brand:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255,120,1,0.6);
}
.text-muted{
    color: white;
}
/* RECOMMENDED BADGE — NOW PERFECT SIZE */
.recommended-badge {
    background: linear-gradient(45deg, #59afff, #7acaff);
    color: black !important;
    font-weight: 700;
    font-size: 0.85rem !important;     /* ← Smaller */
    padding: 5px 18px !important;     /* ← Smaller */
    border-radius: 50px;
    z-index: 10;
}

/* GENERIC TITLE — NOW WHITE, NOT RED */
.text-danger { color: #ffffff !important; }   /* ← Generic header is now white */

/* PRICE */
.price {
    font-size: 4.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff7801, #ffb74a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PROGRESS BAR */
.progress { height: 6px; background: #222; border-radius: 3px; }
.progress-bar {
    background: linear-gradient(90deg, #ff7801, #ffa940);
    box-shadow: 0 0 25px rgba(255,120,1,0.6);
}

/* SELECTED CARD GLOW */
.film-card.selected {
    border: 2px solid #ff7801 !important;
    box-shadow: 0 0 40px rgba(255,120,1,0.4) !important;
}