/* ZappyRewards marketing site — v2 brand direction
   Warm cream palette, ink text, Fraunces display + DM Sans body.
   Tokens lifted from the Brand & UI direction deck. */

:root {
    --teal:        #17CAC6;
    --teal-dark:   #0EA8A3;
    --teal-light:  #E6FAF9;
    --cream:       #F5F0E8;
    --cream-warm:  #EDE6D9;
    --ink:         #1A1A18;
    --ink-soft:    #2C2C2A;
    --mid:         #6E6E6A;
    --mid-light:   #A7A7A2;
    --line:        #DDD6CB;

    --radius:    18px;
    --radius-sm: 10px;
    --radius-lg: 28px;
    --maxw:      1180px;

    --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
    --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Opt out of Android Force Dark and Android system font scaling — both of
       which Telegram's WebView respects. Without these:
       - Force Dark inverts the hero/contact black backgrounds to light grey
       - "Larger text" Accessibility setting multiplies every rem-sized icon
         so emojis end up 40px+ instead of ~25px. */
    color-scheme: light;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 375;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin: 0 0 0.5em;
    /* Let Fraunces pick optical size from rendered size — without this, every
       heading uses the 144pt display cut which has very thin strokes at small
       sizes (and makes the card titles read as light/anaemic). */
    font-optical-sizing: auto;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 375; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 375; }
h3 { font-size: 1.35rem; font-weight: 375; }
h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid); font-family: var(--font-sans); font-weight: 600; }

em, i, .italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 375;
}

p { margin: 0 0 1em; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--teal); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── Buttons ─────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
    color: var(--ink);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

.btn-primary {
    background: var(--teal);
    color: var(--ink);
}
.btn-primary:hover { background: var(--teal-dark); color: var(--ink); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* On dark surfaces */
.on-dark .btn-ghost,
.hero .btn-ghost,
.section-dark .btn-ghost {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.4);
}
.on-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.section-dark .btn-ghost:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

/* ─── Nav ─────────────────────────────────────────── */

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    /* Solid fallback — Telegram in-app WebView and older Androids do not
       support backdrop-filter, so without this the nav reads as translucent
       and content scrolls visibly underneath. */
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .nav {
        background: rgba(245, 240, 232, 0.85);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
    }
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-img {
    height: 34px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 26px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: 24px;
}
.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    padding: 6px 0;
}
.nav-links a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--teal);
    text-decoration-thickness: 2px;
}
.nav-cta { font-size: 0.88rem; padding: 9px 18px; }

@media (max-width: 880px) {
    .nav-links { display: none; }
}

/* ─── Hero ────────────────────────────────────────── */

.hero {
    background: #1A1A18;
    background: var(--ink);
    color: #F5F0E8;
    color: var(--cream);
    padding: 80px 0 96px;
    overflow: hidden;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23, 202, 198, 0.12);
    border: 1px solid rgba(23, 202, 198, 0.35);
    color: var(--teal);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    font-family: var(--font-sans);
}
.hero-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(23, 202, 198, 0.2);
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 24px;
}
.hero h1 em {
    color: var(--teal);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--mid-light);
    margin: 0 0 36px;
    max-width: 480px;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trusted-by {
    font-size: 0.82rem;
    color: var(--mid);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: 500;
}
.trusted-by-label { letter-spacing: 0.04em; }
.trust-chip {
    color: var(--cream);
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ─── Wallet pass mockup ──────────────────────────────
   Mirrors a real Apple Wallet storeCard pass — see the
   in-app screenshot in the brand deck. White card, coffee
   icon top-left + program name, primary field = points
   (value above, label below, left-aligned), secondary =
   MEMBER, then a dense QR with a truncated identifier
   caption below. */

.pass-wrap {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}
.pass-card {
    background: #ffffff;
    color: #000000;
    border-radius: 16px;
    padding: 22px 26px 26px;
    width: 100%;
    max-width: 340px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 8px 18px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.pass-card:hover { transform: rotate(0deg) translateY(-4px); }

.pass-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.pass-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pass-icon svg { width: 36px; height: 36px; display: block; }
.pass-program {
    font-weight: 700;
    font-size: 0.95rem;
    color: #000000;
    letter-spacing: -0.01em;
}

.pass-primary {
    margin-bottom: 30px;
}
.pass-primary .pass-value {
    font-size: 2.6rem;
    font-weight: 300;     /* Apple Wallet renders the points number light */
    color: #000000;
    line-height: 1;
    letter-spacing: -0.015em;
    margin: 0 0 4px;
}
.pass-primary .pass-label {
    font-size: 0.78rem;
    font-weight: 375;
    color: #555;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.pass-secondary {
    margin-bottom: 28px;
}
.pass-secondary .pass-label {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 4px;
}
.pass-secondary .pass-value {
    font-size: 1.05rem;
    font-weight: 375;
    color: #000;
    margin: 0;
    letter-spacing: -0.005em;
}

.pass-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}
.pass-qr svg {
    width: 170px;
    height: 170px;
    color: #000000;
    background: #ffffff;
    display: block;
}
.pass-qr-caption {
    font-size: 0.6rem;
    color: #999;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    margin: 0;
    letter-spacing: 0.03em;
}

/* ─── Sections ────────────────────────────────────── */

.section { padding: 110px 0; }
.section-tint { background: var(--cream-warm); }
/* Explicit hex fallback before the var() — if any rendering engine fails to
   resolve the CSS variable, the dark section still renders dark. */
.section-dark {
    background: #1A1A18;
    background: var(--ink);
    color: #F5F0E8;
    color: var(--cream);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--mid); font-size: 1.1rem; margin: 0; }

.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head p { color: var(--mid-light); }

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--teal-dark);
    font-weight: 600;
    margin: 0 0 14px;
    font-family: var(--font-sans);
}
.section-dark .kicker { color: var(--teal); }

/* ─── How it works ────────────────────────────────── */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 28px; } }

.step {
    padding: 0 4px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 375;
    color: var(--teal-dark);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    font-style: italic;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--ink);
}
.step p {
    color: var(--mid);
    margin: 0;
    line-height: 1.6;
}

/* ─── Sectors (who it's for) ──────────────────────── */

.sectors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 700px) { .sectors { grid-template-columns: 1fr; } }

.sector {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 30px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sector:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 14px 30px rgba(26, 26, 24, 0.08);
}
.sector-icon {
    /* Pixel-locked so Android system font scaling cannot blow these emojis
       up to 40+px in Telegram's WebView. */
    font-size: 26px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji;
}
.sector h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--ink);
}
.sector p {
    color: var(--mid);
    margin: 0;
}

/* ─── Modes (off-chain vs on-chain) ──────────────── */

.modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 820px) { .modes { grid-template-columns: 1fr; } }

.mode {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.mode:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 14px 30px rgba(26, 26, 24, 0.08);
}
.mode-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--font-sans);
}
.mode-tag-points { background: var(--cream-warm); color: var(--mid); border: 1px solid var(--line); }
.mode-tag-chain  { background: var(--ink); color: var(--teal); }

.mode h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 375;
    margin-bottom: 10px;
    color: var(--ink);
}
.mode p {
    color: var(--mid);
    margin: 0;
    line-height: 1.6;
}

/* ─── Blockchain reasons (numbered cards) ─────────── */

.bc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 820px) { .bc-grid { grid-template-columns: 1fr; } }

.bc-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.bc-card:hover {
    transform: translateY(-3px);
    border-color: var(--teal);
    box-shadow: 0 14px 30px rgba(26, 26, 24, 0.08);
}
.bc-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2.6rem;
    font-weight: 375;
    color: var(--teal-dark);
    line-height: 1;
    margin-bottom: 14px;
    display: block;
}
.bc-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 375;
    margin-bottom: 10px;
    color: var(--ink);
}
.bc-card p { color: var(--mid); margin: 0; line-height: 1.65; }

/* ─── Algorand section (dark) ────────────────────── */

.algorand-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) { .algorand-grid { grid-template-columns: 1fr; gap: 40px; } }

.algorand-grid h2 { color: var(--cream); margin-bottom: 18px; }
.algorand-lead {
    color: var(--mid-light);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 18px;
}
.algorand-lead strong { color: var(--cream); font-weight: 500; }

.algorand-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.algorand-stats li {
    background: rgba(23, 202, 198, 0.07);
    border: 1px solid rgba(23, 202, 198, 0.22);
    border-radius: var(--radius-sm);
    padding: 20px 18px;
}
.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 375;
    color: var(--teal);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--mid-light);
    line-height: 1.45;
}

/* ─── Pricing ─────────────────────────────────────── */

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.tier {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}
.tier-featured {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(26, 26, 24, 0.18);
}
@media (max-width: 900px) { .tier-featured { transform: none; } }

.tier-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 375;
    margin-bottom: 6px;
}
.tier-tagline {
    color: var(--mid);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.tier-featured .tier-tagline { color: var(--mid-light); }

.tier-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 375;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.tier-price-unit {
    font-size: 0.9rem;
    color: var(--mid);
    margin-bottom: 28px;
    font-family: var(--font-sans);
}
.tier-featured .tier-price-unit { color: var(--mid-light); }

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.tier-features li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.tier-features li::before {
    content: '✓';
    color: var(--teal-dark);
    font-weight: 700;
    flex-shrink: 0;
}
.tier-featured .tier-features li { color: var(--cream); }
.tier-featured .tier-features li::before { color: var(--teal); }

.tier .btn { width: 100%; }

/* ─── FAQ ─────────────────────────────────────────── */

.faq {
    max-width: 760px;
    margin: 0 auto;
}
.faq details {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq details[open] { border-color: var(--teal); background: var(--cream); }
.faq summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 500;
    color: var(--ink);
    list-style: none;
    position: relative;
    padding-right: 56px;
    font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 375;
    color: var(--mid);
    line-height: 1;
    font-family: var(--font-display);
}
.faq details[open] summary::after { content: '–'; color: var(--teal-dark); }
.faq summary:hover { background: var(--cream-warm); }
.faq p {
    padding: 0 24px 22px;
    color: var(--mid);
    margin: 0;
    line-height: 1.65;
}
.faq-foot { text-align: center; margin-top: 40px; color: var(--mid); font-size: 0.95rem; }
.faq-foot a { font-weight: 500; }

/* ─── Team ────────────────────────────────────────── */

.team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 699px;
    gap: 56px;
    align-items: center;
}
@media (max-width: 1100px) {
    .team-grid { grid-template-columns: 1fr; gap: 36px; }
    .team-card { max-width: 699px; margin: 0 auto; }
}

.team-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.team-photo {
    display: block;
    width: 100%;
    height: auto;
    background: #efece6;
}
.team-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
}
.gramo-logo { width: 32px; height: 32px; }
.team-caption {
    margin: 0;
    color: var(--mid);
    font-size: 0.92rem;
}

/* ─── Contact ─────────────────────────────────────── */

.contact-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.contact-inner h2 { color: var(--cream); }
.contact-inner p { color: var(--mid-light); font-size: 1.1rem; margin-bottom: 32px; }
.contact-email {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--teal);
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid rgba(23, 202, 198, 0.4);
    padding-bottom: 4px;
}
.contact-email:hover { color: var(--cream); border-color: var(--cream); text-decoration: none; }

/* ─── Footer ──────────────────────────────────────── */

.footer {
    background: var(--cream-warm);
    color: var(--mid);
    padding: 60px 0 32px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
}
@media (max-width: 820px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}
.footer-brand p {
    color: var(--mid);
    margin: 0;
    font-size: 0.92rem;
    max-width: 280px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-cols h4 {
    color: var(--ink);
    font-size: 0.72rem;
    margin: 0 0 14px;
}
.footer-cols a {
    display: block;
    color: var(--mid);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-decoration: none;
}
.footer-cols a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--teal); }
.footer-copy {
    grid-column: 1 / -1;
    margin: 48px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--mid-light);
}

/* ─── Legal pages (privacy / terms) ───────────────── */

.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 72px 28px 96px;
}
.legal h1 {
    font-size: 2.6rem;
    margin-bottom: 8px;
}
.legal .legal-date {
    color: var(--mid);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.legal h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    font-family: var(--font-display);
    font-weight: 375;
}
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 20px; }
