/* ============================================================
   Tweetel – Ukraine theme
   Colors: Ukraine Blue #005BBB, Ukraine Yellow #FFD700
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f7fa;
    color: #1a1a2e;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* ── Layout wrapper ───────────────────────────────────────── */
.page-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

@media (max-width: 480px) {
    .btn-chrome {
        font-size: 14px;
        padding: 10px 20px;
    }
    .step {
        padding: 16px;
    }
    .content-block {
        padding: 16px;
    }
    footer {
        padding: 24px 16px;
    }
}

/* ── Links ────────────────────────────────────────────────── */
a {
    color: #005BBB;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #004299;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
    color: #003d82;
    line-height: 1.3;
}
h2 {
    margin-top: 36px;
    padding-bottom: 6px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
}
h3 {
    margin-top: 0;
}
strong {
    color: #003d82;
}
code {
    background: #e8edf5;
    color: #005BBB;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}
ul {
    margin-top: 0;
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
    background: linear-gradient(135deg, #005BBB 50%, #004299 100%);
    border-bottom: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 40px;
}
.site-header-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.site-header .header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #ffffff;
}
.site-header .header-brand:hover {
    text-decoration: none;
    opacity: 0.9;
}
.site-header img.logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}
.site-header .brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.site-header .brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FFD700;
    line-height: 1;
}
.site-header .brand-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.site-header .header-cta {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .site-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
    .site-header .header-brand {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* ── Step cards (index page) ──────────────────────────────── */
.step {
    background: #ffffff;
    border: 1px solid #d0dce8;
    border-left: 4px solid #005BBB;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 91, 187, 0.06);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #005BBB;
    color: #FFD700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}
.highlight {
    color: #2a9d0d;
    font-weight: bold;
}

/* ── Content blocks (privacy / terms pages) ───────────────── */
.content-block {
    background: #ffffff;
    border: 1px solid #d0dce8;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 91, 187, 0.06);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    margin-top: 60px;
    padding: 32px 20px;
    border-top: 3px solid #FFD700;
    background: #003d82;
    text-align: center;
    border-radius: 0 0 12px 12px;
}
.footer-cta {
    margin-bottom: 20px;
}
.btn-chrome {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #003d82;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.1s;
}
.btn-chrome:hover {
    background: #ffe033;
    color: #003d82;
    text-decoration: none;
    transform: translateY(-1px);
}
.btn-chrome svg circle {
    fill: #003d82;
}
.btn-chrome svg path {
    stroke: #003d82;
}
.footer-links {
    margin-top: 16px;
    font-size: 13px;
}
.footer-links a {
    color: rgba(255, 215, 0, 0.7);
}
.footer-links a:hover {
    color: #FFD700;
    text-decoration: underline;
}
.footer-brand {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}
