/* ===========================
   GENEL AYARLAR
   =========================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;

  /* Arka plan resmi */
  background-image: url('../assets/background.jpg');
  background-size: cover;          
  background-position: center;     
  background-repeat: no-repeat;    
  background-attachment: fixed;    
}


body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);  
  z-index: -1;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 5px; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e6b800, #8b6f00);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #ffcc00, #a58300); }

header {
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 50px;
}
header h1 img {
  width: 120px;
  height: auto;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.2s ease;
}
nav a:hover { color: #e6b800; }

.slider-container {
  width: 900px;
  height: 300px;
  margin: 30px auto 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(230,184,0,0.35);
  background: #000;
}
.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.6s ease;
  pointer-events: none;
}

.slider-container img.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #e6b800;
  background: rgba(0,0,0,0.45);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, transform 0.12s ease;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-prev:hover, .slider-next:hover { background: rgba(0,0,0,0.75); transform: translateY(-50%) scale(1.05); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-prev, .slider-next { touch-action: manipulation; }

.ozellikler-section, .alt-kutular { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.ozellikler-baslik-container { text-align: center; margin-bottom: 25px; }
.ozellikler-baslik {
  background: linear-gradient(180deg, rgba(25, 27, 36, 0.7) 0%, rgba(10, 11, 15, 0.95) 100%);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-top: 2px solid #e6b800; /* sarı yaptık */
  border-radius: 6px;
  padding: 18px 20px;
  color: #c5a059;
  display: flex;
  align-items: center;
  justify-content: center; /* ortaladık */
  gap: 15px;
  
  text-align: center; /* yazı ortalı */
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}
.ozellikler { display: flex; justify-content: space-between; gap: 10px; }
.sol, .sag { width: 45%; }
a.ozellik {
  display: block;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-left: 3px solid #e6b800;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
a.ozellik:hover { background: #222; transform: translateX(4px); }

.efsun-tablosu {
  width: 100%;
  margin: 20px auto 0 auto;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(230,184,0,0.18);
}
.efsun-tablosu th, .efsun-tablosu td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid #2a2a2a;
  color: #fff;
}
.efsun-tablosu th { background: #1c1c1c; color: #e6b800; font-weight: 700; }
.efsun-tablosu tbody tr:hover { background: rgba(0, 0, 0, 0.6); }

.alt-kutu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.04);
  gap: 30px;
}
.alt-kutu.sag-resim { flex-direction: row-reverse; }
.alt-kutu img {
  width: 100%;
  max-width: 400px;
  height: 200px;
  object-fit: contain;
  background: #000;
}
.alt-kutu.sag-resim img { margin-right: 0; margin-left: 20px; }
.aciklama { font-size: 18px; line-height: 1.6; }

.donusumler-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(230,184,0,0.25);
  text-align: center;
}

.donusumler-section .ozellikler-baslik {
  margin-bottom: 30px;
}

.donusumler-baslik, .donusumler-section .ozellikler-baslik {
  display: inline-block;
  color: #e6b800;
  font-size: 30px;
  font-weight: 700;
  padding: 10px 22px;
  border: 2px solid #e6b800;
  border-radius: 14px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255,215,0,0.18);
}

.donusumler-kategoriler {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 28px;
  flex-wrap: wrap;
}
.donusum-btn {
  background: rgba(0, 0, 0, 0.6);
  color: #e6b800;
  border: 2px solid #e6b800;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.14s ease;
}
.donusum-btn:hover { transform: translateY(-3px); }
.donusum-btn.active {
  background: rgba(0, 0, 0, 0.6);
  color: #0d0d0d;
  box-shadow: 0 6px 18px rgba(230,184,0,0.12);
}

.donusum-grup { display: none; }
.donusum-grup.aktif { display: block; }

.donusum-tablosu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 0 12px rgba(230,184,0,0.06);
  border: 1px solid rgba(230,184,0,0.06);
}

.donusum-satir {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 6px;
  width: 100%;
  max-width: 700px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.03));
  border-radius: 10px;
}

.donusum-satir img {
  width: 96px;
  height: 96px;
  border-radius: 6px;
  border: 2px solid #d4af37;
  background: radial-gradient(circle at center, #2b2b2b 60%, #000);
  box-shadow:
    inset 0 0 6px rgba(255,215,0,0.25),
    0 0 10px rgba(255,215,0,0.08);
  object-fit: contain;
  padding: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: block;
}

.donusum-satir img:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 18px rgba(255,215,0,0.55),
    inset 0 0 8px rgba(255,255,200,0.35);
}

.donusum-satir .ok-ikon, .donusum-satir .ok-icon, .donusum-satir .ok-icon {
  font-size: 34px;
  color: #e6b800;
  text-shadow: 0 0 8px rgba(255,215,0,0.25);
  user-select: none;
  pointer-events: none;
}

.donusum-tablosu .sutun {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 768px) {
  .slider-container { width: 94%; height: 200px; }
  .ozellikler { flex-direction: column; gap: 12px; }
  .sol, .sag { width: 100%; }
  .alt-kutu, .alt-kutu.sag-resim { flex-direction: column; text-align: center; }
  .alt-kutu img, .alt-kutu.sag-resim img { margin: 0 0 15px 0; width: 100%; max-width: 420px; height: auto; }

  .donusum-satir { flex-direction: column; gap: 12px; padding: 12px; }
  .donusum-satir img { width: 80px; height: 80px; padding: 3px; }
  .donusum-satir .ok-ikon { font-size: 24px; }
  #online-sayac { left: 8px; font-size: 15px; padding: 8px 10px; }
  .efsun-tablosu th, .efsun-tablosu td { padding: 8px 6px; font-size: 13px; }
}

.donusum-btn, .slider-prev, .slider-next { outline: none; }

.donusum-tablosu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}

.donusum-satir {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 10px auto;
  flex-wrap: nowrap; 
}
#popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.popup {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(230,184,0,0.4);
  padding: 25px 40px;
  text-align: center;
  color: #fff;
  max-width: 320px;
  width: 90%;
  animation: popup-appear 0.4s ease;
}

.popup h2 {
  color: #e6b800;
  margin-bottom: 15px;
  font-size: 24px;
}

.popup ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.popup ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(230,184,0,0.2);
  font-size: 16px;
}

.popup ul li:last-child {
  border-bottom: none;
}

.popup button {
  background: #e6b800;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popup button:hover {
  background: #ffd700;
}

/* Giriş animasyonu */
@keyframes popup-appear {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.char-page-wrapper {
	display: flex;
	justify-content: center;
	min-height: auto;
	background: transparent;
	margin: 0 !important;
	padding: 0 !important;
}



.char-content-frame {
	width: 100%;
	max-width: 850px;
	aspect-ratio: 1000 / 1092;
	background: rgba(0, 0, 0, 0.6);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	border-radius: 10px;
}
.char-content-frame::before {
	display: none;
}

.char-content-frame::after {
	display: none;
}

.char-main-container {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	padding: 20px;
	position: absolute;
	top: 0;
	left: 0;
	font-family: 'Cinzel', 'Times New Roman', serif;
}

.char-stats-panel {
	width: 240px;
	background: linear-gradient(180deg, 
		rgba(20, 15, 10, 0.85) 0%, 
		rgba(15, 12, 8, 0.9) 100%);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(100, 80, 60, 0.4);
	border-radius: 5px;
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 4px 20px rgba(0, 0, 0, 0.6);
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
}

.char-stats-panel .char-header {
	background: linear-gradient(180deg, #2a1f15 0%, #1a1410 100%);
	padding: 15px;
	border-bottom: 1px solid #3d2e1f;
	text-align: center;
}

.char-stats-panel .chinese-symbol {
	font-size: 3.125rem;
	color: #c41e3a;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	font-weight: bold;
}

.char-stats-panel .character-name {
	font-size: 1.375rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	color: #c41e3a;
}

.char-stats-panel .char-info-box {
	display: flex;
	align-items: center;
	padding: 12px;
	border-bottom: 1px solid #3d2e1f;
	background: rgba(0, 0, 0, 0.2);
}

.char-stats-panel .char-avatar {
	width: 50px;
	height: 50px;
	border: 2px solid #5a4a3a;
	border-radius: 3px;
	overflow: hidden;
	margin-right: 10px;
}

.char-stats-panel .char-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.char-stats-panel .char-details {
	flex: 1;
}

.char-stats-panel .char-kingdom {
	font-size: 1.4rem;
	color: #d4af37;
	font-weight: bold;
}

.char-stats-panel .char-guild {
	font-size: 1.3rem;
	color: #888;
}

.char-stats-panel .char-stats-info {
	padding: 10px 12px;
	border-bottom: 1px solid #3d2e1f;
}

.char-stats-panel .stat-row {
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
	font-size: 1.25rem;
}

.char-stats-panel .stat-row-label {
	color: #888;
}

.char-stats-panel .stat-row-value {
	color: #fff;
}

.char-stats-panel .stats {
	padding: 12px;
}

.char-stats-panel .stat {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.char-stats-panel .stat-label {
	width: 40px;
	font-size: 1rem;
	font-weight: bold;
	color: #aaa;
}

.char-stats-panel .stat-bar {
	flex: 1;
	height: 14px;
	background: #1a1410;
	border: 1px solid #3d2e1f;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.char-stats-panel .stat-fill {
	height: 100%;
	transition: width 0.6s ease;
	position: relative;
}

.char-stats-panel .stat-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.char-stats-panel .stat-fill.hp { 
	background: linear-gradient(180deg, #d63031 0%, #a71d1d 100%);
}
.char-stats-panel .stat-fill.int { 
	background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%);
}
.char-stats-panel .stat-fill.str { 
	background: linear-gradient(180deg, #f39c12 0%, #d68910 100%);
}
.char-stats-panel .stat-fill.dex { 
	background: linear-gradient(180deg, #27ae60 0%, #1e8449 100%);
}

.char-stats-panel .stat-value {
	width: 35px;
	text-align: right;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	margin-left: 8px;
}

.char-stats-panel .buttons {
	padding: 12px;
}

.char-stats-panel .btn-start {
	display: block;
	width: 100%;
	padding: 12px;
	font-family: 'Cinzel', serif;
	font-size: 1.5rem;
	font-weight: bold;
	color: #1a1410;
	background: linear-gradient(180deg, #d4af37 0%, #a8892b 50%, #d4af37 100%);
	border: 2px solid #8b7355;
	border-radius: 3px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	text-decoration: none;
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 2px 4px rgba(0, 0, 0, 0.5);
	transition: all 0.2s ease;
	margin-bottom: 8px;
}

.char-stats-panel .btn-start:hover {
	background: linear-gradient(180deg, #e5c349 0%, #b9993c 50%, #e5c349 100%);
	transform: translateY(-1px);
	text-decoration: none;
	color: #1a1410;
}

.char-stats-panel .btn-secondary {
	flex: 1;
	padding: 10px;
	font-family: 'Cinzel', serif;
	font-size: 1.3rem;
	color: #ccc;
	background: linear-gradient(180deg, #3d3d3d 0%, #2a2a2a 50%, #3d3d3d 100%);
	border: 1px solid #555;
	border-radius: 3px;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.2s ease;
}

.char-stats-panel .btn-secondary:hover {
	background: linear-gradient(180deg, #4d4d4d 0%, #3a3a3a 50%, #4d4d4d 100%);
}

.char-stats-panel .btn-row {
	display: flex;
	gap: 8px;
}

.char-carousel-container {
	position: absolute;
	left: calc(280px + (100% - 280px) / 2);
	top: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.char-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.char-character-card {
	position: absolute;
	width: 432px;
	height: 648px;
	cursor: pointer;
	transition: all 0.5s ease;
	overflow: hidden;
	user-select: none;
	background: transparent;
	border: none;
}

.char-character-card.active {
	z-index: 10;
}

.char-character-card .character-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.char-character-card .character-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
	transition: all 0.3s ease;
}

.char-character-card:not(.active) .character-image img {
	filter: brightness(0.6) drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.char-character-card:not(.active):hover .character-image img {
	filter: brightness(0.9) drop-shadow(0 0 15px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

.char-name-display {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.char-name-display h2 {
	font-size: 2rem;
	color: #d4af37;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	letter-spacing: 5px;
	text-transform: uppercase;
	margin: 0;
}

.char-nav-buttons {
	position: absolute;
	bottom: 100px;
	left: 63%;
	transform: translateX(-50%);
	display: flex;
	gap: 100px;
	z-index: 30;
}

@keyframes navBtnBreathing {
0%, 100% {
transform: scale(1);
filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}
50% {
transform: scale(1.12);
filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.8));
}
}

.nav-btn {
	width: 150px;
	height: auto;
	cursor: pointer;
	transition: all 0.3s ease;
	filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
	animation: navBtnBreathing 2s ease-in-out infinite;
}

.nav-btn:hover {
	transform: scale(1.2);
	filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
	animation: none;
}

.nav-btn:active {
	transform: scale(0.95);
	animation: none;
}


@media screen and (max-width: 1400px) {
.char-side-bar-left,
.char-side-bar-right {
width: 50px;
}
}
@media screen and (max-width: 1200px) {
.char-side-bar-left,
.char-side-bar-right {
	width: 40px;
}

.char-carousel-container {
	left: calc(260px + (100% - 260px) / 2);
}

.char-character-card {
	width: 360px;
	height: 540px;
}
}
@media screen and (max-width: 1000px) {
.char-side-bar-left,
.char-side-bar-right {
	width: 30px;
}

.char-side-bar-left::after,
.char-side-bar-right::after {
	display: none;
}

.char-stats-panel {
	width: 200px;
	left: 10px;
}

.char-carousel-container {
	left: calc(220px + (100% - 220px) / 2);
}

.char-character-card {
	width: 312px;
	height: 468px;
}

.char-name-display h2 {
	font-size: 1.5rem;
}
@media screen and (max-width: 800px) {
.char-side-bar-left,
.char-side-bar-right {
	width: 20px;
}

.char-stats-panel {
	width: 180px;
	left: 5px;
	font-size: 0.85rem;
}

.char-stats-panel .char-header {
	padding: 10px;
}

.char-stats-panel .chinese-symbol {
	font-size: 1.8rem;
}

.char-stats-panel .character-name {
	font-size: 0.9rem;
}

.char-carousel-container {
	left: calc(190px + (100% - 190px) / 2);
	width: 480px;
	height: 480px;
}

.char-character-card {
	width: 264px;
	height: 396px;
}

.char-bottom-hint {
	bottom: 60px;
	font-size: 0.7rem;
}

.char-name-display {
	bottom: 20px;
}

.char-name-display h2 {
	font-size: 1.2rem;
}
}
@media screen and (max-width: 600px) {
.char-side-bar-left,
.char-side-bar-right {
	display: none;
}

.char-page-wrapper {
	min-height: auto;
}

.char-content-frame {
	aspect-ratio: auto;
	overflow: visible;
	min-height: auto;
	padding-bottom: 10px;
	display: flex;
	flex-direction: column;
}

.char-main-container {
	position: relative;
	flex-direction: column;
	min-height: auto;
	padding: 10px 5px;
	padding-top: 10px;
	display: flex;
	align-items: center;
}

.char-stats-panel {
	position: relative;
	left: auto;
	transform: none;
	top: auto;
	bottom: auto;
	width: 92%;
	max-width: 340px;
	z-index: 20;
	font-size: 0.75rem;
	border-radius: 5px;
	margin: 10px auto 0;
	order: 2;
}

.char-stats-panel .char-header {
	padding: 10px;
}

.char-stats-panel .chinese-symbol {
	font-size: 1.8rem;
}

.char-stats-panel .character-name {
	font-size: 1rem;
	letter-spacing: 1px;
}

.char-stats-panel .char-info-box {
	padding: 8px 12px;
}

.char-stats-panel .char-avatar {
	width: 40px;
	height: 40px;
}

.char-stats-panel .char-kingdom {
	font-size: 1rem;
}

.char-stats-panel .char-guild {
	font-size: 0.85rem;
}

.char-stats-panel .char-stats-info {
	padding: 8px 12px;
}

.char-stats-panel .stat-row {
	font-size: 0.9rem;
	padding: 3px 0;
}

.char-stats-panel .stats {
	padding: 8px 12px;
}

.char-stats-panel .stat {
	margin-bottom: 6px;
}

.char-stats-panel .stat-label {
	font-size: 0.9rem;
	width: 35px;
}

.char-stats-panel .stat-bar {
	height: 12px;
}

.char-stats-panel .stat-value {
	font-size: 0.9rem;
	width: 30px;
}

.char-stats-panel .buttons {
	padding: 10px 12px;
}

.char-stats-panel .btn-start {
	padding: 12px;
	font-size: 1rem;
}

.char-stats-panel .btn-secondary {
	padding: 10px;
	font-size: 0.9rem;
}

.char-carousel-container {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	width: 100%;
	height: 350px;
	margin: 0 auto;
	order: 1;
}

.char-character-card {
	width: 200px;
	height: 300px;
}

.char-character-card.active {
	width: 220px;
	height: 330px;
}

.char-name-display {
	bottom: 5px;
}

.char-name-display h2 {
	font-size: 1rem;
	letter-spacing: 2px;
}

.char-nav-buttons {
	position: relative;
	bottom: auto;
	left: auto;
	transform: none;
	margin: 5px auto;
	gap: 50px;
	order: 3;
	display: flex;
	justify-content: center;
}

.nav-btn {
	width: 80px;
}
}
