/* =========================
   OMNI PRIME TERMS (OTT UI)
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

body {
    background: radial-gradient(circle at top, #111827, #0b0f19 60%);
    color: #fff;
}

/* Layout */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 16px;
}

/* Card */
.card {
    width: 100%;
    max-width: 900px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid #1f2937;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}

/* Header */
.header {
    padding: 24px;
    border-bottom: 1px solid #1f2937;
    background: linear-gradient(90deg, #111827, #0f172a);
}

.header h1 {
    font-size: 26px;
    font-weight: 700;
}

.header p {
    color: #9ca3af;
    margin-top: 5px;
}

.meta {
    font-size: 13px;
    color: #6b7280;
    margin-top: 10px;
}

/* Content */
.content {
    padding: 24px;
}

/* Section (dynamic blocks) */
.section {
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid #1f2937;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    transition: 0.2s ease;
}

.section:hover {
    transform: translateY(-2px);
    border-color: #374151;
}

.section h2 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
}

.section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

/* List support */
.section ul {
    margin-left: 20px;
    margin-top: 8px;
}

.section ul li {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 18px;
    border-top: 1px solid #1f2937;
    font-size: 13px;
    color: #6b7280;
}

/* Badge (optional use) */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    background: #1f2937;
    border-radius: 999px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 600px) {
    .header h1 {
        font-size: 20px;
    }

    .content {
        padding: 16px;
    }
}