/* ============================================
   WonBonus.site — Elite Dark Theme
   Google Fonts: Inter + Space Grotesk
   ============================================ */

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.3);
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-amber: #f59e0b;
    --accent-emerald: #10b981;
    --accent-rose: #f43f5e;
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #13131f;
    --bg-card-hover: #1a1a2e;
    --bg-input: #0f0f18;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #334155;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(99, 102, 241, 0.2);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a103c 50%, #0a0a0f 100%);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    --gradient-text: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(99, 102, 241, 0.25);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}
::selection { background: rgba(99, 102, 241, 0.3); color: var(--text-primary); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg); }
@media (max-width: 768px) { .container { padding: 0 var(--space-md); } }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-base);
}
.header.scrolled { background: rgba(10, 10, 15, 0.95); box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: var(--space-sm); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text-primary); }
.logo-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--gradient-primary); border-radius: var(--radius-md); color: white; font-size: 1.1rem; font-weight: 800; box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
.logo-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-badge { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); background: var(--bg-tertiary); padding: 2px 8px; border-radius: var(--radius-sm); border: 1px solid var(--border); }

.nav { display: flex; gap: var(--space-xs); }
.nav-link { padding: var(--space-sm) var(--space-md); color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.875rem; border-radius: var(--radius-md); transition: var(--transition-fast); position: relative; }
.nav-link:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gradient-primary); border-radius: var(--radius-full); transition: var(--transition-base); }
.nav-link:hover::after { width: 60%; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--space-sm); }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: var(--radius-full); transition: var(--transition-base); }
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-secondary); flex-direction: column; padding: var(--space-md); border-bottom: 1px solid var(--border); gap: var(--space-xs); }
    .nav.active { display: flex; }
    .menu-toggle { display: flex; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 64px; }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }
.hero-bg::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%); animation: heroPulse 8s ease-in-out infinite; }
@keyframes heroPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } }
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 800px; margin: 0 auto; padding: var(--space-4xl) 0; }
.hero-badge { display: inline-flex; align-items: center; gap: var(--space-sm); background: rgba(99, 102, 241, 0.1); border: 1px solid var(--border-glow); padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--primary-light); margin-bottom: var(--space-xl); }
.pulse-dot { width: 8px; height: 8px; background: var(--accent-emerald); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }

.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; color: var(--text-primary); margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; color: var(--text-secondary); max-width: 600px; margin: 0 auto var(--space-2xl); }
.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }

.hero-stats { display: flex; justify-content: center; gap: var(--space-2xl); margin-bottom: var(--space-2xl); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-primary); background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: var(--space-xs); }

.hero-cta { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%); color: var(--text-muted); animation: bounce 2s infinite; cursor: pointer; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: var(--space-sm); padding: var(--space-md) var(--space-xl); font-family: var(--font-primary); font-size: 0.9375rem; font-weight: 600; text-decoration: none; border-radius: var(--radius-md); border: none; cursor: pointer; transition: var(--transition-base); position: relative; overflow: hidden; }
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-strong); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--primary-light); }
.btn-outline { background: transparent; color: var(--primary-light); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: var(--space-lg) var(--space-2xl); font-size: 1rem; }
.btn-detail { background: var(--bg-tertiary); color: var(--text-secondary); padding: var(--space-sm) var(--space-md); font-size: 0.875rem; border: 1px solid var(--border); }
.btn-detail:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.btn-claim { background: var(--gradient-primary); color: white; padding: var(--space-sm) var(--space-md); font-size: 0.875rem; box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3); }
.btn-claim:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5); }

/* SECTIONS */
section { padding: var(--space-4xl) 0; position: relative; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: var(--space-xs); letter-spacing: -0.02em; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: var(--space-2xl); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: var(--space-2xl); flex-wrap: wrap; gap: var(--space-md); }

/* BONUS TYPES */
.bonus-types { background: var(--bg-secondary); }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-lg); }
.bonus-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-xl); text-decoration: none; color: var(--text-secondary); transition: var(--transition-base); position: relative; overflow: hidden; }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition-base); }
.bonus-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.bonus-card:hover::before { transform: scaleX(1); }
.bonus-card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(99, 102, 241, 0.1); border-radius: var(--radius-md); color: var(--primary-light); margin-bottom: var(--space-lg); }
.bonus-card-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.bonus-card-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--space-lg); }
.bonus-card-arrow { font-size: 1.25rem; color: var(--primary-light); transition: var(--transition-fast); }
.bonus-card:hover .bonus-card-arrow { transform: translateX(4px); }

/* WHY US */
.why-us { background: var(--bg-primary); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-xl); }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-2xl); transition: var(--transition-base); }
.feature-card:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.feature-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); margin-bottom: var(--space-lg); color: white; }
.feature-icon-blue { background: linear-gradient(135deg, #3b82f6, #6366f1); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
.feature-icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3); }
.feature-icon-green { background: linear-gradient(135deg, #10b981, #06b6d4); box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.feature-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* SITES */
.sites-section { background: var(--bg-secondary); }
.filter-tabs { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.filter-tab { padding: var(--space-sm) var(--space-md); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); color: var(--text-muted); font-family: var(--font-primary); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: var(--transition-fast); }
.filter-tab:hover { border-color: var(--primary-light); color: var(--text-primary); }
.filter-tab.active { background: var(--gradient-primary); border-color: transparent; color: white; }
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-lg); }

.site-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition-base); position: relative; }
.site-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.site-card.site-hot { border-color: rgba(245, 158, 11, 0.3); }
.site-card.site-hot::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent-amber), var(--accent-rose)); }
.site-card.site-new { border-color: rgba(16, 185, 129, 0.3); }

.site-card-header { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-lg); border-bottom: 1px solid var(--border); position: relative; }
.site-rank { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.site-logo-wrap { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: white; border-radius: var(--radius-md); overflow: hidden; padding: 4px; }
.site-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.site-badges { margin-left: auto; display: flex; gap: var(--space-xs); }
.badge { padding: 3px 10px; border-radius: var(--radius-sm); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; }
.badge-hot { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); border: 1px solid rgba(245, 158, 11, 0.2); }
.badge-new { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); border: 1px solid rgba(16, 185, 129, 0.2); }

.site-card-body { padding: var(--space-lg); }
.site-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-xs); }
.site-desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.site-bonus { display: flex; align-items: baseline; gap: var(--space-sm); margin-bottom: var(--space-md); }
.bonus-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bonus-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.site-meta { display: flex; gap: var(--space-lg); margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--border); }
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: 0.6875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.meta-value { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }

.site-score { display: flex; align-items: center; gap: var(--space-md); }
.score-ring { position: relative; width: 56px; height: 56px; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--bg-tertiary); stroke-width: 3; }
.score-ring-progress { fill: none; stroke: url(#scoreGradient); stroke-width: 3; stroke-linecap: round; transition: stroke-dasharray 1s ease; }
.score-number { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.score-info { display: flex; flex-direction: column; gap: 2px; }
.score-label { font-size: 0.6875rem; color: var(--text-muted); }
.score-text { font-size: 0.875rem; font-weight: 600; }
.score-text.kolay { color: var(--accent-emerald); }
.score-text.orta { color: var(--accent-amber); }
.score-text.zor { color: var(--accent-rose); }
.score-text.cokzor { color: #ef4444; }

.site-card-footer { display: flex; gap: var(--space-sm); padding: 0 var(--space-lg) var(--space-lg); }
.site-card-footer .btn { flex: 1; justify-content: center; }

/* COMPARISON CTA */
.comparison-cta { background: var(--bg-primary); padding: var(--space-4xl) 0; }
.cta-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--space-3xl); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%); pointer-events: none; }
.cta-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-md); line-height: 1.2; }
.cta-content p { color: var(--text-muted); margin-bottom: var(--space-xl); }
.comparison-preview { background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; font-size: 0.8125rem; }
.preview-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-md); padding: var(--space-sm) var(--space-md); align-items: center; }
.preview-header { background: rgba(99, 102, 241, 0.1); font-weight: 600; color: var(--text-primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.preview-row:not(.preview-header) { border-top: 1px solid var(--border); color: var(--text-secondary); }
.score-high { color: var(--accent-emerald); font-weight: 700; }
.score-mid { color: var(--accent-amber); font-weight: 700; }
@media (max-width: 768px) { .cta-box { grid-template-columns: 1fr; padding: var(--space-xl); } }

/* FAQ */
.faq-section { background: var(--bg-secondary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg) 0; background: none; border: none; color: var(--text-primary); font-family: var(--font-primary); font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left; transition: var(--transition-fast); }
.faq-question:hover { color: var(--primary-light); }
.faq-icon { flex-shrink: 0; transition: var(--transition-base); color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { padding-bottom: var(--space-lg); color: var(--text-muted); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* FOOTER */
.footer { background: var(--bg-primary); border-top: 1px solid var(--border); padding: var(--space-4xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-3xl); }
.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-muted); transition: var(--transition-fast); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-links h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-lg); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.875rem; padding: var(--space-xs) 0; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--primary-light); padding-left: var(--space-sm); }
.footer-bottom { text-align: center; padding-top: var(--space-xl); border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--space-xs); }
.footer-bottom .copyright { margin-top: var(--space-lg); color: var(--text-dark); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* UTILITIES */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-2xl); }


/* ============================================
   MOBIL OPTIMIZASYONLAR - 2026 STANDARTLARI
   ============================================ */

/* iPhone SE / Küçük Telefonlar (375px ve altı) */
@media (max-width: 375px) {
    .hero-title { font-size: 2rem !important; }
    .hero-stats { gap: var(--space-md); }
    .stat-number { font-size: 1.5rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .sites-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-sm); }
    .filter-tab { white-space: nowrap; }
}

/* iPhone 12/13/14 / Orta Telefonlar (376px - 767px) */
@media (min-width: 376px) and (max-width: 767px) {
    .hero-title { font-size: 2.5rem !important; }
    .hero-stats { gap: var(--space-lg); }
    .sites-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .cta-box { grid-template-columns: 1fr; }
    .comparison-preview { overflow-x: auto; }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr; }
    .cta-box { grid-template-columns: 1fr; }
}

/* iPad Pro / Büyük Tablet (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .sites-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: repeat(4, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Masaüstü (1280px+) */
@media (min-width: 1280px) {
    .sites-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid { grid-template-columns: repeat(4, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Ultra Geniş Ekranlar (1920px+) */
@media (min-width: 1920px) {
    .container { max-width: 1440px; }
    .sites-grid { grid-template-columns: repeat(4, 1fr); }
    .bonus-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   TOUCH & MOBIL UX OPTIMIZASYONLARI
   ============================================ */

/* Touch-friendly butonlar */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 48px; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .filter-tab { min-height: 40px; }
    .faq-question { min-height: 48px; }
    .site-card { cursor: pointer; }
    .bonus-card { cursor: pointer; }
}

/* iOS Safari fix'ler */
@supports (-webkit-touch-callout: none) {
    .hero { min-height: -webkit-fill-available; }
    .header { backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5); }
}

/* Reduced motion (Erişilebilirlik) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg::before { animation: none; }
    .pulse-dot { animation: none; }
    .hero-scroll { animation: none; }
}

/* Landscape mod (Yatay telefon) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: var(--space-2xl) 0; }
    .hero-content { padding: var(--space-xl) 0; }
    .hero-stats { display: none; }
}

/* Safe area (iPhone X+ çentik) */
@supports (padding: max(0px)) {
    .header .container { padding-left: max(var(--space-lg), env(safe-area-inset-left)); padding-right: max(var(--space-lg), env(safe-area-inset-right)); }
    .footer { padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom)); }
}
