/* =====================================================
   FRAGA Casino Azerbaijan — Main Stylesheet
   fraga-azer.it.com
   ===================================================== */

/* Google Fonts loaded via <link> in HTML for performance — @import removed */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #06071A;
  --bg-secondary: #0D0E2A;
  --bg-card: #131435;
  --bg-card-hover: #1A1C42;
  --bg-nav: #08091E;
  --gold: #ff3f66;
  --gold-dark: #d91f48;
  --gold-light: #ff9aac;
  --orange: #ffd31f;
  --orange-dark: #f5b800;
  --green: #00D09E;
  --purple: #26356b;
  --red: #FF4455;
  --text-primary: #F0F1FF;
  --text-secondary: #9899BB;
  --text-muted: #5D5E84;
  --border: #1E2050;
  --border-light: #282A58;
  --gradient-gold: linear-gradient(135deg, #ffd31f 0%, #ff3f66 100%);
  --gradient-dark: linear-gradient(180deg, #0D0E2A 0%, #06071A 100%);
  --gradient-card: linear-gradient(145deg, #151636 0%, #0E0F2A 100%);
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 30px rgba(255,63,102,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); font-weight: 600; }

.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-white { color: var(--text-primary); }
.text-muted { color: var(--text-muted); }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-xs { padding: 40px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.section-header .badge {
  display: inline-block;
  background: rgba(255,63,102,0.12);
  color: var(--gold);
  border: 1px solid rgba(255,63,102,0.3);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,9,30,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #06071A;
  letter-spacing: -0.5px;
}
.logo-name {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-name span { color: var(--text-muted); font-size: 0.65rem; font-weight: 400; display: block; -webkit-text-fill-color: var(--text-muted); margin-top: -4px; letter-spacing: 0.1em; text-transform: uppercase;}

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav-menu a.active { color: var(--gold); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #06071A;
  box-shadow: 0 4px 20px rgba(255,211,31,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,211,31,0.45);
  color: #06071A;
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,63,102,0.06);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 0.84rem; }
.btn-xl { padding: 17px 36px; font-size: 1.1rem; border-radius: var(--radius); }

/* Tracker CTA button (special) */
.btn-tracker {
  background: var(--gradient-gold);
  color: #06071A !important;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(255,63,102,0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.btn-tracker:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,63,102,0.4);
  color: #06071A !important;
}
.btn-tracker .pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,208,158,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(0,208,158,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,208,158,0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,9,30,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 16px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--gold);
  padding-left: 22px;
}
.mobile-menu-bottom {
  padding-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Page content padding for fixed nav */
.page-top { padding-top: var(--nav-h); }

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,63,102,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124,95,230,0.05) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,63,102,0.1);
  border: 1px solid rgba(255,63,102,0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-title .line1 { display: block; color: var(--text-primary); }
.hero-title .line2 {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-item { }
.hero-stat-item .num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item .label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,63,102,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ===== CARDS ===== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(255,63,102,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  overflow: hidden;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,63,102,0.25);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(255,63,102,0.1);
  border: 1px solid rgba(255,63,102,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.feature-card h4 { color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* ===== BONUS CARD ===== */
.bonus-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.bonus-card:hover { border-color: rgba(255,63,102,0.3); transform: translateY(-4px); }
.bonus-card-header {
  background: var(--gradient-gold);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
}
.bonus-card-icon { font-size: 2rem; }
.bonus-card-header .title { font-weight: 700; font-size: 1.1rem; color: #06071A; }
.bonus-card-header .subtitle { font-size: 0.82rem; color: rgba(6,7,26,0.7); }
.bonus-card-body { padding: 24px; }
.bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.bonus-card p { font-size: 0.9rem; }
.bonus-card .btn { width: 100%; margin-top: 16px; }

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.94rem;
}
thead th {
  background: var(--bg-card);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(30,32,80,0.6);
  color: var(--text-secondary);
  vertical-align: middle;
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }
table .badge-green { color: var(--green); font-weight: 600; }
table .badge-gold { color: var(--gold); font-weight: 600; }
table .badge-orange { color: var(--orange); font-weight: 600; }

/* ===== CHART CONTAINERS ===== */
.chart-wrap {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.chart-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.chart-canvas-wrap { position: relative; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover { border-color: rgba(255,63,102,0.2); }
.stat-box .num {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .lbl { font-size: 0.83rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* ===== REVIEW/RATING ===== */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.rating-bar-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rating-bar-bg { flex: 1; height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gradient-gold); border-radius: 50px; }
.rating-label { font-size: 0.82rem; color: var(--text-muted); width: 32px; text-align: right; }

/* ===== PROGRESS BARS ===== */
.progress-item { margin-bottom: 16px; }
.progress-item .meta { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-item .meta span { font-size: 0.88rem; color: var(--text-secondary); }
.progress-item .meta strong { color: var(--gold); font-size: 0.88rem; }
.progress-bg { height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 50px; transition: width 1.2s ease; }
.progress-fill.gold { background: var(--gradient-gold); }
.progress-fill.green { background: linear-gradient(90deg, var(--green), #00A87D); }
.progress-fill.purple { background: linear-gradient(90deg, var(--purple), #5B3FC8); }
.progress-fill.orange { background: linear-gradient(90deg, var(--orange), #FF8B35); }

/* ===== GAME CARD ===== */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.game-card:hover { border-color: rgba(255,63,102,0.3); transform: translateY(-4px); }
.game-card:hover .game-overlay { opacity: 1; }
.game-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.game-img svg { width: 100%; height: 100%; }
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(6,7,26,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card-info { padding: 14px; }
.game-card-info h5 { color: var(--text-primary); margin-bottom: 4px; font-size: 0.92rem; }
.game-card-info span { font-size: 0.78rem; color: var(--text-muted); }
.game-rtp { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.game-rtp .rtp-val { font-size: 0.82rem; color: var(--green); font-weight: 600; }
.game-hot { background: var(--orange); color: white; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.game-new { background: var(--green); color: #06071A; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }

/* ===== PROVIDER BADGES ===== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}
.provider-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  user-select: none;
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 22px 20px; color: var(--text-secondary); line-height: 1.7; }

/* ===== STEP INDICATORS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  opacity: 0.3;
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #06071A;
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(255,63,102,0.2);
}
.step-item h5 { color: var(--text-primary); margin-bottom: 8px; }
.step-item p { font-size: 0.87rem; }

/* ===== MOBILE APP SECTION ===== */
.app-download-block {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 20px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
}
.app-badge:hover { border-color: var(--gold); color: var(--gold); }
.app-badge-icon { font-size: 1.8rem; }
.app-badge-text .small { font-size: 0.72rem; color: var(--text-muted); display: block; }
.app-badge-text .big { font-weight: 700; font-size: 1rem; }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: rgba(255,63,102,0.2); transform: translateY(-4px); }
.blog-card-img { width: 100%; overflow: hidden; }
.blog-card-img svg { width: 100%; display: block; }
.blog-card-body { padding: 22px; }
.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-card-body h4 { color: var(--text-primary); margin-bottom: 10px; font-size: 1rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; gap: 14px; margin-top: 14px; }
.blog-meta span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== AUTHOR SECTION ===== */
.author-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.author-photo-wrap { position: relative; }
.author-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255,63,102,0.2);
}
.author-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.author-badge {
  background: rgba(255,63,102,0.08);
  border: 1px solid rgba(255,63,102,0.2);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.author-name { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.author-title { color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.author-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== BANNER/PROMO STRIP ===== */
.promo-strip {
  background: var(--gradient-gold);
  padding: 14px 0;
  text-align: center;
  position: relative;
}
.promo-strip p {
  color: #06071A;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
.promo-strip a {
  color: #06071A;
  text-decoration: underline;
  font-weight: 800;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,63,102,0.05) 0%, transparent 70%);
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; max-width: 540px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border-light); }
.breadcrumb .current { color: var(--text-secondary); }

/* ===== SIDEBAR LAYOUT ===== */
.sidebar-layout { display: grid; grid-template-columns: 1fr 310px; gap: 32px; align-items: start; }
.sidebar-widget {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-widget-head {
  padding: 16px 20px;
  background: var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}
.sidebar-widget-body { padding: 18px 20px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }
.sidebar-link::before { content: '›'; color: var(--gold); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-col h5 {
  color: var(--text-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col p { font-size: 0.88rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-warning {
  background: rgba(255,68,85,0.06);
  border: 1px solid rgba(255,68,85,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255,68,85,0.7);
  text-align: center;
}

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag {
  display: inline-block;
  background: rgba(255,63,102,0.08);
  border: 1px solid rgba(255,63,102,0.15);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-orange { background: rgba(255,211,31,0.1); border-color: rgba(255,211,31,0.2); color: var(--orange); }
.tag-green { background: rgba(0,208,158,0.1); border-color: rgba(0,208,158,0.2); color: var(--green); }

.highlight-box {
  background: rgba(255,63,102,0.05);
  border: 1px solid rgba(255,63,102,0.15);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* ===== SEO TEXT AREA ===== */
.seo-text { padding: 60px 0; }
.seo-text h2 { margin-bottom: 20px; font-size: 1.5rem; }
.seo-text h3 { margin: 28px 0 12px; font-size: 1.2rem; color: var(--gold); }
.seo-text p { margin-bottom: 16px; font-size: 0.96rem; }
.seo-text ul, .seo-text ol { padding-left: 20px; margin-bottom: 16px; }
.seo-text li { color: var(--text-secondary); font-size: 0.96rem; margin-bottom: 8px; }
.seo-text li::marker { color: var(--gold); }

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #06071A;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: #06071A; }

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D0E2A;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 9000;
  font-size: 0.84rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
#cookie-banner p { color: var(--text-secondary); margin: 0; font-size: 0.84rem; }
#cookie-banner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--gradient-gold); color: #06071A; border: none; padding: 9px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 0.84rem; font-family: inherit; }
.cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 9px 16px; border-radius: 8px; cursor: pointer; font-size: 0.84rem; font-family: inherit; }

/* ===== GAMBLING DISCLAIMER ===== */
.gambling-disclaimer {
  background: rgba(255, 68, 85, 0.06);
  border-top: 1px solid rgba(255, 68, 85, 0.2);
  padding: 14px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.gambling-disclaimer strong { color: #FF4455; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-outline { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .grid-1-2 { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; }
  .author-photo-wrap { max-width: 260px; }
  .app-download-block { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .sidebar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .hero-stat-item .num { font-size: 1.6rem; }
  .cta-section { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  table { font-size: 0.85rem; }
  thead th { padding: 11px 14px; }
  tbody td { padding: 11px 14px; }
  .table-wrap { margin-left: -16px; margin-right: -16px; border-left: none; border-right: none; border-radius: 0; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-xl { padding: 14px 24px; font-size: 1rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .app-download-block { padding: 28px 20px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .cta-section { padding: 36px 20px; }
}

/* ===== FRAGA PHOTO REFRESH ===== */
body.page-home { --page-hero-image: url('/images/hero-home.webp'); --page-card-a: url('/images/card-01.webp'); --page-card-b: url('/images/card-02.webp'); --page-card-c: url('/images/card-03.webp'); }
body.page-kazino { --page-hero-image: url('/images/hero-kazino.webp'); --page-card-a: url('/images/card-01.webp'); --page-card-b: url('/images/card-02.webp'); --page-card-c: url('/images/card-03.webp'); }
body.page-bonuslar { --page-hero-image: url('/images/hero-bonuslar.webp'); --page-card-a: url('/images/card-06.webp'); --page-card-b: url('/images/card-08.webp'); --page-card-c: url('/images/card-07.webp'); }
body.page-idman { --page-hero-image: url('/images/hero-idman.webp'); --page-card-a: url('/images/hero-idman.webp'); --page-card-b: url('/images/hero-app.webp'); --page-card-c: url('/images/card-07.webp'); }
body.page-app, body.page-auth { --page-hero-image: url('/images/hero-app.webp'); --page-card-a: url('/images/hero-app.webp'); --page-card-b: url('/images/card-09.webp'); --page-card-c: url('/images/card-07.webp'); }
body.page-blog { --page-hero-image: url('/images/hero-kazino.webp'); --page-card-a: url('/images/card-03.webp'); --page-card-b: url('/images/card-06.webp'); --page-card-c: url('/images/hero-idman.webp'); }
body.page-author { --page-hero-image: url('/images/author-elnur-hesenov.webp'); --page-card-a: url('/images/card-11.webp'); --page-card-b: url('/images/card-07.webp'); --page-card-c: url('/images/card-10.webp'); }
body.page-legal { --page-hero-image: url('/images/hero-home.webp'); --page-card-a: url('/images/card-11.webp'); --page-card-b: url('/images/card-07.webp'); --page-card-c: url('/images/card-12.webp'); }

main > section:first-child {
  background-color: var(--bg-secondary) !important;
  background-image:
    linear-gradient(90deg, rgba(6,7,26,.96), rgba(6,7,26,.78) 48%, rgba(6,7,26,.58)),
    var(--page-hero-image) !important;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  position: relative;
}
main > section:first-child .container { position: relative; z-index: 1; }
.hero {
  background-image:
    linear-gradient(90deg, rgba(6,7,26,.96), rgba(6,7,26,.78) 48%, rgba(6,7,26,.48)),
    var(--page-hero-image) !important;
  background-size: cover !important;
  background-position: center !important;
}
.fraga-hero-photo {
  min-height: 320px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: 1px solid rgba(255,63,102,.22);
  background:
    linear-gradient(180deg, rgba(6,7,26,.06), rgba(6,7,26,.24)),
    var(--page-hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 46px rgba(255,63,102,.12);
}
.hero-visual .fraga-hero-photo { width: 100%; min-height: 420px; }

.feature-card, .bonus-card, .blog-card, .game-card, .stat-box, .chart-wrap {
  min-width: 0;
}
.feature-card, .bonus-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  display: block;
  height: 142px;
  margin: -28px -28px 22px;
  background-image: linear-gradient(180deg, rgba(6,7,26,.06), rgba(6,7,26,.28)), var(--page-card-a);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,63,102,.16);
}
.grid-3 > .feature-card:nth-of-type(3n+2)::before, .grid-4 > .feature-card:nth-of-type(3n+2)::before { background-image: linear-gradient(180deg, rgba(6,7,26,.06), rgba(6,7,26,.28)), var(--page-card-b); }
.grid-3 > .feature-card:nth-of-type(3n)::before, .grid-4 > .feature-card:nth-of-type(3n)::before { background-image: linear-gradient(180deg, rgba(6,7,26,.06), rgba(6,7,26,.28)), var(--page-card-c); }
.bonus-card::before {
  content: '';
  display: block;
  height: 150px;
  background-image: linear-gradient(180deg, rgba(6,7,26,.08), rgba(6,7,26,.32)), url('/images/hero-bonuslar.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,63,102,.18);
}
.grid-3 > .bonus-card:nth-of-type(3n+2)::before { background-image: linear-gradient(180deg, rgba(6,7,26,.08), rgba(6,7,26,.32)), url('/images/card-08.webp'); }
.grid-3 > .bonus-card:nth-of-type(3n)::before { background-image: linear-gradient(180deg, rgba(6,7,26,.08), rgba(6,7,26,.32)), url('/images/card-07.webp'); }
.bonus-card-header { border-top: 1px solid rgba(255,255,255,.08); }

.game-img, .blog-card-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,63,102,.14);
}
.game-img svg, .blog-card-img svg { display: none; }
.game-card:nth-of-type(12n+1) .game-img, .blog-card:nth-of-type(12n+1) .blog-card-img { background-image: url('/images/card-01.webp'); }
.game-card:nth-of-type(12n+2) .game-img, .blog-card:nth-of-type(12n+2) .blog-card-img { background-image: url('/images/card-02.webp'); }
.game-card:nth-of-type(12n+3) .game-img, .blog-card:nth-of-type(12n+3) .blog-card-img { background-image: url('/images/card-03.webp'); }
.game-card:nth-of-type(12n+4) .game-img, .blog-card:nth-of-type(12n+4) .blog-card-img { background-image: url('/images/card-04.webp'); }
.game-card:nth-of-type(12n+5) .game-img, .blog-card:nth-of-type(12n+5) .blog-card-img { background-image: url('/images/card-05.webp'); }
.game-card:nth-of-type(12n+6) .game-img, .blog-card:nth-of-type(12n+6) .blog-card-img { background-image: url('/images/card-06.webp'); }
.game-card:nth-of-type(12n+7) .game-img, .blog-card:nth-of-type(12n+7) .blog-card-img { background-image: url('/images/card-07.webp'); }
.game-card:nth-of-type(12n+8) .game-img, .blog-card:nth-of-type(12n+8) .blog-card-img { background-image: url('/images/card-08.webp'); }
.game-card:nth-of-type(12n+9) .game-img, .blog-card:nth-of-type(12n+9) .blog-card-img { background-image: url('/images/card-09.webp'); }
.game-card:nth-of-type(12n+10) .game-img, .blog-card:nth-of-type(12n+10) .blog-card-img { background-image: url('/images/card-10.webp'); }
.game-card:nth-of-type(12n+11) .game-img, .blog-card:nth-of-type(12n+11) .blog-card-img { background-image: url('/images/card-11.webp'); }
.game-card:nth-of-type(12n) .game-img, .blog-card:nth-of-type(12n) .blog-card-img { background-image: url('/images/card-12.webp'); }

.author-portrait img, .author-photo img {
  width: min(260px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(255,63,102,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
  display: block;
}

@media (max-width: 900px) {
  .fraga-hero-photo { min-height: 260px; }
  .hero-visual .fraga-hero-photo { min-height: 300px; }
  main > section:first-child,
  .hero {
    background-image:
      linear-gradient(180deg, rgba(6,7,26,.94), rgba(6,7,26,.84)),
      var(--page-hero-image) !important;
  }
}

@media (max-width: 640px) {
  .fraga-hero-photo { min-height: 210px; border-radius: 14px; }
  .feature-card::before { height: 128px; }
  .bonus-card::before { height: 136px; }
  .hero-title, h1 { overflow-wrap: anywhere; }
}

/* Direct SVG blog thumbnails and remaining editorial visuals */
.blog-card > svg {
  display: none !important;
}
.blog-card::before {
  content: '';
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,63,102,.14);
}
.blog-card:nth-of-type(12n+1)::before { background-image: url('/images/card-01.webp'); }
.blog-card:nth-of-type(12n+2)::before { background-image: url('/images/card-06.webp'); }
.blog-card:nth-of-type(12n+3)::before { background-image: url('/images/card-03.webp'); }
.blog-card:nth-of-type(12n+4)::before { background-image: url('/images/hero-idman.webp'); }
.blog-card:nth-of-type(12n+5)::before { background-image: url('/images/hero-app.webp'); }
.blog-card:nth-of-type(12n+6)::before { background-image: url('/images/card-08.webp'); }
body.page-home .grid-1-2 > div > svg {
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(6,7,26,.08), rgba(6,7,26,.28)), url('/images/hero-idman.webp') center / cover;
}

@media (max-width: 560px) {
  .blog-card::before, .game-img, .blog-card-img { aspect-ratio: 16 / 11; }
}

/* ===== FRAGA STRAWBERRY BRAND THEME ===== */
:root {
  --bg-primary: #080d20;
  --bg-secondary: #0d1328;
  --bg-card: #121a35;
  --bg-card-hover: #172244;
  --bg-nav: #090e20;
  --gold: #ff3f66;
  --gold-dark: #d91f48;
  --gold-light: #ff7d96;
  --orange: #ffd31f;
  --orange-dark: #f5b800;
  --purple: #1b2650;
  --red: #ff2f5d;
  --border: #202b52;
  --border-light: #30406f;
  --gradient-gold: linear-gradient(135deg, #ff315d 0%, #ff5d7d 56%, #ffd31f 100%);
  --gradient-card: linear-gradient(145deg, #141d39 0%, #0b1127 100%);
  --shadow-gold: 0 6px 30px rgba(255,63,102,0.24);
}

.nav {
  background: rgba(9,14,32,0.97);
  border-bottom-color: rgba(255,63,102,0.22);
}
.logo {
  width: clamp(136px, 15vw, 190px);
  height: 54px;
  gap: 0;
  background: url('/images/fraga-logo.webp') left center / contain no-repeat;
}
.logo-mark,
.logo-name {
  display: none !important;
}
.promo-strip,
.btn-primary,
.btn-tracker,
.cookie-accept {
  background: var(--gradient-gold);
}
.btn-primary,
.btn-tracker,
.cookie-accept {
  color: #080d20 !important;
  box-shadow: 0 8px 28px rgba(255,49,93,.28);
}
.btn-primary:hover,
.btn-tracker:hover {
  box-shadow: 0 10px 34px rgba(255,49,93,.42);
}
.badge,
.hero-badge,
.section-header .badge,
.tag {
  background: rgba(255,63,102,.12) !important;
  border-color: rgba(255,63,102,.30) !important;
  color: #ff7d96 !important;
}
.gradient-text,
.section-header h2,
.logo-name,
.bonus-amount,
.stat-box .num,
.hero-stat-item .num {
  background: linear-gradient(135deg, #ffffff 0%, #ff6f8d 46%, #ff315d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.feature-icon,
.author-badge,
.highlight-box {
  background: rgba(255,63,102,.10);
  border-color: rgba(255,63,102,.24);
}
.fraga-hero-photo,
.author-portrait img,
.author-photo img {
  border-color: rgba(255,63,102,.34);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 46px rgba(255,63,102,.16);
}
main > section:first-child,
.hero {
  background-image:
    linear-gradient(90deg, rgba(8,13,32,.97), rgba(8,13,32,.82) 48%, rgba(8,13,32,.55)),
    var(--page-hero-image) !important;
}

@media (max-width: 900px) {
  .logo { width: 142px; height: 50px; }
  main > section:first-child,
  .hero {
    background-image:
      linear-gradient(180deg, rgba(8,13,32,.94), rgba(8,13,32,.84)),
      var(--page-hero-image) !important;
  }
}

@media (max-width: 430px) {
  .logo { width: 132px; }
  .nav-inner { gap: 10px; }
}

