@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Çayçi — Karadeniz yeşili + neon astroloji */
    --red: #c0392b;
    --red-deep: #922b21;
    --red-soft: #fdecea;
    --red-muted: rgba(192, 57, 43, 0.12);
    --green: #1a4d2e;
    --green-mid: #2d6a4f;
    --green-light: #40916c;
    --green-soft: #d8f3dc;
    --gold: #c9a227;
    --gold-dark: #a67c00;
    --gold-muted: rgba(201, 162, 39, 0.15);
    --neon: #9b5de5;
    --neon-cyan: #00f5d4;
    --wood: #5c4033;
    --white: #ffffff;
    --cream: #f0f7f4;
    --surface: #ffffff;
    --surface-alt: #e8f5e9;
    --surface-warm: #f5faf7;
    --text: #1b4332;
    --text-soft: #2d6a4f;
    --text-muted: #52796f;
    --border: rgba(45, 106, 79, 0.2);
    --border-light: #d8e2dc;
    --shadow: 0 8px 32px rgba(26, 77, 46, 0.08);
    --shadow-md: 0 16px 48px rgba(26, 77, 46, 0.12);
    --shadow-red: 0 8px 28px rgba(192, 57, 43, 0.2);
    --shadow-gold: 0 8px 28px rgba(201, 162, 39, 0.22);
    --glass: rgba(255, 255, 255, 0.92);
    --radius: 24px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --nav-height: 88px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --content-gutter: 20px;
    --section-gap: 20px;
    --block-gap: 12px;
    --stack-gap: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-tight: 1.25;
    --lh-body: 1.5;
    --lh-relaxed: 1.6;
    --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    background: #dfe6e1;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-weight: var(--fw-regular);
    font-size: 15px;
    line-height: var(--lh-body);
    letter-spacing: -0.01em;
    background: #dfe6e1;
    color: var(--text);
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Telefon çerçevesi — tüm uygulama bu genişlikte */
.app-device {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--cream);
    isolation: isolate;
}

@media (min-width: 480px) {
    body {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 16px 0;
    }

    .app-device {
        min-height: min(calc(100dvh - 32px), 896px);
        height: min(calc(100dvh - 32px), 896px);
        border-radius: 36px;
        border: 1px solid rgba(45, 106, 79, 0.14);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.45) inset,
            0 28px 64px rgba(26, 77, 46, 0.14),
            0 8px 20px rgba(26, 77, 46, 0.08);
    }
}

@media (max-width: 479px) {
    html,
    body {
        background: var(--cream);
    }
}

h1, h2, h3, h4, h5, h6,
.btn,
.nav-item,
.stat-box__value {
    font-family: var(--font);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hafif arka plan — cihaz içinde */
.app-device > .bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 45%, var(--surface-warm) 100%);
}

.bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 45%, var(--surface-warm) 100%);
}

.bg-effects__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: floatOrb 14s ease-in-out infinite;
}

.bg-effects__orb--1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
    top: -60px;
    right: -40px;
}

.bg-effects__orb--2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
    bottom: 25%;
    left: -80px;
    animation-delay: -5s;
}

.bg-effects__orb--3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation-delay: -9s;
}

.bg-effects__stars { display: none; }

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, -10px); }
}

.app-shell {
    width: 100%;
    margin: 0 auto;
    min-height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.app-device > .app-shell {
    min-height: 100%;
    height: 100%;
}

/* Header */
.app-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: var(--stack-gap) var(--content-gutter);
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.app-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-header__home-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.app-header__greeting {
    font-size: 0.75rem;
    font-weight: var(--fw-medium);
    color: var(--text-muted);
}

.app-header__name {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    letter-spacing: -0.03em;
    line-height: var(--lh-tight);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-header__avatar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: linear-gradient(135deg, var(--green-soft), var(--gold-muted));
    box-shadow: var(--shadow);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    position: relative;
    font-family: var(--font);
}

.app-header__avatar-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.3;
    z-index: 0;
}

.app-header__avatar-initials {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--green);
}

.app-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-logo-wrap {
    position: relative;
    width: 46px;
    height: 46px;
}

.app-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.35;
}

.app-logo {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.app-title {
    font-family: var(--font);
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    margin: 0;
    line-height: var(--lh-tight);
    letter-spacing: -0.02em;
    color: var(--green);
}

.app-subtitle {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin: 2px 0 0;
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.app-header__badge {
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: var(--radius-pill);
    background: var(--red-soft);
    border: 1px solid rgba(185, 28, 28, 0.15);
    color: var(--red);
}

.app-main {
    padding: var(--stack-gap) var(--content-gutter) calc(var(--nav-height) + var(--safe-bottom) + var(--stack-gap));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.page {
    display: none;
    animation: pageIn 400ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}
.page.active { display: block; }

.page > *:last-child { margin-bottom: 0; }

@keyframes pageIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header { margin-bottom: var(--section-gap); }

.page-header__label {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 4px;
}

.page-header__title {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin: 0;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: var(--lh-tight);
}

/* Hero */
.hero-card {
    position: relative;
    border-radius: var(--radius);
    padding: var(--section-gap) var(--stack-gap);
    margin-bottom: var(--section-gap);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-card__glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--gold-muted) 0%, transparent 70%);
    pointer-events: none;
}

.hero-card__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227'%3E%3Cpath d='M20 0l2.5 7.5L30 10l-7.5 2.5L20 20l-2.5-7.5L10 10l7.5-2.5z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-card__content { position: relative; }

.hero-card__greeting {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 8px;
}

.hero-card h2 {
    font-family: var(--font);
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    margin: 0 0 10px;
    line-height: var(--lh-tight);
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-card p {
    margin: 0 0 22px;
    color: var(--text-soft);
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
}

.hero-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Günlük söz */
.daily-quote {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin-bottom: 22px;
    box-shadow: var(--shadow);
    position: relative;
}

.daily-quote::before {
    content: '"';
    font-family: var(--font);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 6px;
    left: 12px;
    line-height: 1;
}

.daily-quote__label {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 8px;
}

.daily-quote__text {
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: var(--fw-medium);
    line-height: var(--lh-relaxed);
    margin: 0;
    color: var(--text-soft);
    padding-left: 8px;
}

/* Özellik kartları */
.feature-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--red-soft);
    border: 1px solid rgba(185, 28, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
}

.feature-card__icon svg { width: 22px; height: 22px; }

.feature-card h3 {
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: var(--lh-body);
    font-weight: var(--fw-regular);
}

/* İstatistikler */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--block-gap);
    margin-bottom: var(--section-gap);
}

.stat-box {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-box__value {
    font-family: var(--font);
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: transform 300ms ease;
}

.stat-box__label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: var(--fw-medium);
}

/* Sembol şeridi */
.symbol-strip { margin-bottom: 8px; }

.symbol-strip__label {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.symbol-strip__scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.symbol-strip__scroll::-webkit-scrollbar { display: none; }

.symbol-chip {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    min-width: 64px;
    box-shadow: var(--shadow);
}

.symbol-chip__emoji { font-size: 1.4rem; }

.symbol-chip__name {
    font-size: 0.625rem;
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.btn:active:not(:disabled) { transform: scale(0.97); }

.btn-gold,
.btn-primary {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.25);
}

.btn-gold:hover,
.btn-primary:hover {
    box-shadow: 0 12px 36px rgba(185, 28, 28, 0.28);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text-soft);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.btn-ghost:hover { border-color: var(--gold); }

.btn-outline {
    background: var(--surface);
    color: var(--red);
    border: 1.5px solid rgba(185, 28, 28, 0.25);
    box-shadow: var(--shadow);
}

.btn-outline:hover {
    background: var(--red-soft);
    border-color: var(--red);
}

.btn-block { width: 100%; }

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.btn svg { width: 18px; height: 18px; }

/* Adımlar */
.steps-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 6px 0;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
    color: var(--text-soft);
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.steps-list li:last-child { border-bottom: none; }

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-muted);
    border: 1px solid var(--border);
    color: var(--gold-dark);
    font-size: 0.8125rem;
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font);
}

/* Upload */
.upload-zone {
    background: var(--surface);
    border: 2px dashed rgba(201, 162, 39, 0.45);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    margin-bottom: 16px;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--red);
    background: var(--red-soft);
}

.upload-zone__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    background: var(--surface-alt);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    position: relative;
}

.upload-zone__icon svg { width: 32px; height: 32px; }

.upload-zone__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: uploadPulse 2.5s ease-out infinite;
}

@keyframes uploadPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.25); opacity: 0; }
}

.upload-zone h3 {
    font-family: var(--font);
    margin: 0 0 8px;
    font-size: 1.0625rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
}

.upload-zone p {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: var(--fw-regular);
    color: var(--text-muted);
}

.upload-zone__hint {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.68rem;
    color: var(--gold-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.preview-box {
    display: none;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

.preview-box.visible { display: block; }

.preview-box img {
    width: 100%;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

.preview-box__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,25,23,0.35) 0%, transparent 45%);
    pointer-events: none;
}

.preview-box__label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.preview-box__remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Fal sonucu */
.result-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    animation: resultReveal 600ms ease;
}

@keyframes resultReveal {
    from { opacity: 0; transform: scale(0.97) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.result-header {
    background: linear-gradient(160deg, var(--red-soft) 0%, var(--surface) 60%, var(--surface-alt) 100%);
    padding: 32px 24px 28px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.result-header__ring {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.result-symbol { font-size: 2.8rem; line-height: 1; }

.result-header h2 {
    font-family: var(--font);
    margin: 0 0 8px;
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.03em;
    line-height: var(--lh-tight);
    color: var(--text);
}

.result-header__badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    padding: 4px 12px;
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    background: var(--white);
}

.result-header p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
    font-family: var(--font);
}

.fortune-tabs {
    display: flex;
    gap: 6px;
    padding: 14px 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--surface-alt);
}

.fortune-tabs::-webkit-scrollbar { display: none; }

.fortune-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: background var(--transition), color var(--transition);
}

.fortune-tab.active {
    background: var(--white);
    color: var(--red);
    border-color: var(--border-light);
    box-shadow: var(--shadow);
}

.fortune-content {
    padding: 22px;
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    min-height: 140px;
    color: var(--text-soft);
    font-weight: var(--fw-regular);
    background: var(--white);
    animation: tabFade 300ms ease;
}

@keyframes tabFade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-actions { display: grid; gap: 10px; }

/* Geçmiş */
.history-list { display: grid; gap: 12px; }

.history-item {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition);
    align-items: center;
    box-shadow: var(--shadow);
    width: 100%;
    font-family: var(--font);
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
}

.history-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--border);
}

.history-item__thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    display: block;
}

.history-item__info { flex: 1; min-width: 0; }

.history-item__info h4 {
    font-family: var(--font);
    margin: 0 0 4px;
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
}

.history-item__info time {
    font-size: 0.75rem;
    font-weight: var(--fw-regular);
    color: var(--text-muted);
}

.history-item__symbol { font-size: 1.6rem; }

.history-item__arrow { color: var(--text-muted); opacity: 0.5; }
.history-item__arrow svg { width: 16px; height: 16px; }

.empty-state {
    text-align: center;
    padding: 56px 24px;
    color: var(--text-muted);
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--red-soft);
    border: 1px solid rgba(185, 28, 28, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.empty-state__icon svg { width: 36px; height: 36px; }

.empty-state h3 {
    font-family: var(--font);
    color: var(--text);
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
}

.empty-state p {
    margin: 0;
    font-size: 0.875rem;
    line-height: var(--lh-body);
    font-weight: var(--fw-regular);
}

/* Profil */
.profile-hero {
    text-align: center;
    padding: var(--section-gap) var(--stack-gap);
    margin-bottom: var(--section-gap);
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
    border-radius: var(--radius-pill);
}

.profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--red-soft), var(--gold-muted));
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font);
    font-weight: 700;
    color: var(--red);
}

.profile-hero h2 {
    font-family: var(--font);
    margin: 0 0 6px;
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.03em;
}

.profile-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
}

.profile-tier {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--gold-muted);
    border: 1px solid var(--border);
    color: var(--gold-dark);
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: var(--stack-gap);
    margin-bottom: var(--section-gap);
    box-shadow: var(--shadow);
}

.form-card__title {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: var(--fw-regular);
    color: var(--text);
    background: var(--surface-alt);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-muted);
    background: var(--white);
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--surface-alt);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-muted);
    background: var(--white);
}

.form-hint {
    font-weight: var(--fw-regular);
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
}

/* ─── 4'lü menü + ortada Fal Bak ─── */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 var(--content-gutter) calc(12px + var(--safe-bottom));
    z-index: 100;
}

@media (min-width: 480px) {
    .bottom-nav { bottom: 10px; }
}

.bottom-nav__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 10px 8px 10px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.625rem;
    font-weight: var(--fw-medium);
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: color var(--transition);
    padding: 6px 4px;
    border-radius: 16px;
    min-height: 52px;
}

.nav-item svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.nav-item.active svg {
    transform: scale(1.06);
}

/* Ortadaki Fal Bak */
.nav-item--fab {
    position: relative;
    padding: 0;
    min-height: auto;
}

.nav-item__fab {
    width: 56px;
    height: 56px;
    margin-top: -24px;
    margin-bottom: 2px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: visible;
    position: relative;
    padding: 0;
}

.nav-item__fab-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.nav-item__fab-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    background: var(--white);
}

.nav-item--fab.active .nav-item__fab,
.nav-item--fab:hover .nav-item__fab {
    transform: scale(1.06);
    box-shadow: var(--shadow-gold);
}

.nav-item--fab .nav-item__label {
    color: var(--green);
    font-weight: var(--fw-bold);
    margin-top: 0;
}

.nav-item__label { line-height: 1.2; }

.nav-item:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* Loading */
.loading-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
}

.loading-overlay.visible { display: flex; }

.loading-ritual { text-align: center; max-width: 280px; }

.loading-ritual__cup {
    width: 84px;
    height: 84px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
    animation: cupSpin 2s ease-in-out infinite;
}

.loading-ritual__cup img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes cupSpin {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.loading-ritual__title {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--red-deep);
}

.loading-ritual__step {
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--text-muted);
    margin: 0 0 24px;
    min-height: 1.4em;
}

.loading-ritual__bar {
    width: 200px;
    height: 4px;
    background: var(--surface-alt);
    border-radius: var(--radius-pill);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.loading-ritual__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: var(--radius-pill);
    transition: width 400ms ease;
}

/* Toast */
.toast {
    position: absolute;
    bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms, transform 300ms;
    z-index: 150;
    max-width: calc(100% - 48px);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    color: var(--text-soft);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    cursor: pointer;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
}

.back-btn svg { width: 16px; height: 16px; }

.hidden { display: none !important; }

/* Burçlar */
.burclar-intro {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 var(--section-gap);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
}

.burclar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--block-gap);
}

.burclar-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: var(--stack-gap) var(--block-gap);
    text-align: center;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    box-shadow: var(--shadow);
}

.burclar-card:hover,
.burclar-card.active {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.burclar-card__symbol {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.burclar-card__name {
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
    margin: 0 0 2px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.burclar-card__date {
    font-size: 0.58rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

.burclar-result__card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: resultReveal 600ms ease;
}

.burclar-result__header {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(160deg, var(--red-soft) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border-light);
}

.burclar-result__symbol {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.burclar-result__header h3 {
    font-family: var(--font);
    font-size: 1.375rem;
    margin: 0 0 4px;
    font-weight: var(--fw-bold);
    letter-spacing: -0.03em;
}

.burclar-result__header p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.burclar-result__body {
    padding: 22px;
}

.burclar-result__label {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 12px;
}

.burclar-result__body p:last-child {
    margin: 0;
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    color: var(--text-soft);
    font-weight: var(--fw-regular);
}

/* ─── Çayçi Karadeniz bileşenleri ─── */
.bg-effects__neon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--neon);
    opacity: 0.35;
    text-shadow: 0 0 20px var(--neon-cyan);
    animation: floatOrb 10s ease-in-out infinite;
}
.bg-effects__neon--1 { top: 15%; left: 8%; }
.bg-effects__neon--2 { bottom: 25%; right: 10%; animation-delay: -5s; }

.app-header__vip {
    font-family: var(--font);
    font-size: 0.625rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--gold-muted), var(--green-soft));
    color: var(--gold-dark);
    cursor: pointer;
}

.hero-card--karadeniz {
    background: linear-gradient(145deg, var(--green) 0%, var(--green-mid) 100%);
    border: none;
    color: var(--white);
    padding: 24px 22px;
}
.hero-card--karadeniz .hero-card__persona {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 10px;
}
.hero-card--karadeniz .hero-card__quote {
    font-size: 1.0625rem;
    font-weight: var(--fw-bold);
    line-height: var(--lh-relaxed);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.hero-card--karadeniz .hero-card__limit {
    font-size: 0.8125rem;
    font-weight: var(--fw-medium);
    margin: 0;
    opacity: 0.9;
}

/* Ana sayfa */
/* Ana sayfa — mobil dashboard */
.home-vip-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gold-muted), var(--green-soft));
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
    box-shadow: var(--shadow-gold);
    appearance: none;
    -webkit-appearance: none;
}

.home-vip-banner__icon { font-size: 1.5rem; flex-shrink: 0; }

.home-vip-banner__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-vip-banner__text strong {
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
    color: var(--green);
}

.home-vip-banner__text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.home-vip-banner__arrow {
    color: var(--gold-dark);
    font-weight: var(--fw-bold);
}

.home-asiye-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: linear-gradient(145deg, var(--green) 0%, var(--green-mid) 100%);
    border-radius: var(--radius);
    padding: 18px 16px;
    margin-bottom: 14px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.home-asiye-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.home-asiye-card__label {
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 6px;
}

.home-asiye-card__quote {
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    line-height: var(--lh-relaxed);
    margin: 0;
    letter-spacing: -0.01em;
}

.home-fal-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    font-family: var(--font);
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.home-fal-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.home-fal-cta__logo-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.home-fal-cta__logo-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.35;
}

.home-fal-cta__logo-wrap img {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
}

.home-fal-cta__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-fal-cta__text strong {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--green);
}

.home-fal-cta__text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.home-fal-cta__arrow {
    color: var(--gold-dark);
    font-weight: var(--fw-bold);
    font-size: 1.125rem;
}

.home-section {
    margin-bottom: var(--section-gap);
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--block-gap);
    gap: var(--block-gap);
}

.home-section-head .home-section-title {
    margin: 0;
}

.home-section-link {
    border: none;
    background: none;
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    color: var(--green-mid);
    cursor: pointer;
    padding: 4px 0;
}

.home-quick-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-quick-scroll::-webkit-scrollbar { display: none; }

.home-quick-btn {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 76px;
    padding: 14px 12px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    color: var(--text-soft);
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.home-quick-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.home-quick-btn__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.home-recent-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-recent-scroll::-webkit-scrollbar { display: none; }

.home-recent-card {
    flex: 0 0 140px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    text-align: left;
    font-family: var(--font);
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.home-recent-card:hover { transform: translateY(-2px); }

.home-recent-card__thumb {
    width: 100%;
    height: 90px;
    object-fit: cover;
    background: var(--surface-alt);
    display: block;
}

.home-recent-card__emoji {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--green-soft);
}

.home-recent-card__body {
    padding: 10px 12px;
}

.home-recent-card__name {
    display: block;
    font-size: 0.8125rem;
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-recent-card__date {
    font-size: 0.625rem;
    color: var(--text-muted);
}

.home-empty {
    text-align: center;
    padding: 28px 20px;
    background: var(--surface);
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.home-empty__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.home-empty p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 14px;
    line-height: var(--lh-body);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* Profil sayfası */
.profile-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--block-gap);
    margin-bottom: var(--section-gap);
}

.profile-stat-box {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.profile-stat-box__value {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 4px;
}

.profile-stat-box__label {
    font-size: 0.5625rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.profile-name-card { margin-bottom: var(--section-gap); }

.profile-menu {
    display: grid;
    gap: var(--block-gap);
    margin-bottom: var(--section-gap);
}

.profile-menu__item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow);
    font-family: var(--font);
    text-align: left;
    transition: transform var(--transition), border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.profile-menu__item:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
}

.profile-menu__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.profile-menu__icon--vip { background: var(--gold-muted); }

.profile-menu__item--logout {
    border-color: rgba(192, 57, 43, 0.2);
}

.profile-menu__item--logout:hover {
    border-color: var(--red);
}

.profile-menu__icon--logout {
    background: var(--red-soft);
}

.profile-menu__text {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    color: var(--text);
}

.profile-menu__arrow {
    color: var(--text-muted);
    font-weight: var(--fw-bold);
}

.profile-tier--vip {
    background: linear-gradient(135deg, var(--gold-muted), var(--green-soft));
    border-color: var(--gold);
    color: var(--gold-dark);
}

.home-hero {
    background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 55%, #40916c 100%);
    border-radius: var(--radius);
    padding: 22px 20px 20px;
    margin-bottom: 16px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
}

.home-hero__logo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.home-hero__logo-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.4;
}

.home-hero__logo {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    background: var(--white);
}

.home-hero__plan {
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}

.home-hero__plan--vip {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.35), rgba(255, 255, 255, 0.12));
    border-color: var(--gold);
    color: #fff8e1;
}

.home-hero__persona {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 8px;
    position: relative;
}

.home-hero__quote {
    font-size: 1.0625rem;
    font-weight: var(--fw-bold);
    line-height: var(--lh-relaxed);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    position: relative;
}

.home-hero__cta {
    margin-bottom: 10px;
    position: relative;
}

.home-hero__limit {
    font-size: 0.8125rem;
    font-weight: var(--fw-medium);
    margin: 0;
    opacity: 0.9;
    text-align: center;
    position: relative;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.home-stat {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 0;
}

.home-stat--link {
    cursor: pointer;
    font-family: var(--font);
    background: var(--surface);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.home-stat--link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.home-stat__value {
    display: block;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 4px;
}

.home-stat__label {
    display: block;
    font-size: 0.5625rem;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.25;
}

.home-section-title {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--block-gap);
    margin-bottom: var(--section-gap);
}
.module-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font);
    appearance: none;
    -webkit-appearance: none;
}
.module-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.module-card__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}
.module-card__icon-wrap--read { background: var(--red-soft); }
.module-card__icon-wrap--burc { background: #e3f2fd; }
.module-card__icon-wrap--ritual { background: var(--green-soft); }
.module-card__icon-wrap--chat { background: var(--gold-muted); }
.module-card__icon { font-size: 1.75rem; line-height: 1; }
.module-card__title {
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    color: var(--text);
    letter-spacing: -0.02em;
}
.module-card__desc {
    font-size: 0.75rem;
    font-weight: var(--fw-regular);
    color: var(--text-muted);
}

.mercury-banner {
    background: var(--red-soft);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.8125rem;
    font-weight: var(--fw-medium);
    color: var(--red-deep);
    line-height: var(--lh-body);
    margin-bottom: 16px;
}

.sugar-picker { margin-bottom: 16px; }
.sugar-picker__label {
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    margin: 0 0 10px;
    color: var(--text-soft);
}
.sugar-picker__options { display: flex; gap: 10px; }
.sugar-option {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.sugar-option.active {
    border-color: var(--green-mid);
    background: var(--green-soft);
    font-weight: var(--fw-bold);
    color: var(--green);
}

.persona-bubble {
    background: var(--green-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    color: var(--green);
    margin-bottom: 14px;
    line-height: var(--lh-body);
}

.ritual-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--block-gap);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.ritual-detail {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.ritual-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow);
    text-align: left;
    font-family: var(--font);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.ritual-item__icon { font-size: 1.5rem; flex-shrink: 0; }

.ritual-item__title {
    flex: 1;
    min-width: 0;
    font-size: 0.9375rem;
    font-weight: var(--fw-bold);
    color: var(--text);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ritual-item__arrow { color: var(--text-muted); font-weight: var(--fw-bold); flex-shrink: 0; }

.ritual-detail__card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.ritual-detail__icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.ritual-detail__card h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    margin: 0 0 16px;
    color: var(--green);
}
.ritual-detail__card p {
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    color: var(--text-soft);
    margin: 0;
    text-align: left;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.chat-window {
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: var(--stack-gap);
    min-height: 320px;
    max-height: 420px;
    overflow-y: auto;
    margin-bottom: var(--block-gap);
    display: flex;
    flex-direction: column;
    gap: var(--block-gap);
}
.chat-msg { display: flex; gap: var(--block-gap); align-items: flex-start; }
.chat-msg--user { flex-direction: row-reverse; }
.chat-msg__avatar { font-size: 1.5rem; flex-shrink: 0; }
.chat-msg__bubble {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px 16px 16px 4px;
    padding: 12px 14px;
    font-size: 0.875rem;
    line-height: var(--lh-body);
    max-width: 85%;
    font-weight: var(--fw-regular);
}
.chat-msg--user .chat-msg__bubble {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    border-radius: 16px 16px 4px 16px;
    font-weight: var(--fw-medium);
}
.chat-input-bar {
    display: flex;
    gap: var(--block-gap);
    align-items: stretch;
}
.chat-input-bar input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 0.9375rem;
    background: var(--white);
}
.chat-input-bar input:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}
.chat-input-bar .btn { flex-shrink: 0; padding: 14px 18px; }

.premium-card {
    background: linear-gradient(160deg, var(--green-soft) 0%, var(--surface) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--section-gap) var(--stack-gap);
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.premium-card__badge {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    margin-bottom: var(--section-gap);
}
.premium-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 2;
    font-weight: var(--fw-medium);
    color: var(--text-soft);
}
.premium-card__price {
    font-size: 0.8125rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    margin: 0 0 16px;
}
.premium-card__note {
    font-size: 0.8125rem;
    margin-top: 14px;
    color: var(--green-mid);
    font-weight: var(--fw-medium);
}

.burclar-card--mini { cursor: default; }
.burclars-card--mini:hover { transform: none; }

.nav-item.active { color: var(--green-mid); font-weight: var(--fw-bold); }

.stat-box__value { color: var(--green-mid); }

/* Uygulama hissi — tutarlı hizalama & dokunma */
button,
input,
textarea,
select {
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.hero-card,
.home-hero,
.home-asiye-card,
.home-fal-cta,
.home-vip-banner,
.home-stats,
.home-quick-scroll,
.home-recent-scroll,
.profile-stats-row,
.profile-menu,
.daily-quote,
.feature-card,
.stat-box,
.steps-card,
.upload-zone,
.result-card,
.history-item,
.profile-hero,
.form-card,
.burclar-result__card,
.ritual-list,
.ritual-item,
.ritual-detail,
.ritual-detail__card,
.module-grid,
.module-card,
.premium-card,
.chat-window,
.chat-input-bar {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.toast {
    font-weight: var(--fw-medium);
    font-size: 0.875rem;
}

.fortune-tab.active {
    font-weight: var(--fw-bold);
}

/* Üyelik kapısı — üye yoksa uygulama açılmaz */
body.app-gate .app-shell {
    display: none !important;
}

body.app-gate .onboarding-overlay.visible {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 45%, var(--surface-warm) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.app-ready .onboarding-overlay {
    display: none !important;
}

body.onboarding-open {
    overflow: hidden;
}

.onboarding-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 300;
    padding: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.onboarding-overlay.visible {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.onboarding-card {
    width: 100%;
    max-width: 430px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 20px 28px;
    margin: auto;
    box-shadow: var(--shadow-md);
}

.onboarding-card__header {
    text-align: center;
    margin-bottom: 22px;
}

.onboarding-card__logo-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
}

.onboarding-card__logo-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--red));
    opacity: 0.35;
}

.onboarding-card__logo-wrap img {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.onboarding-card__title {
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    color: var(--green);
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}

.onboarding-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: var(--lh-body);
    margin: 0;
}

.onboarding-form .form-group {
    margin-bottom: 16px;
}

.interest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interest-chip {
    display: inline-flex;
    cursor: pointer;
}

.interest-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.interest-chip span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
    background: var(--surface-alt);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: var(--text-soft);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.interest-chip.active span,
.interest-chip input:checked + span {
    background: var(--green-soft);
    border-color: var(--green-mid);
    color: var(--green);
}

.onboarding-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 14px 0 0;
    line-height: var(--lh-body);
}

.profile-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 8px 0 0;
    line-height: var(--lh-body);
}

.profile-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
}

.profile-interest-tag {
    font-size: 0.625rem;
    font-weight: var(--fw-semibold);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    background: var(--green-soft);
    color: var(--green);
    border: 1px solid rgba(45, 106, 79, 0.15);
}

/* ── Mobil uygulama: Splash ── */
body.app-booting .app-shell,
body.app-booting .onboarding-overlay {
    visibility: hidden;
}

.app-splash {
    position: absolute;
    inset: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px calc(32px + var(--safe-bottom));
    background: linear-gradient(165deg, var(--green) 0%, #163d28 55%, #0f2a1c 100%);
    color: var(--white);
    transition: opacity 400ms ease, visibility 400ms ease;
}

.app-splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.app-splash__glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, transparent 70%);
    top: 18%;
    filter: blur(40px);
    animation: splashPulse 3s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.app-splash__logo-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    animation: splashLogoIn 700ms cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.app-splash__logo-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--neon-cyan));
    opacity: 0.5;
}

.app-splash__logo {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes splashLogoIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.app-splash__title {
    margin: 0 0 6px;
    font-size: 2rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.03em;
    animation: splashFadeUp 600ms 200ms ease both;
}

.app-splash__tagline {
    margin: 0 0 32px;
    font-size: 0.9375rem;
    opacity: 0.85;
    animation: splashFadeUp 600ms 350ms ease both;
}

@keyframes splashFadeUp {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.app-splash__loader {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.app-splash__loader span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: splashDot 1.2s ease-in-out infinite;
}

.app-splash__loader span:nth-child(2) { animation-delay: 0.15s; }
.app-splash__loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes splashDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.app-splash__status {
    margin: 0;
    font-size: 0.8125rem;
    opacity: 0.7;
}

/* ── Onboarding wizard (tam ekran mobil) ── */
body.app-gate .onboarding-overlay.visible {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
}

.onboarding-app {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: calc(12px + env(safe-area-inset-top, 0px)) var(--content-gutter) calc(24px + var(--safe-bottom));
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.onboarding-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    min-height: 40px;
}

.onboarding-top__back {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-size: 1.125rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.onboarding-top__back:active {
    background: var(--cream);
}

.onboarding-top__dots {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.onboarding-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all var(--transition);
}

.onboarding-dot.active {
    width: 24px;
    border-radius: var(--radius-pill);
    background: var(--green);
}

.onboarding-top__count {
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    min-width: 32px;
    text-align: right;
}

.onboarding-step {
    display: none;
    flex: 1;
    flex-direction: column;
    animation: stepIn 320ms ease both;
}

.onboarding-step--active {
    display: flex;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.onboarding-step__title {
    margin: 0 0 8px;
    font-size: 1.625rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
    color: var(--text);
}

.onboarding-step__desc {
    margin: 0 0 24px;
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

.onboarding-welcome {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 8px 0 16px;
}

.onboarding-welcome__logo {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    position: relative;
}

.onboarding-welcome__logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--green-light));
    opacity: 0.35;
}

.onboarding-welcome__logo img {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
}

.onboarding-welcome__title {
    margin: 0 0 10px;
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
}

.onboarding-welcome__desc {
    margin: 0 0 24px;
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

.onboarding-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.onboarding-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 16px 14px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.onboarding-features__icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 2px;
}

.onboarding-features__label {
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    color: var(--green);
    letter-spacing: -0.01em;
}

.onboarding-features__text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    white-space: nowrap;
}

.gender-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gender-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: var(--fw-medium);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}

.gender-card__icon {
    font-size: 1.375rem;
}

.gender-card.active {
    border-color: var(--green);
    background: var(--green-soft);
    color: var(--green);
}

.interest-chips--large .interest-chip span {
    padding: 12px 16px;
    font-size: 0.875rem;
}

.onboarding-step .btn-block {
    margin-top: auto;
}

/* ── Hoş geldin ekranı ── */
.welcome-overlay {
    position: absolute;
    inset: 0;
    z-index: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(26, 77, 46, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.welcome-overlay.hidden {
    display: none;
}

.welcome-card {
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: welcomeIn 400ms cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes welcomeIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.welcome-card__avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.welcome-card__title {
    margin: 0 0 10px;
    font-size: 1.375rem;
    font-weight: var(--fw-bold);
    color: var(--text);
}

.welcome-card__desc {
    margin: 0 0 24px;
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    font-size: 0.9375rem;
}

.welcome-card .btn-outline {
    margin-top: 10px;
}

/* ── Fal akışı (konu → foto) ── */
.read-flow__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--section-gap);
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
}

.read-flow__step {
    font-size: 0.6875rem;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}

.read-flow__step--active {
    background: var(--green);
    color: var(--white);
}

.read-flow__line {
    width: 20px;
    height: 2px;
    background: var(--border-light);
    flex-shrink: 0;
}

.page-header--compact {
    margin-bottom: var(--block-gap);
}

.page-header--compact .page-header__title {
    font-size: 1.375rem;
}

.read-intro {
    margin: 0 0 var(--stack-gap);
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: var(--lh-relaxed);
}

.read-panel {
    display: none;
    animation: stepIn 280ms ease both;
}

.read-panel--active {
    display: block;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--block-gap);
    margin-bottom: var(--section-gap);
}

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    transition: all var(--transition);
}

.topic-card__icon {
    font-size: 1.375rem;
}

.topic-card__title {
    font-size: 0.9375rem;
    font-weight: var(--fw-semibold);
    color: var(--text);
}

.topic-card__desc {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.topic-card.active {
    border-color: var(--green);
    background: var(--green-soft);
}

.topic-card.active .topic-card__title {
    color: var(--green);
}

.steps-card--compact {
    margin-bottom: 16px;
    padding: 14px 16px;
}

.steps-card--compact .steps-list li {
    font-size: 0.8125rem;
}

.read-panel__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-flex {
    flex: 1;
}

/* Sayfa geçiş animasyonu */
.page.active {
    animation: pageIn 280ms ease both;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
