/* ===== KALEO CASINO ES - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --bg-primary: #070B14;
  --bg-card: #0E1829;
  --bg-card2: #12203A;
  --gold: #FFB300;
  --gold-light: #FFD55A;
  --gold-dark: #CC8A00;
  --gold-grad: linear-gradient(135deg, #FFB300 0%, #FFD55A 50%, #FFB300 100%);
  --blue-accent: #1E3A6E;
  --text-primary: #FFFFFF;
  --text-muted: #8A9BB8;
  --text-dark: #4A5A78;
  --border: rgba(255,179,0,0.15);
  --border-hover: rgba(255,179,0,0.5);
  --shadow-gold: 0 0 30px rgba(255,179,0,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,11,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 46px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(255,179,0,0.1); }

.header-cta {
  background: var(--gold-grad); color: #070B14 !important;
  font-weight: 700 !important; padding: 9px 20px !important;
  border-radius: 8px; font-size: 0.88rem !important;
  box-shadow: 0 4px 15px rgba(255,179,0,0.3);
  flex-shrink: 0;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,179,0,0.5); color: #070B14 !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); text-align: center; border: none; }
.btn-gold { background: var(--gold-grad); color: #070B14; box-shadow: 0 4px 20px rgba(255,179,0,0.4); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,179,0,0.6); color: #070B14; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold-grad); color: #070B14; transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== SECTION ===== */
section { padding: 80px 20px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; background: rgba(255,179,0,0.12); color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 14px; border: 1px solid rgba(255,179,0,0.2); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
.section-title span { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { color: var(--text-muted); font-size: 1rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 60px 20px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero-bg.webp');
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,11,20,0.9) 0%, rgba(7,11,20,0.5) 60%, rgba(7,11,20,0.8) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-tag { display: inline-block; background: rgba(255,179,0,0.15); border: 1px solid rgba(255,179,0,0.3); color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
.hero-stat { background: rgba(14,24,41,0.8); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; backdrop-filter: blur(8px); transition: var(--transition); }
.hero-stat:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.hero-card { background: rgba(14,24,41,0.85); border: 1px solid rgba(255,179,0,0.35); border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(12px); position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(255,179,0,0.15), 0 0 0 1px rgba(255,179,0,0.1); }
.hero-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(7,11,20,0.72) 0%, rgba(10,18,35,0.80) 50%, rgba(7,11,20,0.88) 100%); z-index: 0; border-radius: var(--radius-lg); }
.hero-card > * { position: relative; z-index: 1; }
.hero-card-title { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.bonus-display { text-align: center; padding: 20px 0; }
.bonus-amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.bonus-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 6px; }
.bonus-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.bonus-feat { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.bonus-feat::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ===== CARDS ===== */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.card-icon { width: 56px; height: 56px; background: rgba(255,179,0,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== TABLE ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th { background: rgba(255,179,0,0.1); color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
td { padding: 14px 18px; font-size: 0.92rem; border-bottom: 1px solid rgba(255,179,0,0.06); color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,179,0,0.04); color: var(--text-primary); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-gold { background: rgba(255,179,0,0.15); color: var(--gold); }
.badge-green { background: rgba(50,205,100,0.15); color: #32CD64; }
.badge-blue { background: rgba(100,150,255,0.15); color: #6496FF; }

/* ===== RATING STARS ===== */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--text-primary); }

/* ===== IMAGE SECTIONS ===== */
.img-section { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.img-section img { width: 100%; object-fit: cover; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem; transition: var(--transition); gap: 12px; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; background: rgba(255,179,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }
.faq-a.open { max-height: 400px; padding: 0 24px 20px; }
.faq-icon.open { transform: rotate(45deg); background: rgba(255,179,0,0.2); }

/* ===== AUTHOR BLOCK ===== */
.author-block { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 24px; align-items: flex-start; margin-top: 60px; }
.author-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); flex-shrink: 0; }
.author-info { flex: 1; }
.author-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.author-name { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.author-title { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.author-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FLOATING BANNER ===== */
.float-banner {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 220px; background: var(--bg-card2);
  border: 1px solid var(--gold); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-gold);
  animation: slideInRight 0.6s ease 2s both;
}
.float-banner-img { width: 100%; height: 110px; object-fit: cover; }
.float-banner-body { padding: 14px; }
.float-banner-tag { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.float-banner-title { font-size: 0.95rem; font-weight: 800; margin: 4px 0 10px; line-height: 1.3; }
.float-banner .btn { width: 100%; justify-content: center; padding: 10px; font-size: 0.85rem; border-radius: 8px; }
.float-banner-close { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; }
@keyframes slideInRight { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== FOOTER ===== */
.site-footer { background: #040710; border-top: 1px solid var(--border); padding: 60px 20px 30px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-about { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { max-width: 1280px; margin: 30px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8rem; color: var(--text-dark); }
.footer-18 { background: rgba(255,179,0,0.1); color: var(--gold); font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 6px; border: 1px solid rgba(255,179,0,0.2); }
.responsible-text { font-size: 0.75rem; color: var(--text-dark); margin-top: 16px; max-width: 1280px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ===== UTILITY ===== */
.bg-alt { background: var(--bg-card); }
.bg-alt2 { background: var(--bg-card2); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.two-col-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.highlight-box { background: rgba(255,179,0,0.07); border: 1px solid rgba(255,179,0,0.2); border-radius: var(--radius); padding: 20px 24px; }
.icon-list { display: flex; flex-direction: column; gap: 14px; }
.icon-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-muted); }
.icon-list li::before { content: '◆'; color: var(--gold); font-size: 0.6rem; margin-top: 5px; flex-shrink: 0; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin: 36px 0 14px; color: var(--text-primary); }
.prose h2 span { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; color: var(--gold); }
.prose p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.prose ul { margin: 14px 0 20px 20px; }
.prose ul li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.prose strong { color: var(--text-primary); font-weight: 600; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 80px 20px 60px; background: linear-gradient(135deg, var(--bg-card2) 0%, var(--bg-primary) 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; background-image: url('/img/hero-bg.webp'); background-size: cover; background-position: top center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,11,20,0.88) 0%, rgba(7,11,20,0.68) 55%, rgba(7,11,20,0.82) 100%); z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-dark); }

/* ===== CHART / DIAGRAM PLACEHOLDERS ===== */
.chart-bar { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { width: 130px; font-size: 0.82rem; color: var(--text-muted); flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 5px; background: var(--gold-grad); transition: width 1.5s ease; }
.bar-val { width: 40px; font-size: 0.82rem; color: var(--gold); font-weight: 700; }
.donut-wrap { display: flex; align-items: center; gap: 30px; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; background: var(--gold-grad); color: #070B14; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-body p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 40px; }
}
@media (max-width: 768px) {
  section { padding: 56px 16px; }
  .main-nav { display: none !important; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 60px 16px; }
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 30px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-banner { width: 190px; bottom: 16px; right: 16px; }
  .author-block { flex-direction: column; }
  .donut-wrap { flex-direction: column; }
  .bar-label { width: 100px; font-size: 0.75rem; }
  .header-cta { padding: 7px 14px !important; font-size: 0.78rem !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .float-banner { width: 170px; }
}

/* -- Inline article images with text wrap -- */
.img-float-right, .img-float-left { margin: 6px 0 24px 0; max-width: 420px; }
.img-float-right { float: right; margin-left: 32px; margin-right: 0; }
.img-float-left { float: left; margin-right: 32px; margin-left: 0; }
.img-float-right img, .img-float-left img { width:100%; height:auto; border-radius:var(--radius-md,12px); border:1px solid var(--border,rgba(255,179,0,0.15)); display:block; }
.img-float-right figcaption, .img-float-left figcaption { font-size:0.75rem; color:var(--text-muted); text-align:center; margin-top:6px; font-style:italic; }
.prose::after { content:''; display:table; clear:both; }
@media (max-width: 640px) { .img-float-right, .img-float-left { float:none; max-width:100%; margin:20px 0; } }
/* ===== MOBILE MENU OVERLAY ===== */
#mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(7, 11, 20, 0.0);
}
#mobile-menu-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mob-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #070B14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 9999;
  border-top: 2px solid #FFB300;
  overflow-y: auto;
}
.mob-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
  transition: background 0.2s, color 0.2s;
}
.mob-nav-link:hover,
.mob-nav-link.active {
  color: #FFB300;
  background: rgba(255, 179, 0, 0.08);
}
.mob-nav-cta {
  margin-top: 20px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #FFB300, #FFD55A);
  color: #070B14;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
}
/* Hamburger open state (X) */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }