/* ===== BONUS HANESİ — Kırmızı/Ev-Hane Teması ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ===== CSS VARIABLES ===== */
:root {
  --red: #dc2626;
  --red-hover: #b91c1c;
  --red-light: #ef4444;
  --red-glow: rgba(220, 38, 38, 0.15);
  --red-glow-strong: rgba(220, 38, 38, 0.25);
  --bg-body: #0a0c10;
  --bg-card: #111318;
  --bg-card-hover: #181b22;
  --bg-input: #16181d;
  --bg-header: #0d0f14;
  --border-color: #1f2230;
  --border-light: #2a2d3a;
  --text-primary: #f1f3f5;
  --text-secondary: #b0b5c0;
  --text-muted: #7a7f8c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--red-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }

img { max-width: 100%; height: auto; }

/* ===== HEADER / NAVBAR ===== */
.site-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; color: var(--text-primary); }

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), #991b1b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .brand {
  line-height: 1.2;
  font-size: 1.25rem;
}
.logo-text .tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.header-nav a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: var(--red-glow);
  color: var(--red-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-header:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}
.mobile-menu a {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--red-light); }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.02) 50%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-glow);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--red-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--red-light), #f87171, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-light);
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-search {
  position: relative;
  max-width: 440px;
}
.hero-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 14px 48px 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.hero-search input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== QUICK CATEGORIES ===== */
.quick-cats {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.quick-cats-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.quick-cats-grid::-webkit-scrollbar { height: 0; }

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.cat-chip:hover {
  background: var(--red-glow);
  border-color: rgba(220, 38, 38, 0.3);
  color: var(--red-light);
}
.cat-chip i { font-size: 0.9rem; }

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-light);
  background: var(--red-glow);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
}

/* ===== SITE CARDS ===== */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.site-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.site-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.card-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: #1a1d24;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.card-logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1d24, #222530);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-light);
  flex-shrink: 0;
}

.card-site-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.card-site-info .card-bonus-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-top-bonus {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red-light);
  background: var(--red-glow);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn-card-review {
  flex: 1;
  text-align: center;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 0;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-card-review:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-card-go {
  flex: 1;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.btn-card-go:hover {
  background: var(--red-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* ===== SECTIONS SPACING ===== */
.section-sites {
  padding: 60px 0;
}

.section-our-sites {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-external-sites {
  padding: 60px 0;
}

/* ===== SEARCH BAR (sticky) ===== */
.search-bar-sticky {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--bg-body);
  padding: 12px 0 16px;
}
.search-bar-inner {
  position: relative;
  max-width: 400px;
}
.search-bar-inner input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 12px 44px 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.search-bar-inner input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.search-bar-inner input::placeholder { color: var(--text-muted); }
.search-bar-inner i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* No results */
.no-results {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.no-results i { font-size: 3rem; display: block; margin-bottom: 12px; opacity: 0.4; }
.no-results p { font-size: 1rem; margin-bottom: 4px; }

/* ===== SITE DETAIL PAGE ===== */
.detail-hero {
  padding: 50px 0 40px;
  border-bottom: 1px solid var(--border-color);
}

.detail-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.detail-logo {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: contain;
  background: #1a1d24;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.detail-logo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1d24, #222530);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red-light);
  flex-shrink: 0;
}

.detail-hero-info h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.detail-rating .stars {
  color: #f59e0b;
  font-size: 1rem;
}
.detail-rating .rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-visit {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-visit:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-visit-alt {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-visit-alt:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--red);
}

/* ===== BONUS CARDS (detail) ===== */
.detail-bonuses {
  padding: 50px 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.bonus-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.bonus-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #1a1d24;
}

.bonus-card-img-placeholder {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #1a1d24, #222530);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--red-light);
  opacity: 0.6;
}

.bonus-card-body {
  padding: 16px;
}

.bonus-card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--text-primary);
}

.bonus-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.btn-bonus-get {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-bonus-get:hover {
  background: var(--red-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.bonus-fallback {
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

/* ===== REVIEW SECTION ===== */
.detail-review {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
}

.review-content {
  max-width: 800px;
}

.review-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.review-block {
  margin-bottom: 28px;
}

.review-block h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--red-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-block h4 i {
  font-size: 1rem;
  opacity: 0.7;
}

.review-block p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 50px 0 60px;
  border-top: 1px solid var(--border-color);
}

.faq-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-input); }
.faq-question i {
  transition: transform 0.3s;
  color: var(--red-light);
}
.faq-question.open i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ===== CATEGORY PAGE ===== */
.category-hero {
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--border-color);
}

.category-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.category-hero p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  padding: 14px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--text-muted);
  text-decoration: none;
}
.breadcrumb-nav a:hover { color: var(--red-light); }
.breadcrumb-nav .sep { opacity: 0.4; }
.breadcrumb-nav .current { color: var(--text-secondary); }

/* ===== CORPORATE PAGES ===== */
.corporate-page {
  padding: 50px 0 60px;
  max-width: 780px;
}

.corporate-page h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.corporate-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--red-light);
}

.corporate-page p, .corporate-page li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.corporate-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.corporate-page ul li {
  margin-bottom: 8px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}
.contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-card i {
  color: var(--red-light);
  font-size: 1.1rem;
}

/* ===== 404 PAGE ===== */
.error-page {
  text-align: center;
  padding: 100px 20px;
}
.error-page .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
}
.error-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 16px 0 8px;
}
.error-page p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== PAGINATION ===== */
.pagination-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}
.page-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.page-btn:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ===== SCHEMA (hidden) ===== */
.schema-script { display: none; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red-light); }

.footer-brand-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .mobile-toggle { display: block; }

  .hero-title { font-size: 2.4rem; }
  .sites-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

@media (max-width: 768px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-stats { gap: 20px; }
  .hero-stat .number { font-size: 1.4rem; }
  .section-title { font-size: 1.5rem; }

  .sites-grid { grid-template-columns: 1fr; gap: 12px; }

  .detail-hero-inner { flex-direction: column; align-items: flex-start; }
  .detail-hero-info h1 { font-size: 1.4rem; }
  .bonuses-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-hero h1 { font-size: 1.5rem; }
  .corporate-page h1 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.5rem; }
  .hero-section { padding: 36px 0 30px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero-stats { gap: 16px; }

  .section-title { font-size: 1.3rem; }
  .section-sites, .section-our-sites, .section-external-sites { padding: 36px 0; }
  .section-header { margin-bottom: 24px; }

  .detail-hero { padding: 30px 0 24px; }
  .detail-logo, .detail-logo-placeholder { width: 64px; height: 64px; }
  .detail-hero-info h1 { font-size: 1.2rem; }
  .btn-visit, .btn-visit-alt { padding: 12px 20px; font-size: 0.85rem; }
  .detail-bonuses, .detail-review { padding: 30px 0; }
  .review-content h2, .faq-section h2 { font-size: 1.3rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cat-chip { font-size: 0.75rem; padding: 6px 12px; }
  .error-page .error-code { font-size: 5rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-card, .bonus-card {
  animation: fadeInUp 0.4s ease-out both;
}
