/* =============================================
   Monopoli App – Website
   ============================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue:    #1a6fad;
    --cyan:    #0ab4d4;
    --dark:    #0d1b2a;
    --grey:    #f4f7fa;
    --text:    #2c3e50;
    --muted:   #6b7c93;
    --radius:  16px;
    --shadow:  0 8px 32px rgba(0,0,0,.10);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--blue); text-decoration: none; }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a4a7a 50%, #0ab4d4 100%);
    color: #fff;
    padding: 100px 5% 80px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 48px; flex-wrap: wrap;
}
.hero-text { max-width: 540px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 16px; border-radius: 99px;
    font-size: .85rem; font-weight: 600;
    margin-bottom: 20px; letter-spacing: .5px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero p  { font-size: 1.1rem; opacity: .85; margin-bottom: 36px; max-width: 460px; }
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); text-decoration: none; }
.btn-appstore { background: #fff; color: var(--dark); }
.btn-appstore img { width: 22px; }
.hero-img img {
    width: 260px; border-radius: 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
}

/* ── FEATURES ── */
.section { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.section-title p  { color: var(--muted); font-size: 1.05rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--grey);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: var(--muted); font-size: .95rem; }

/* ── SCREENSHOTS ── */
.screenshots { background: var(--grey); }
.screenshots-scroll {
    display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 20px;
    scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-placeholder {
    flex: 0 0 220px; height: 440px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 28px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #fff; font-size: .9rem; gap: 12px;
    box-shadow: 0 16px 40px rgba(26,111,173,.25);
}
.screenshot-placeholder span { font-size: 2rem; }

/* ── INFO STRIP ── */
.info-strip {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; padding: 60px 5%;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
    text-align: center;
}
.info-item strong { display: block; font-size: 2rem; font-weight: 800; }
.info-item span   { font-size: .95rem; opacity: .85; }

/* ── FOOTER ── */
footer {
    background: var(--dark); color: rgba(255,255,255,.6);
    padding: 40px 5%; display: flex;
    align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; font-size: .9rem;
}
footer a { color: rgba(255,255,255,.7); }
footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 24px; }

/* ── INNER PAGES (privacy / support) ── */
.page-hero {
    background: linear-gradient(135deg, #0d1b2a, #1a4a7a);
    color: #fff; padding: 70px 5% 60px; text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.page-hero p  { opacity: .75; font-size: 1rem; }

.page-content { max-width: 780px; margin: 0 auto; padding: 60px 5%; }
.page-content h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; color: var(--blue); }
.page-content p, .page-content li { color: var(--muted); margin-bottom: 10px; font-size: .97rem; }
.page-content ul { padding-left: 20px; }
.page-content .last-updated {
    background: var(--grey); border-radius: 10px;
    padding: 14px 18px; font-size: .88rem; color: var(--muted);
    margin-bottom: 32px;
}

/* ── SUPPORT CONTACT CARD ── */
.contact-card {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; border-radius: var(--radius);
    padding: 36px; margin-top: 40px; text-align: center;
}
.contact-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p  { opacity: .85; margin-bottom: 20px; }
.contact-card a.btn { background: #fff; color: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .hero { padding: 60px 5% 50px; text-align: center; justify-content: center; }
    .hero-img { display: none; }
    nav { padding: 0 4%; }
    .nav-links { gap: 16px; }
    footer { text-align: center; justify-content: center; }
}
