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

:root {
  --bg-dark: #050816;
  --bg-black: #000000;
  --text: #ffffff;
  --muted: #cbd5e1;
  --gojo: #38bdf8;
  --gojo-2: #60a5fa;
  --itadori: #f97316;
  --itadori-2: #ef4444;
  --sukuna: #ef4444;
  --sukuna-2: #7f1d1d;
  --megumi: #818cf8;
  --megumi-2: #312e81;
  --about-1: #00d9ff;
  --about-2: #7b61ff;
  --card-bg: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at bottom, rgba(99, 102, 241, 0.12), transparent 24%),
    linear-gradient(180deg, #040712, #000000);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(56, 189, 248, 0.18), transparent 16%),
    radial-gradient(circle at 22% 78%, rgba(168, 85, 247, 0.10), transparent 20%),
    radial-gradient(circle at 82% 70%, rgba(239, 68, 68, 0.08), transparent 18%);
  animation: bgShift 12s ease-in-out infinite alternate;
}

body::after {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    );
  opacity: 0.2;
}

@keyframes bgShift {
  from {
    transform: translateY(0px) scale(1);
    filter: blur(0px);
  }
  to {
    transform: translateY(-18px) scale(1.04);
    filter: blur(2px);
  }
}

.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(56, 189, 248, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
  animation: floatUp linear infinite;
}

.particles span:nth-child(1) { left: 8%;  animation-duration: 12s; animation-delay: 0s;  bottom: -20px; }
.particles span:nth-child(2) { left: 18%; animation-duration: 16s; animation-delay: 2s;  bottom: -30px; }
.particles span:nth-child(3) { left: 30%; animation-duration: 10s; animation-delay: 1s;  bottom: -40px; }
.particles span:nth-child(4) { left: 42%; animation-duration: 14s; animation-delay: 4s;  bottom: -20px; }
.particles span:nth-child(5) { left: 56%; animation-duration: 11s; animation-delay: 2s;  bottom: -30px; }
.particles span:nth-child(6) { left: 68%; animation-duration: 17s; animation-delay: 5s;  bottom: -40px; }
.particles span:nth-child(7) { left: 79%; animation-duration: 13s; animation-delay: 1s;  bottom: -20px; }
.particles span:nth-child(8) { left: 90%; animation-duration: 15s; animation-delay: 3s;  bottom: -30px; }

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(1.3);
    opacity: 0;
  }
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  max-width: 1180px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo {
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--gojo);
  text-shadow: 0 0 12px var(--gojo);
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  flex-wrap: wrap;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: var(--gojo);
  text-shadow: 0 0 10px var(--gojo);
}

.hero {
  max-width: 1180px;
  margin: auto;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
}

.hero-text h1 .blue {
  color: var(--gojo);
  text-shadow:
    0 0 10px var(--gojo),
    0 0 20px var(--gojo),
    0 0 35px var(--gojo-2);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gojo), var(--gojo-2));
  color: #00131d;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.55);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.six-eyes-ring {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(191, 219, 254, 0.92) 10%, rgba(56,189,248,0.55) 26%, rgba(59,130,246,0.18) 43%, rgba(0,0,0,0) 62%);
  box-shadow:
    0 0 30px rgba(56, 189, 248, 0.55),
    0 0 70px rgba(59, 130, 246, 0.35),
    inset 0 0 35px rgba(255,255,255,0.5);
  animation: pulseEye 3s ease-in-out infinite;
}

.six-eyes-ring::before,
.six-eyes-ring::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.28);
  animation: rotateRing 8s linear infinite;
}

.six-eyes-ring::after {
  inset: 18px;
  border-color: rgba(96, 165, 250, 0.35);
  animation-direction: reverse;
  animation-duration: 6s;
}

.six-eyes-ring .eye-core {
  position: absolute;
  width: 110px;
  height: 110px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0%, #dbeafe 25%, #38bdf8 55%, rgba(0,0,0,0) 72%);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.9);
}

@keyframes pulseEye {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.18);
  }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.domain-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px 70px;
}

.domain-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(0, 0, 0, 0.85));
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.08);
}

.domain-box::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  left: -100%;
  top: -100%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, transparent 35%);
  animation: domainPulse 5s linear infinite;
}

@keyframes domainPulse {
  0% {
    transform: scale(0.2);
    opacity: 0.2;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.45;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.section-title,
.domain-box h2 {
  position: relative;
  z-index: 1;
  font-size: 34px;
  margin-bottom: 12px;
}

.domain-box p {
  position: relative;
  z-index: 1;
  line-height: 1.8;
  color: var(--muted);
  max-width: 900px;
}

.characters {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 24px;
  margin-top: 22px;
}

.character-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: 0.35s ease;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
}

.character-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.10) 50%, transparent 65%);
  transform: rotate(12deg) translateX(-120%);
  transition: 0.8s ease;
  pointer-events: none;
}

.character-card:hover::before {
  transform: rotate(12deg) translateX(120%);
}

.character-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.character-card.gojo:hover {
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.5);
}

.character-card.itadori:hover {
  box-shadow: 0 0 26px rgba(249, 115, 22, 0.35);
  border-color: rgba(249, 115, 22, 0.55);
}

.character-card.sukuna:hover {
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.45);
  border-color: rgba(239, 68, 68, 0.6);
}

.character-card.megumi:hover {
  box-shadow: 0 0 26px rgba(129, 140, 248, 0.38);
  border-color: rgba(129, 140, 248, 0.55);
}

.character-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.character-card .card-content {
  padding: 18px;
}

.character-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.character-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.gojo .card-tag { color: #bae6fd; }
.itadori .card-tag { color: #fdba74; }
.sukuna .card-tag { color: #fca5a5; }
.megumi .card-tag { color: #c7d2fe; }

.character-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.character-image-wrap {
  position: relative;
}

.character-image-wrap img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  display: block;
}

.character-info h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.character-info .subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: #dbeafe;
  font-weight: 700;
}

.character-info .motto {
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.character-info p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 17px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 22px 0 26px;
}

.stat-box {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-box strong {
  display: block;
  margin-bottom: 8px;
}

.back-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-theme-gojo {
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.18), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.12), transparent 18%),
    linear-gradient(180deg, #020617, #000000);
}

.page-theme-gojo .character-info h1,
.page-theme-gojo .motto {
  color: #7dd3fc;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
}

.page-theme-gojo .character-image-wrap::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 60%);
  z-index: -1;
  animation: pulseEye 3s ease-in-out infinite;
}

.page-theme-itadori {
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.16), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.12), transparent 18%),
    linear-gradient(180deg, #140a08, #000000);
}

.page-theme-itadori .character-info h1,
.page-theme-itadori .motto {
  color: #fdba74;
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.35);
}

.page-theme-sukuna {
  background:
    radial-gradient(circle at 20% 15%, rgba(239, 68, 68, 0.24), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(127, 29, 29, 0.22), transparent 18%),
    linear-gradient(180deg, #110404, #000000);
}

.page-theme-sukuna .character-info h1,
.page-theme-sukuna .motto {
  color: #f87171;
  text-shadow: 0 0 14px rgba(239, 68, 68, 0.55);
}

.page-theme-sukuna .character-image-wrap::after {
  content: "";
  position: absolute;
  inset: -28px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.26), transparent 62%);
  z-index: -1;
  animation: sukunaAura 2.7s ease-in-out infinite alternate;
}

@keyframes sukunaAura {
  from {
    transform: scale(1);
    filter: blur(6px);
    opacity: 0.65;
  }
  to {
    transform: scale(1.08);
    filter: blur(14px);
    opacity: 1;
  }
}

.page-theme-megumi {
  background:
    radial-gradient(circle at 20% 15%, rgba(129, 140, 248, 0.18), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(49, 46, 129, 0.20), transparent 18%),
    linear-gradient(180deg, #050816, #000000);
}

.page-theme-megumi .character-info h1,
.page-theme-megumi .motto {
  color: #c7d2fe;
  text-shadow: 0 0 12px rgba(129, 140, 248, 0.42);
}

.page-theme-about {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.16), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(123, 97, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(255, 0, 128, 0.10), transparent 25%),
    linear-gradient(180deg, #050816, #000000);
}

.info-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.info-box {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.info-box h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.info-box p,
.info-box li {
  line-height: 1.9;
  color: var(--muted);
}

.info-box ul {
  margin-left: 18px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-hero {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.about-left h1 {
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
}

.about-left h1 span {
  color: var(--about-1);
  text-shadow:
    0 0 10px var(--about-1),
    0 0 20px var(--about-1),
    0 0 35px var(--about-2);
}

.about-left p {
  color: #d8e6ff;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.about-badge {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dff7ff;
  box-shadow: 0 0 10px rgba(0,217,255,0.08);
}

.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.08);
  backdrop-filter: blur(10px);
}

.profile-box {
  position: relative;
  overflow: hidden;
}

.profile-box::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(0,217,255,0.12), transparent 35%);
  animation: profilePulse 5s linear infinite;
}

@keyframes profilePulse {
  0% { transform: scale(0.6); opacity: 0.25; }
  50% { transform: scale(1); opacity: 0.45; }
  100% { transform: scale(1.3); opacity: 0; }
}

.profile-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 800;
  color: #001a21;
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  box-shadow:
    0 0 18px rgba(0,217,255,0.4),
    0 0 36px rgba(123,97,255,0.25);
}

.profile-name {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.profile-role {
  color: #9fdfff;
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.profile-meta {
  display: grid;
  gap: 12px;
  text-align: left;
  margin-top: 20px;
}

.profile-meta div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  line-height: 1.6;
  word-break: break-word;
}

.resume-section {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px 90px;
}

.resume-title {
  font-size: 34px;
  margin-bottom: 18px;
  color: #ffffff;
}

.slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide-card {
  min-width: 320px;
  max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 0 18px rgba(0,217,255,0.06);
  transition: 0.3s ease;
}

.slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0,217,255,0.18);
  border-color: rgba(0,217,255,0.28);
}

.slide-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #00d9ff;
}

.slide-card p,
.slide-card li {
  color: #d7e7ff;
  line-height: 1.8;
  font-size: 15px;
}

.slide-card ul {
  margin-left: 18px;
}

.slider-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.slider-btn {
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  color: #02131c;
  box-shadow: 0 0 16px rgba(0,217,255,0.22);
}

.slider-btn:hover {
  transform: translateY(-2px);
}

.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about-link {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.about-link.primary {
  background: linear-gradient(90deg, #00d9ff, #7b61ff);
  color: #02131c;
  box-shadow: 0 0 18px rgba(0,217,255,0.25);
}

.about-link.secondary {
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  background: rgba(255,255,255,0.04);
}

.about-link:hover {
  transform: translateY(-2px);
}

.domain-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.30), rgba(4, 7, 18, 0.92) 45%, rgba(0,0,0,0.98) 70%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: overlayFade 0.35s ease;
}

.domain-overlay.active {
  display: flex;
}

.domain-overlay-content {
  text-align: center;
  padding: 30px;
}

.domain-overlay-content h2 {
  font-size: 42px;
  color: #7dd3fc;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.65);
  margin-bottom: 12px;
}

.domain-overlay-content p {
  color: #dbeafe;
  font-size: 18px;
}

@keyframes overlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

footer {
  text-align: center;
  padding: 30px 18px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  margin-top: 20px;
}

@media (max-width: 950px) {
  .hero,
  .character-hero,
  .about-hero,
  .dual-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1,
  .character-info h1,
  .about-left h1 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .six-eyes-ring {
    width: 240px;
    height: 240px;
  }

  .six-eyes-ring .eye-core {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 600px) {
  .hero-text h1,
  .character-info h1,
  .about-left h1 {
    font-size: 34px;
  }

  .domain-box h2,
  .section-title,
  .resume-title {
    font-size: 28px;
  }

  .character-card img {
    height: 280px;
  }

  .domain-overlay-content h2 {
    font-size: 30px;
  }

  .slide-card {
    min-width: 280px;
    max-width: 280px;
  }
}
