/* css/style.css */
body { margin: 0; font-family: 'Segoe UI', sans-serif; color: white; background-color: #121212; min-height: 100vh; display: flex; flex-direction: column; }

/* Layout & Typography */
main { flex-grow: 1; padding: 40px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
h1, h2, h3 { color: white; margin-top: 0; }
a { text-decoration: none; color: inherit; }

/* Header & Footer */
header, footer { background-color: #1a1a1a; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 100; border-bottom: 1px solid #333; }
footer { margin-top: auto; justify-content: center; font-size: 14px; color: #aaa; border-top: 1px solid #333; border-bottom: none; }
.brand-link { color: #fbbf24; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* Navigation */
nav { position: absolute; left: 50%; transform: translateX(-50%); }
nav a { color: #ccc; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: 0.3s; }
nav a:hover { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }

/* Buttons & Components */
.btn-gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: black; padding: 12px 24px; font-weight: 700; border-radius: 8px; border: none; cursor: pointer; transition: transform 0.2s; display: inline-block; text-align: center; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3); }

/* Cart Icon */
.cart { position: relative; font-size: 24px; cursor: pointer; color: white; }
#cart-count { position: absolute; top: -8px; right: -12px; background: #fbbf24; color: black; font-weight: bold; font-size: 11px; border-radius: 50%; padding: 2px 6px; }

/* --- GAME GRIDS (The Buttons) --- */
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.game-card { background: #1f1f1f; padding: 30px; border-radius: 12px; border: 1px solid #333; text-align: center; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 140px; }
.game-card h3 { color: #fbbf24; margin-bottom: 5px; font-size: 22px; }
.game-card:hover { border-color: #fbbf24; transform: translateY(-5px); background: #252525; }

/* --- SERVICE CALCULATOR (SkyCoach Style) --- */
.service-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.config-panel { background: #1a1a1a; padding: 30px; border-radius: 16px; border: 1px solid #333; }
.sticky-summary { position: sticky; top: 20px; background: #1a1a1a; padding: 30px; border-radius: 16px; border: 1px solid #fbbf24; height: fit-content; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Form Elements */
.option-group { margin-bottom: 25px; }
.option-label { display: block; font-weight: 700; color: #fbbf24; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; }
.radio-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-hidden { display: none; }
.radio-tile { background: #121212; border: 1px solid #444; padding: 12px 15px; border-radius: 8px; cursor: pointer; flex: 1; text-align: center; color: #888; font-weight: 600; transition: 0.2s; min-width: 100px; }
.radio-hidden:checked + .radio-tile { background: #fbbf24; color: black; border-color: #fbbf24; font-weight: 700; }
.range-wrap { display: flex; align-items: center; gap: 15px; background: #121212; padding: 15px; border-radius: 8px; border: 1px solid #333; }
input[type=range] { flex-grow: 1; accent-color: #fbbf24; cursor: pointer; }
.range-val { font-weight: 700; color: #fbbf24; min-width: 30px; text-align: center; }

@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } nav { display: none; } }

/* --- PRO SERVICE CARDS (SkyCoach Style) --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pro-card {
    position: relative;
    height: 380px; /* Tall card */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push text to bottom */
}

.pro-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* The dark fade at the bottom so text is readable */
.card-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 16, 20, 0.6) 40%, rgba(15, 16, 20, 0.95) 80%);
    padding: 20px;
    width: 100%;
    color: white;
}

/* Badges (e.g. "Save 25%", "Hot") */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #22c55e; /* Green for "Save" */
    color: black;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}
.card-badge.orange { background: #f97316; color: white; } /* Orange for "Hot" */
.card-badge.purple { background: #8b5cf6; color: white; } /* Purple for "Bundle" */

/* Typography */
.pro-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.pro-subtitle {
    font-size: 13px;
    color: #a78bfa; /* Light purple like your image */
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

/* Bullet Points */
.pro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}
.pro-features li {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pro-features li::before {
    content: "♦"; /* Diamond bullet */
    color: #fbbf24;
    font-size: 10px;
}

/* Price Tag */
.pro-price {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.pro-price span {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}