* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #fff;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    width: 100%;
    max-width: 420px;
    background: #111827;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
}

.title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 18px;
}

.status {
    margin-bottom: 18px;
    font-size: 14px;
    color: #facc15;
}

.price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.price-item {
    background: #1f2937;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.label {
    display: block;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
}

.meta {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.8;
}