/* CikCik — modern tema, mobil uyumlu */
:root {
    --bg: #0a0e14;
    --bg-card: rgba(18, 24, 35, 0.88);
    --surface-2: rgba(0, 0, 0, 0.35);
    --border: rgba(255, 255, 255, 0.08);
    --text: #e8eaed;
    --text-muted: #9aa3b2;
    --muted: #9aa3b2;
    --accent: #fbbf24;
    --accent-2: #f59e0b;
    --duck: #fcd34d;
    --success: #34d399;
    --error: #f87171;
    --primary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --radius: 16px;
    --radius-lg: 20px;
    --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    --max: 1200px;
    --pad: clamp(1rem, 4vw, 2rem);
    --font: 'Outfit', system-ui, sans-serif;
    --header-h: 64px;
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.88; }

/* Arka plan orb'ları */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.38;
    animation: floatOrb 14s ease-in-out infinite;
}

.orb-1 { width: min(420px, 90vw); height: min(420px, 90vw); background: #f59e0b; top: -12%; left: -8%; }
.orb-2 { width: min(320px, 70vw); height: min(320px, 70vw); background: #6366f1; bottom: 8%; right: -10%; animation-delay: -5s; }
.orb-3 { width: min(260px, 55vw); height: min(260px, 55vw); background: #22d3ee; top: 45%; left: 35%; animation-delay: -9s; opacity: 0.22; }

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -28px) scale(1.04); }
}

/* Ördek logosu */
.logo-duck {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: var(--duck);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    flex-shrink: 0;
    box-shadow: inset -3px -5px 0 rgba(0, 0, 0, 0.08);
}

.logo-duck::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 16px;
    background: #f97316;
    border-radius: 50% 50% 40% 60%;
    right: -7px;
    top: 16px;
    transform: rotate(-15deg);
}

.logo-duck::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #1e293b;
    border-radius: 50%;
    top: 13px;
    left: 13px;
    box-shadow: 13px 0 0 #1e293b;
}

.logo-duck.small { width: 32px; height: 32px; }
.logo-duck.small::before { width: 14px; height: 12px; right: -5px; top: 11px; }
.logo-duck.small::after { width: 5px; height: 5px; top: 8px; left: 8px; box-shadow: 9px 0 0 #1e293b; }

.logo-duck.pulse { animation: duckPulse 2s ease-in-out infinite; }

@keyframes duckPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* Header — içerik ortada, arka plan tam genişlik */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem var(--pad);
    isolation: isolate;
}

.site-header::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: linear-gradient(
        180deg,
        rgba(10, 14, 20, 0.92) 0%,
        rgba(10, 14, 20, 0.88) 75%,
        rgba(10, 14, 20, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    pointer-events: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
    text-decoration: none;
}

.brand-text { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.brand .accent { color: var(--accent); }

main, .reviews, .faq, .site-footer { position: relative; z-index: 1; }

/* Hero */
.hero {
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(1.5rem, 5vw, 2.5rem) var(--pad) clamp(2.5rem, 6vw, 4rem);
    min-height: calc(100dvh - var(--header-h) - 80px);
}

@media (min-width: 900px) {
    .hero { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 899px) {
    .hero { text-align: center; }
    .hero-visual { order: -1; }
    .lead { margin-left: auto; margin-right: auto; }
    .perks { text-align: left; display: inline-block; }
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.perks { list-style: none; margin-bottom: 2rem; }
.perks li { padding: 0.35rem 0; color: var(--text-muted); font-size: 0.95rem; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 899px) {
    .hero-actions { justify-content: center; }
}

.hero-actions .btn-secondary { margin-top: 0; }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2rem);
    backdrop-filter: blur(14px);
    display: flex;
    gap: clamp(1.25rem, 4vw, 2rem);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 380px;
}

.hero-card.floating { animation: floatCard 5s ease-in-out infinite; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-value { display: block; font-size: clamp(1.5rem, 4vw, 1.85rem); font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Yorumlar */
.reviews {
    max-width: var(--max);
    margin: 0 auto clamp(3rem, 8vw, 4.5rem);
    padding: 0 var(--pad);
}

.reviews-head {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.reviews-title {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 0.35rem;
}

.reviews-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.35rem 1.25rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.25s, border-color 0.25s;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.22);
}

.review-stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.review-meta strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.review-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SSS / Detaylar */
.faq {
    max-width: var(--max);
    margin: 0 auto clamp(3rem, 8vw, 4rem);
    padding: 0 var(--pad);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.faq-head {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.faq-title {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 0.35rem;
}

.faq-lead {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: rgba(251, 191, 36, 0.25);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.15rem 1.1rem;
    border-top: 1px solid var(--border);
}

.faq-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.85rem;
}

.faq-body p + p { margin-top: 0.65rem; }

.faq-body strong { color: var(--text); font-weight: 600; }

.site-footer {
    text-align: center;
    padding: 2rem var(--pad);
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.875rem 1.75rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
    background: var(--primary);
    color: #0a0e14;
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(251, 191, 36, 0.4);
}

.btn-glow { animation: btnGlow 3s ease-in-out infinite; }

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 8px 44px rgba(251, 191, 36, 0.5); }
}

.btn-block { width: 100%; }
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    margin-top: 0.5rem;
}

.btn-secondary:hover:not(:disabled) {
    border-color: rgba(251, 191, 36, 0.4);
    color: var(--accent);
}
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 36px; }
.btn-danger { background: var(--error); color: #fff; }
.btn-action { padding: 0.35rem 0.65rem; font-size: 0.75rem; min-height: 32px; margin: 2px; border-radius: 8px; }

/* Form sayfaları */
.form-page,
.spinner-page,
.success-page,
.admin-login-page {
    position: relative;
    z-index: 1;
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
}

.form-card,
.spinner-card,
.success-card,
.admin-login-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(1.75rem, 5vw, 2.5rem);
    max-width: 440px;
    width: 100%;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    text-align: center;
}

.form-duck { margin: 0 auto 1rem; width: 52px !important; height: 52px !important; }

.form-card h1,
.spinner-card h1,
.success-card h1,
.admin-login-card h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-sub, .spinner-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.app-form { text-align: left; }

.field { margin-bottom: 1.25rem; }

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.field input {
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1rem;
    font-family: var(--font);
    font-size: 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.12);
}

.otp-input {
    text-align: center;
    font-size: 1.75rem !important;
    letter-spacing: 0.45em;
    font-weight: 600;
}

.form-error { color: var(--error); font-size: 0.875rem; margin-bottom: 1rem; }

.alert {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    text-align: left;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Spinner */
.spinner-ring {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.dots-loader {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 1.5rem;
}

.dots-loader span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotBounce 1.2s ease-in-out infinite;
}

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

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

/* Success */
.success-glow .orb-1 { background: var(--success); opacity: 0.28; }

.checkmark-circle { width: 80px; height: 80px; margin: 0 auto 1rem; }

.checkmark {
    width: 80px;
    height: 80px;
    stroke: var(--success);
    stroke-width: 3;
    stroke-miterlimit: 10;
}

.checkmark-circle-bg {
    stroke: rgba(52, 211, 153, 0.2);
    animation: strokeCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.4s 0.5s ease forwards;
}

@keyframes strokeCircle { to { stroke-dashoffset: 0; } }
@keyframes strokeCheck { to { stroke-dashoffset: 0; } }

.success-message { color: var(--text-muted); margin: 1rem 0; line-height: 1.7; }
.success-hint { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Admin */
.admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem var(--pad);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(14px);
}

.admin-header-left { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.admin-header-left h1 { font-size: 1.2rem; font-weight: 600; }
.admin-header-left .accent { color: var(--accent); }

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--success);
    background: rgba(52, 211, 153, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.admin-header-right { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.admin-user { color: var(--text-muted); font-size: 0.875rem; }

.admin-main {
    position: relative;
    z-index: 1;
    padding: 1.5rem var(--pad) 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.app-count { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    backdrop-filter: blur(8px);
}

.admin-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table tbody tr { transition: background 0.2s; }
.admin-table tbody tr:hover { background: rgba(251, 191, 36, 0.04); }
.admin-table tbody tr.row-new { animation: rowHighlight 1.5s ease; }

@keyframes rowHighlight {
    from { background: rgba(251, 191, 36, 0.2); }
    to { background: transparent; }
}

.empty-row { text-align: center; color: var(--text-muted); padding: 2rem !important; }

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-waiting { background: rgba(148, 163, 184, 0.2); color: #94a3b8; }
.status-otp_requested { background: rgba(251, 191, 36, 0.15); color: var(--accent); }
.status-otp_submitted { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.status-otp_rejected { background: rgba(248, 113, 113, 0.15); color: #fca5a5; }
.status-approved { background: rgba(52, 211, 153, 0.15); color: var(--success); }

.otp-value {
    font-family: ui-monospace, monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
}

.actions-cell { white-space: nowrap; }
.text-muted { color: var(--text-muted); }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
}

.modal[hidden] { display: none; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.modal-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow);
    animation: fadeUp 0.3s ease;
}

.modal-card h2 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.modal-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; flex-wrap: wrap; }

.toast-container {
    position: fixed;
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: var(--pad);
    left: var(--pad);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

@media (min-width: 480px) {
    .toast-container { left: auto; max-width: 320px; }
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    box-shadow: var(--shadow);
    pointer-events: auto;
    animation: fadeUp 0.3s ease;
}

/* 404 */
.page-404 .error-page,
.error-page {
    position: relative;
    z-index: 1;
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
}

.error-card {
    text-align: center;
    max-width: 440px;
    width: 100%;
    padding: clamp(2rem, 6vw, 3rem);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.error-code {
    font-size: clamp(4rem, 15vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.error-card h1 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.error-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.error-actions .btn-secondary { margin-top: 0; }

.page-banned {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: var(--pad);
    text-align: center;
}

.banned-card h1 { margin: 1rem 0 0.5rem; }
.banned-card p { color: var(--text-muted); }

/* Animasyonlar */
.animate-in {
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }

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