:root {
    --bg-color: #0b0f19;
    --card-bg: #111827;
    --card-border: #1f2937;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(11, 15, 25, 0.9);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--accent-green);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: var(--text-main);
}

/* Hero Banner */
.hero {
    padding: 50px 5% 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 25px;
}

/* Configurator Container */
.configurator {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 5%;
}

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.config-header h2 {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.currency-select {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 6px;
    outline: none;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Selectable Options Grid */
.options-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    flex: 1;
    min-width: 200px;
}

.option-card:hover, .option-card.active {
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.03);
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.game-card:hover, .game-card.active {
    border-color: var(--accent-green);
}

.game-card h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.game-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tag-rec {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d97706;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Plans Section */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

.price-row {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.price-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: normal;
}

.order-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}

.order-btn:hover {
    background: var(--accent-green-hover);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
}
