:root {
    --ink: #0b0e14;
    --paper: #f6f2ea;
    --accent: #cc2d4a;
    --accent-dark: #8d1d30;
    --steel: #2a3347;
    --fog: #dde0e7;
    --gold: #d7b07c;
    --shadow: 0 28px 80px rgba(16, 25, 40, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 20% 20%, #fff7ec 0%, #f2e9dc 45%, #e7e1d5 100%);
    min-height: 100vh;
}

.page-create .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    animation: rise 0.6s ease-out;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.brand-mark {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-weight: 700;
    border-radius: 14px;
    background: var(--steel);
    color: #fff;
    letter-spacing: 1px;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.brand-tag {
    color: #5a647a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card {
    background: #fff;
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 36px;
}

.card h1 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin: 0 0 12px;
}

.lead {
    font-size: 18px;
    color: #3d4658;
    margin-bottom: 28px;
}

.form {
    display: grid;
    gap: 12px;
}

.label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.8px;
    color: #6c768a;
}

.input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #d4d8e0;
    font-size: 16px;
    outline: none;
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(204, 45, 74, 0.15);
}

.btn {
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(204, 45, 74, 0.3);
}

.result {
    margin-top: 24px;
    padding: 16px;
    background: #f7f2ea;
    border-radius: 14px;
}

.result-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.6px;
    color: #7a8396;
    margin-bottom: 8px;
}

.result-link {
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.info {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.info h3 {
    margin-top: 0;
    font-family: "Playfair Display", serif;
}

.page-news {
    background: linear-gradient(120deg, #101524 0%, #202b42 40%, #1d1f2e 100%);
    color: #f7f2ea;
}

.news-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 72px;
    animation: rise 0.6s ease-out;
}

.news-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 32px;
}

.news-brand .badge {
    background: var(--gold);
    color: #1b1d26;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.news-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    margin-top: 12px;
}

.news-sub {
    color: #c6cedf;
    max-width: 420px;
}

.news-meta {
    display: grid;
    gap: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #9aa6bf;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.lead-story {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
}

.lead-story h1 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin-top: 0;
}

.btn-continue {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(204, 45, 74, 0.4);
}

.side-story {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 28px;
}

.side-story ul {
    margin: 12px 0 0;
    padding-left: 18px;
    line-height: 1.8;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
}

.feature h3 {
    margin-top: 0;
}

.error-box {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(204, 45, 74, 0.2);
    color: #fdd7df;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    padding-top: 20px;
    color: #a8b2c8;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .lead-story {
        grid-column: span 1;
    }

    .card h1 {
        font-size: 30px;
    }
}
