:root {
    --ig-orange: #f09433;
    --ig-red: #e6683c;
    --ig-magenta: #dc2743;
    --ig-purple: #cc2366;
    --ig-blue: #bc1888;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --text-main: #262626;
    --text-muted: #8e8e8e;
    --border-color: #dbdbdb;
    --btn-blue: #0095f6;
    --btn-blue-hover: #1877f2;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-light); color: var(--text-main); line-height: 1.5; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* Login Page Style Nav */
.nav { background: var(--bg-white); border-bottom: 1px solid var(--border-color); height: 60px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; position: sticky; top: 0; z-index: 100; }
.nav-brand { font-size: 22px; font-weight: 700; font-family: 'Comic Sans MS', cursive, sans-serif; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-main); }
.nav-btn { color: var(--btn-blue) !important; font-weight: 600; }

/* Main Wrapper for Login Style */
.main-wrapper { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 40px 20px; }

/* Login Box Style Hero */
.login-box { background: var(--bg-white); border: 1px solid var(--border-color); padding: 40px; width: 100%; max-width: 450px; text-align: center; margin-bottom: 30px; border-radius: 1px; }
.brand-logo { font-size: 40px; font-weight: 700; font-family: 'Comic Sans MS', cursive, sans-serif; margin-bottom: 20px; }
.hero h1 { font-size: 18px; font-weight: 600; color: var(--text-muted); margin-bottom: 30px; line-height: 1.4; }
.btn-group { display: flex; flex-direction: column; gap: 15px; }
.btn { padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; display: block; width: 100%; }
.btn-primary { background: var(--btn-blue); color: white; }
.btn-primary:hover { background: var(--btn-blue-hover); }
.btn-secondary { background: transparent; color: var(--btn-blue); border: 1px solid var(--btn-blue); }

/* Divider */
.divider { display: flex; align-items: center; margin: 25px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.divider span { padding: 0 15px; color: var(--text-muted); font-size: 13px; font-weight: 600; }

/* Secondary Box */
.signup-box { background: var(--bg-white); border: 1px solid var(--border-color); padding: 20px; width: 100%; max-width: 450px; text-align: center; margin-bottom: 30px; font-size: 14px; }
.signup-box a { color: var(--btn-blue); font-weight: 600; }

/* Stats (App Store style) */
.get-app { text-align: center; margin-bottom: 30px; }
.get-app p { font-size: 14px; margin-bottom: 15px; }
.stats-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.stat-tag { background: #000; color: white; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: bold; }
.stat-num { color: var(--text-muted); display: block; font-size: 10px; font-weight: normal; }

/* Container for content */
.container { max-width: 900px; width: 100%; padding: 40px 20px; }

/* Clean SEO Text Box */
.seo-box { text-align: center; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.seo-box p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 15px; }

/* Simple Feature Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 60px; }
.card { background: var(--bg-white); border: 1px solid var(--border-color); padding: 25px; text-align: center; }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--text-main); }
.card p { font-size: 13px; color: var(--text-muted); }

/* Images */
.img-display { width: 100%; max-width: 600px; display: block; margin: 0 auto 60px; border: 1px solid var(--border-color); }

/* FAQ & Steps List */
.list-wrap { max-width: 600px; margin: 0 auto 60px; background: var(--bg-white); border: 1px solid var(--border-color); padding: 20px; }
.list-item { padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.list-item:last-child { border-bottom: none; }
.list-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.list-item p { font-size: 13px; color: var(--text-muted); }

/* Footer */
.footer { padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 15px; margin-top: auto; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 12px; color: var(--text-muted); }
.footer-links a:hover { text-decoration: underline; }
.footer p { font-size: 12px; color: var(--text-muted); }