body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f14;
    color: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero,
main {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0;
    align-items: start;
}

.eyebrow {
    color: #44ff8a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.sub,
.connect {
    color: #c6c6cf;
}

.auth-box,
.cart-box,
.panel,
.kit-card,
.order-card {
    background: #1a1a22;
    border: 1px solid #2d2d38;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.auth-box,
.cart-box,
.panel {
    padding: 20px;
}

.auth-actions,
.grid,
.order-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.grid {
    margin-top: 20px;
}

.kit-card {
    width: 310px;
    padding: 20px;
    border-color: var(--accent);
}

.kit-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.kit-status-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-pill.owned {
    background: rgba(68, 255, 138, 0.15);
    color: #44ff8a;
}

.status-pill.not-owned {
    background: rgba(255, 111, 111, 0.14);
    color: #ff8f8f;
}

.kit-card h3,
.price {
    color: var(--accent);
}

.button {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #44ff8a;
    color: #0b0b10;
    border: 0;
    font-weight: bold;
    cursor: pointer;
}

.button.secondary {
    background: #4f77ff;
    color: white;
}

.button.disabled,
.button:disabled {
    background: #323240;
    color: #9f9fb1;
    cursor: not-allowed;
}

.button.ghost {
    background: transparent;
    border: 1px solid #4b4b58;
    color: #f5f5f5;
}

main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding-bottom: 40px;
}

.cart-items {
    list-style: none;
    padding: 0;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.total {
    font-size: 1.2rem;
    font-weight: bold;
}

.panel {
    width: min(720px, calc(100% - 32px));
    margin: 40px auto;
}

.kit-actions {
    margin-top: 18px;
}

.claim-copy,
.timer-text {
    color: #c6c6cf;
    font-size: 0.92rem;
}

.timer-text {
    margin-top: 10px;
}

.notice {
    margin: 16px 0 8px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #2d2d38;
    background: #1a1a22;
}

.notice.success {
    border-color: rgba(68, 255, 138, 0.45);
    color: #b8ffd2;
}

.panel.narrow {
    width: min(560px, calc(100% - 32px));
}

@media (max-width: 900px) {
    .hero,
    main {
        display: block;
    }

    .cart-box {
        margin-top: 24px;
    }
}