:root {
    --bg: linear-gradient(180deg, #0a0f1c, #05070d);
    --card-bg: rgba(15, 23, 42, 0.85);
    --border: rgba(234, 179, 8, 0.3);
    --gold: #eab308;
    --emerald: #22c55e;
    --neon: #00ffcc;
    --text: #ffffff;
    --text-dim: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    padding-bottom: 60px;
}

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.logo-main {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
}

.logo-sub {
    background: linear-gradient(90deg, #eab308, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.btn-back {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
}

/* Title */
.page-title {
    font-size: 26px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #eab308, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 25px;
}

/* ===================== */
/* UC GRID */
/* ===================== */

.uc-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.uc-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Shine animation */
.uc-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(234, 179, 8, 0.15), transparent);
    transform: rotate(25deg);
    transition: 0.7s;
}

.uc-card:hover::before {
    top: 120%;
}

.uc-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.6);
}

/* Active selected */
.uc-card.active {
    border: 2px solid var(--neon);
    box-shadow: 0 0 35px rgba(0, 255, 204, 0.7);
}

/* Badge */
.uc-card .badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 9px;
    border-radius: 8px;
}

/* Icon */
.uc-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.6));
}

/* UC amount */
.uc-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 900;
}

/* Price */
.uc-card p {
    color: var(--gold);
    font-weight: 900;
    font-size: 16px;
}

/* ===================== */
/* ORDER SUMMARY */
/* ===================== */

.order-summary {
    background: rgba(15, 23, 42, 0.9);
    border: 2px dashed var(--emerald);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.sum-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.val {
    font-weight: 900;
    color: var(--neon);
}

/* ===================== */
/* BUTTON */
/* ===================== */

.btn-primary-lg {
    width: 100%;
    background: linear-gradient(90deg, #eab308, #22c55e);
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.6);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.8);
}

.btn-primary-lg:disabled {
    background: #1e293b;
    color: #475569;
    box-shadow: none;
    cursor: not-allowed;
}

/* Note */
.note {
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 15px;
}