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

:root {
  --bg-deep: #0A0816;
  --bg-main: #0F0B1E;
  --bg-card: #1A1535;
  --bg-card-hover: #221D42;
  --green: #3CDB5C;
  --green-dark: #2BA845;
  --green-glow: rgba(60, 219, 92, 0.35);
  --purple: #7B2FBE;
  --purple-light: #9B59D0;
  --pink: #FF3E8D;
  --gold: #FFD166;
  --gold-dark: #E6B84D;
  --cyan: #00D4FF;
  --white: #FFFFFF;
  --text: #FFFFFF;
  --text-muted: #B8B4CC;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-btn: 50px;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 50px;
}

.container { max-width: 100%; margin: 0 auto; padding: 0 12px; }

/* ====== NAVIGATION ====== */
.page-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 8px;
  background: rgba(15, 11, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(123, 47, 190, 0.3);
}
.page-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  transition: all 0.3s;
  white-space: nowrap;
}
.page-nav a.active,
.page-nav a:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--bg-deep);
}

/* ====== GLOBAL BUTTON STYLES ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-green {
  background: linear-gradient(135deg, var(--green), #28C74A);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--green-glow), 0 0 60px rgba(60, 219, 92, 0.15);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow), 0 0 80px rgba(60, 219, 92, 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #FFB347);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(255, 209, 102, 0.3), 0 0 60px rgba(255, 209, 102, 0.1);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 209, 102, 0.4), 0 0 80px rgba(255, 209, 102, 0.2);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 62, 141, 0.3), 0 0 60px rgba(255, 62, 141, 0.1);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 62, 141, 0.4), 0 0 80px rgba(255, 62, 141, 0.2);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.btn:hover svg { transform: translateX(3px); }

/* ====== PAGE SECTIONS ====== */
.page { position: relative; }

/* ====== HERO ====== */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 12px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse at 50% 30%, rgba(123, 47, 190, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(60, 219, 92, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.4), transparent);
  filter: blur(15px);
}
.hero-img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(123, 47, 190, 0.3));
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.3), rgba(60, 219, 92, 0.2));
  border: 1px solid rgba(123, 47, 190, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 340px;
}
.hero .btn { position: relative; z-index: 2; width: 100%; max-width: 320px; }

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  animation: scrollPulse 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}
.scroll-hint svg { width: 20px; height: 20px; }

/* ====== SECTIONS ====== */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 47, 190, 0.4), transparent);
  margin: 0 12px;
  overflow: hidden;
}

/* ====== ABOUT ME ====== */
.about-me { overflow: hidden; padding-top: 0; }
.section-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.section-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.2), transparent 70%);
  pointer-events: none;
}
.section-img {
  width: 180px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
  display: block;
  margin: 0 auto;
}
.section-content {
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.section-text .emoji { font-style: normal; }
.highlight-green { color: var(--green); font-weight: 700; }
.highlight-gold { color: var(--gold); font-weight: 700; }
.highlight-pink { color: var(--pink); font-weight: 700; }
.highlight-purple { color: var(--purple-light); font-weight: 700; }

.btn-wrap {
  display: flex;
  justify-content: center;
}
.btn-wrap .btn { width: 100%; max-width: 320px; }

/* ====== ABOUT SUPERGRA ====== */
.about-sg {
  background: linear-gradient(180deg, rgba(123, 47, 190, 0.08) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.about-sg .section-img-wrap::before {
  background: radial-gradient(circle, rgba(255, 62, 141, 0.15), transparent 70%);
}

.teaser-box {
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.15), rgba(60, 219, 92, 0.08));
  border: 1px solid rgba(123, 47, 190, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}
.teaser-box p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* ====== PAGE 2 — HOBBIES ====== */
.page-2-header {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-2-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(60, 219, 92, 0.06), transparent);
  pointer-events: none;
}

.hobby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 0 60px;
}
.hobby-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 190, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
}
.hobby-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.hobby-card:hover::before { opacity: 0.15; }
.hobby-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 219, 92, 0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.hobby-card:active { transform: scale(0.97); }
.hobby-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(180deg, rgba(123, 47, 190, 0.1), rgba(15, 11, 30, 0.8));
  position: relative;
  z-index: 1;
}
.hobby-card-body {
  padding: 14px 16px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hobby-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  margin-bottom: 6px;
}
.hobby-tag.sport { background: rgba(60, 219, 92, 0.15); color: var(--green); }
.hobby-tag.tech { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }
.hobby-tag.comedy { background: rgba(255, 209, 102, 0.15); color: var(--gold); }
.hobby-tag.cinema { background: rgba(255, 62, 141, 0.15); color: var(--pink); }
a.hobby-card {
  text-decoration: none;
  color: inherit;
}
.hobby-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}

/* ====== BONUS SECTION ====== */
.bonus-section {
  padding: 24px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.1), transparent 70%);
  pointer-events: none;
}
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(123, 47, 190, 0.15));
  border-radius: 24px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--green));
  border-radius: 24px 24px 0 0;
}
.bonus-img {
  width: 180px;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 12px 24px rgba(255, 209, 102, 0.2));
  animation: bonusFloat 3s ease-in-out infinite;
}
.bonus-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@keyframes bonusFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(255, 62, 141, 0.15));
  border: 1px solid rgba(255, 209, 102, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.bonus-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.bonus-fs {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.bonus-card .btn { width: 100%; }

/* ====== FLOATING ICONS ====== */
.float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.float-icon {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.12;
  animation: floatIcon linear infinite;
  filter: blur(0.5px);
}
@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-30px) rotate(15deg) scale(1.1); }
  50% { transform: translateY(-10px) rotate(-10deg) scale(0.95); }
  75% { transform: translateY(-40px) rotate(8deg) scale(1.05); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* ====== CURSOR GLOW ====== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease-out, top 0.3s ease-out, opacity 0.3s;
  opacity: 0;
}
.cursor-glow.visible { opacity: 1; }

/* ====== MARQUEE TICKER ====== */
.ticker {
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-deep), transparent); }
.ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg-deep)); }
.ticker-track {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticker-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item:nth-child(4n+1) .dot { background: var(--green); box-shadow: 0 0 8px var(--green-glow); }
.ticker-item:nth-child(4n+2) .dot { background: var(--pink); box-shadow: 0 0 8px rgba(255,62,141,0.4); }
.ticker-item:nth-child(4n+3) .dot { background: var(--gold); box-shadow: 0 0 8px rgba(255,209,102,0.4); }
.ticker-item:nth-child(4n) .dot { background: var(--cyan); box-shadow: 0 0 8px rgba(0,212,255,0.4); }

/* ====== NEON RINGS ====== */
.neon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  filter: blur(18px);
  animation: neonPulse 10s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { opacity: 0; transform: scale(0.9); filter: blur(24px); }
  30% { opacity: 0.12; filter: blur(14px); }
  50% { opacity: 0.18; transform: scale(1.08); filter: blur(10px); }
  70% { opacity: 0.12; filter: blur(14px); }
}

/* ====== STATS BAR ====== */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px 12px;
  max-width: 400px;
  margin: 0 auto;
}
.stat-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(123, 47, 190, 0.15);
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  transition: all 0.3s;
  cursor: default;
}
.stat-chip:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(60, 219, 92, 0.15);
  transform: translateY(-2px);
}
.stat-chip-icon { font-size: 1.2rem; }
.stat-chip-value {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}
.stat-chip-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== PARTICLES ====== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0;
  filter: blur(2px);
}
@keyframes particleDrift {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; filter: blur(4px); }
  15% { opacity: 0.2; filter: blur(1px); }
  50% { opacity: 0.25; filter: blur(1px); }
  85% { opacity: 0.2; filter: blur(1px); }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; filter: blur(4px); }
}

/* ====== ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====== SCREEN WRAPPERS ====== */
#screen-1, #screen-2 { overflow: hidden; }

/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 24px 12px 40px;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(123, 47, 190, 0.15);
}
footer a {
  color: var(--green);
  text-decoration: none;
}
.disclaimer-bar {
  width: 100%;
  margin-bottom: 0;
}
.disclaimer-banner {
  width: 100%;
  height: auto;
  display: block;
}
.disclaimer-banner--desktop {
  display: none;
}

/* FIXED BOTTOM BAR */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* 21+ BADGE */
.badge-21 {
  position: fixed;
  bottom: 60px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  letter-spacing: -0.02em;
}

.disclaimer-legal-wrap {
  max-width: 480px;
  margin: 0 auto 8px;
  padding: 0 16px;
  text-align: center;
}
.disclaimer-legal {
  font-size: 8px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}
.disclaimer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}

/* ====== DESKTOP ====== */
@media (min-width: 768px) {
  .container { max-width: 720px; }
  .hero-img { width: 320px; }
  .section-img { width: 280px; }
  .hobby-grid { gap: 20px; }
  .hobby-card-img { padding: 0; }
  .stats-bar {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    max-width: none;
    gap: 16px;
  }
  .bonus-card {
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 32px;
    text-align: left;
  }
  .bonus-img { width: 220px; margin: 0; }
  .bonus-content { align-items: flex-start; text-align: left; }
  .bonus-fs { font-size: 3.5rem; }
  .disclaimer-banner--mobile { display: none; }
  .disclaimer-banner--desktop { display: block; }
  .disclaimer-legal-wrap { max-width: 720px; }
}
@media (min-width: 1024px) {
  .container { max-width: 1100px; }

  .about-me .container,
  .about-sg .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .about-me .section-img-wrap { order: 2; margin-bottom: 0; }
  .about-sg .section-img-wrap { order: 1; margin-bottom: 0; }
  .section-img { margin: 0; }
  .about-sg .section-content { order: 2; }

  .section-content { text-align: left; }
  .section-img { width: 320px; }
  .btn-wrap { justify-content: flex-start; }
  .btn-wrap .btn { width: auto; }
  .section-text { margin-bottom: 28px; }

  .hobby-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .hero-img { width: 360px; }
  .bonus-card { padding: 40px 48px; gap: 40px; }
  .bonus-img { width: 280px; }
  .bonus-fs { font-size: 4rem; }
  .disclaimer-legal-wrap { max-width: 1100px; }
}
