:root {
  --bg-deep: #03050a;
  --bg-panel: rgba(8, 12, 22, 0.65);
  --line-gold: rgba(194, 166, 105, 0.35);
  --gold-dim: #a68d5e;
  --gold-bright: #d5c09a;
  --gold-luminous: #f3dfba;
  --text-primary: #f4f0ea;
  --text-secondary: #cfc7bb;
  --shadow-premium: 0 25px 50px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(194, 166, 105, 0.1) inset;
  --font-serif: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.noise-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.ambient-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 192, 154, 0.12) 0%, rgba(3, 5, 10, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.glow-top-right { top: -10vh; right: -10vw; }
.glow-bottom-left { bottom: -10vh; left: -10vw; background: radial-gradient(circle, rgba(100, 80, 140, 0.08) 0%, rgba(3, 5, 10, 0) 70%); }

.site-shell { position: relative; overflow-x: hidden; z-index: 1; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.frame {
  border: 1px solid var(--line-gold);
  background: var(--bg-panel);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.frame:hover {
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(213, 192, 154, 0.25) inset;
  transform: translateY(-4px);
}

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(3, 5, 10, 0.8), rgba(3, 5, 10, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(194, 166, 105, 0.1);
}
.brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-luminous);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  position: relative;
  padding-bottom: 5px;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold-bright); transition: width 0.3s ease;
}
.main-nav a:hover { opacity: 1; color: var(--gold-luminous); }
.main-nav a:hover::after { width: 100%; }

.lang-switch { display:flex; gap:8px; }
.lang-switch button,
.rail-btn,
.character-card {
  appearance:none; border:1px solid rgba(194,166,105,0.24); background:rgba(8,12,22,0.42);
  color:var(--gold-luminous); cursor:pointer;
}
.lang-switch button{
  padding:8px 10px; border-radius:999px; font-size:0.72rem; letter-spacing:0.12em;
}
.lang-switch button.is-active{ background:rgba(213,192,154,0.18); border-color:var(--gold-bright); }

.side-rail{
  position:fixed; right:24px; top:50%; transform:translateY(-50%);
  display:flex; flex-direction:column; gap:10px; z-index:55;
}
.rail-btn{
  width:44px; height:44px; border-radius:999px; display:grid; place-items:center;
  backdrop-filter:blur(10px);
}
.rail-btn.is-playing {
  box-shadow: 0 0 20px rgba(213, 192, 154, 0.4);
  color: var(--gold-luminous);
  border-color: var(--gold-bright);
  transition: box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.section{ position:relative; padding:120px 7vw; }
.content-section{ max-width:1400px; margin:0 auto; }

.section-heading{
  display:flex; align-items:end; gap:20px; margin-bottom:40px;
}
.section-heading span{
  font-family:var(--font-serif); color:var(--gold-dim); font-size:1rem; letter-spacing:0.35em;
}
.section-heading h2{
  font-family:var(--font-serif); font-size:clamp(34px,5vw,58px); font-weight:600; color:var(--gold-luminous);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(5, 8, 16, 0.08) 0%, rgba(5, 8, 16, 0.04) 100%),
    url('assets/images/ui/website-bg.png?v=20260412') center center / cover no-repeat !important;
  filter: none;
  transform: none;
  animation: slowZoom 20s infinite alternate ease-in-out;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,16,0.18) 0%, rgba(5,8,16,0.05) 28%, rgba(5,8,16,0.00) 55%, rgba(5,8,16,0.10) 100%);
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-characters {
  position: absolute;
  right: -25px;
  bottom: 0;
  width: min(79vw, 1020px);
  z-index: 8;
  pointer-events: none;
}

.hero-characters img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.32));
}

.floating-element {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.flower-petal-1 {
  top: 15%; right: 10%; width: 120px; height: 120px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZD0iTTUwLDUwIEM1MCwzMCAzMCwyMCAyMCw1MCBDMTAsODAgNDAsOTAgNTAsNzAgQzYwLDkwIDkwLDgwIDgwLDUwIEM3MCwyMCA1MCwzMCA1MCw1MFoiIGZpbGw9InJnYmEoMjEzLDE5MiwxNTQsMC4xNSkiLz48L3N2Zz4=');
  background-size: contain; background-repeat: no-repeat; opacity: 0.6;
  animation: floatSlow 18s infinite alternate ease-in-out;
}
.flower-petal-2 {
  bottom: 20%; left: 5%; width: 80px; height: 80px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cGF0aCBkPSJNNDAsNDAgQzQwLDIwIDIwLDEwIDEwLDQwIEMwLDcwIDMwLDgwIDQwLDYwIEM1MCw4MCA4MCw3MCA4MCw0MCBDNzAsMTAgNTAsMjAgNDAsNDBaIiBmaWxsPSJyZ2JhKDE5NCwxNjYsMTA1LDAuMSkiLz48L3N2Zz4=');
  background-size: contain; background-repeat: no-repeat; opacity: 0.4;
  animation: floatSlow 22s infinite alternate-reverse ease-in-out;
}
.stardust {
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,240,0.03) 0%, transparent 50%);
  animation: pulseGlow 8s infinite alternate;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, -30px) rotate(5deg); }
}
@keyframes pulseGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

/* === TEXT BLOCK CENTERED INSIDE BUTTERFLY FRAME === */
.hero-copy.frame.hero-butterfly-copy {
  position: absolute !important;
  left: calc(50% - 29vw) !important;
  top: 48% !important;
  transform: translate(-50%, -50%) !important;
  width: min(340px, 28vw) !important;
  max-width: 360px !important;
  margin: 0 !important;
  padding: 100px 20px 30px !important;
  text-align: center !important;
  z-index: 15 !important;
  border: 1px solid var(--line-gold) !important;
  background: rgba(8, 12, 22, 0.35) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  box-shadow: var(--shadow-premium) !important;
  pointer-events: auto;
}

.hero-butterfly-copy .eyebrow,
.hero-butterfly-copy .lead,
.hero-title,
.hero-butterfly-copy h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-butterfly-copy .hero-actions {
  justify-content: center !important;
}

.hero-title,
.hero-butterfly-copy h1 {
  font-size: clamp(32px, 4vw, 54px) !important;
  line-height: 0.9 !important;
  margin-bottom: 16px;
  max-width: 100%;
  color: var(--gold-luminous);
}

.hero-butterfly-copy .lead {
  max-width: 280px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.45;
  margin-bottom: 26px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  color: var(--gold-luminous);
  text-shadow: 0 4px 25px rgba(0,0,0,0.6);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.5;
  color: var(--text-primary);
  max-width: 540px;
  margin-bottom: 36px;
  font-style: italic;
}

.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

.primary-btn, .ghost-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold-bright);
  background: transparent;
  color: var(--gold-luminous);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(213, 192, 154, 0.1);
}
.primary-btn {
  background: rgba(213, 192, 154, 0.08);
  border-color: var(--gold-bright);
}
.primary-btn:hover, .ghost-btn:hover {
  background: rgba(213, 192, 154, 0.2);
  box-shadow: 0 0 30px rgba(213, 192, 154, 0.3);
  transform: scale(1.02);
  border-color: var(--gold-luminous);
  color: #fff;
}

.news-grid, .av-grid{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px;
}
.news-card, .av-card{ padding:28px; }
.news-kicker{
  color:var(--gold-bright); text-transform:uppercase; letter-spacing:0.22em; font-size:0.75rem; margin-bottom:14px;
}
.news-card h3, .av-card h3, .world-columns h3{
  font-family:var(--font-serif); font-size:clamp(24px,3vw,34px); margin-bottom:10px; color:var(--text-primary);
}

.characters-layout{
  display:grid; grid-template-columns:minmax(320px,420px) 1fr; gap:26px; align-items:start;
}
.character-list{ display:flex; flex-direction:column; gap:14px; }
.character-card{
  display:grid; grid-template-columns:84px 1fr; gap:16px; align-items:center; padding:12px; text-align:left;
  border-radius:22px; width:100%;
}
.character-card img{
  width:84px; height:84px; object-fit:cover; border-radius:16px; display:block;
}
.character-card div{ display:flex; flex-direction:column; }
.character-card strong{
  font-family:var(--font-serif); font-size:1.45rem; color:var(--gold-luminous);
}
.character-card span{ color:var(--text-secondary); font-size:0.95rem; }
.character-card.is-active{
  background:rgba(213,192,154,0.12);
  border-color:rgba(213,192,154,0.45);
  box-shadow: 0 0 20px rgba(213, 192, 154, 0.3), 0 0 0 1px rgba(213, 192, 154, 0.2) inset;
  transition: box-shadow 0.3s ease;
}
.character-stage{ padding:18px; min-height:640px; }

.character-detail{
  display:grid;
  grid-template-columns:minmax(300px,420px) 1fr;
  gap:28px;
  align-items:stretch;
}

.character-detail[hidden] {
  display: none !important;
}

.character-detail img{
  width:100%; height:100%; object-fit:cover; border-radius:26px; min-height:560px;
}
.character-copy{ padding:24px 12px 12px 0; }
.character-copy h3{
  font-family:var(--font-serif); font-size:clamp(34px,5vw,56px); color:var(--gold-luminous); margin-bottom:16px;
}
.character-copy p{ font-size:1.05rem; max-width:60ch; }

.world-section{
  min-height:100vh; display:flex; align-items:center;
}
.world-bg{
  position:absolute; inset:0;
  background:
   linear-gradient(112deg, rgba(3,5,10,0.92) 0%, rgba(3,5,10,0.68) 45%, rgba(3,5,10,0.55) 100%),
   url('assets/images/world/world-bg.png') center/cover no-repeat;
}
.world-overlay{
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 75% 25%, rgba(213,192,154,0.1) 0%, transparent 55%);
}
.world-content{ position:relative; z-index:2; max-width:1100px; padding:38px; }
.world-lead{ max-width:100%; margin-bottom:28px; }
.world-columns{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px;
}

.site-footer{
  padding:30px 20px 60px; text-align:center; color:var(--text-secondary); border-top:1px solid rgba(194,166,105,0.12);
}

[data-lang][hidden]{ display:none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-copy.frame.hero-butterfly-copy {
    left: calc(50% + 5vw) !important;
    width: min(320px, 30vw) !important;
  }
}

@media (max-width: 1100px){
  .main-nav{ display:none; }
  .side-rail{ right:14px; }
  .characters-layout, .character-detail, .news-grid, .av-grid, .world-columns{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px) {
  .hero-characters {
    width: min(85vw, 760px);
    right: 0;
  }
  
  .hero-copy.frame.hero-butterfly-copy {
    left: 50% !important;
    top: 44% !important;
    width: min(300px, 40vw) !important;
    padding-top: 90px !important;
  }
}

@media (max-width: 760px) {
  .hero-section {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .hero-bg {
  background-position: 32% center !important;
  height: 100vh !important;
  max-height: 100vh !important;
}
  
  .hero-copy.frame.hero-butterfly-copy {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: min(340px, calc(100vw - 28px)) !important;
    margin: 0 auto 10px !important;
    padding-top: 80px !important;
    padding-bottom: 20px !important;
    order: 1;
    border: 1px solid var(--line-gold) !important;
    background: var(--bg-panel) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  
  .hero-characters {
    position: relative !important;
    width: 115% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: -20px auto 0 !important;
    order: 2;
    display: block !important;
  }
  
  .hero-characters img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
}

@media (max-width: 700px){
  .topbar{ padding:16px 18px; }
  .brand{ letter-spacing:0.22em; font-size:0.82rem; }
  .lang-switch{ flex-wrap:wrap; justify-content:flex-end; }
  .section{ padding:100px 18px; }
  .character-card{ grid-template-columns:70px 1fr; }
  .character-card img{ width:70px; height:70px; }
  .character-stage{ padding:12px; min-height:auto; }
  .character-detail img{ min-height:420px; }
}

/* ===== CINEMATIC BACKGROUND ZOOM ===== */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* ===== ADDITIONAL MOBILE & TABLET OPTIMIZATION ===== */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .topbar { 
    padding: 10px; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand { 
    font-size: 0.7rem; 
    letter-spacing: 0.2em; 
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .main-nav { 
    gap: 10px; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-nav a { font-size: 0.6rem; }
  .lang-switch { 
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .lang-switch button { 
    padding: 5px 6px; 
    font-size: 0.55rem; 
  }
  
  .hero-section { 
    padding-top: 140px; 
    padding-bottom: 20px;
  }
  
  .hero-copy.frame.hero-butterfly-copy {
    width: 92% !important;
    padding: 45px 12px 15px !important;
    margin-bottom: 5px !important;
  }
  
  .hero-characters {
    width: 120% !important;
    margin-top: 50px !important;
  }
  
  .hero-title, .hero-butterfly-copy h1 {
    font-size: clamp(26px, 8vw, 38px) !important;
  }
  .eyebrow { 
    font-size: 0.65rem; 
    letter-spacing: 0.2em; 
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .primary-btn, .ghost-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.75rem;
  }
  
  .section { padding: 80px 15px; }
  .section-heading { 
    flex-direction: column; 
    align-items: start; 
    gap: 8px;
  }
  .section-heading span { font-size: 0.8rem; }
  .section-heading h2 { font-size: clamp(26px, 7vw, 38px); }
  
  .news-kicker { font-size: 0.65rem; }
  .news-card, .av-card { padding: 18px; }
  .news-card h3, .av-card h3 { font-size: clamp(20px, 5vw, 28px); }
  
  .character-card { 
    grid-template-columns: 50px 1fr; 
    padding: 8px;
  }
  .character-card img { 
    width: 50px; 
    height: 50px; 
  }
  .character-card strong { font-size: 1rem; }
  .character-card span { font-size: 0.7rem; }
  .character-detail img { max-height: 350px; }
  .character-copy h3 { font-size: clamp(26px, 6vw, 36px); }
  .character-copy p { font-size: 0.9rem; }
  
  .world-section { padding: 80px 15px; }
  .world-content { padding: 20px 15px; }
  .world-lead { font-size: 15px !important; }
  .world-columns { gap: 20px; }
  .world-columns h3 { font-size: clamp(20px, 5vw, 28px); }
  .world-columns p { font-size: 0.9rem; }
  
  .site-footer { 
    padding: 20px 15px 35px; 
    font-size: 0.75rem;
  }
  
  .side-rail { display: none; }
}

/* Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 15px;
  }
  .brand {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .lang-switch {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  .side-rail { display: none; }
  
  .hero-section {
    padding-top: 140px;
    padding-bottom: 30px;
  }
  
  .hero-copy.frame.hero-butterfly-copy {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 85% !important;
    margin: 0 auto 10px !important;
    padding-top: 70px !important;
  }
  
  .hero-characters {
    position: relative !important;
    width: 110% !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: -20px auto 0 !important;
    display: block !important;
  }
  
  .hero-characters img {
    width: 100% !important;
    display: block !important;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .primary-btn, .ghost-btn {
    width: 100%;
  }
  
  .section { padding: 80px 20px; }
  .characters-layout { grid-template-columns: 1fr; }
  .character-detail { grid-template-columns: 1fr; }
  .world-columns { grid-template-columns: 1fr; }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .topbar { padding: 15px 25px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 0.8rem; }
  .hero-characters { 
    width: min(70vw, 700px); 
    right: 30px;
  }
  .hero-copy.frame.hero-butterfly-copy {
    left: calc(50% - 22vw) !important;
    width: min(300px, 32vw) !important;
  }
  .section { padding: 100px 5vw; }
}

/* Landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-section { 
    min-height: auto; 
    padding: 120px 20px 40px; 
  }
  .hero-characters { width: min(55vw, 450px); }
  .hero-copy.frame.hero-butterfly-copy { 
    padding-top: 50px !important; 
  }
}

/* iOS Safari 100vh fix */
@supports (-webkit-touch-callout: none) {
  .hero-section { min-height: -webkit-fill-available; }
  .world-section { min-height: -webkit-fill-available; }
}

/* Image responsiveness */
img {
  max-width: 100%;
  height: auto;
}