*{
  margin: 0;padding: 0;box-sizing: border-box;
  font-family: "Bebas Neue"; font-family: 'TheJamsil5Bold';
  
  /* font-family: 'Pretendard-Regular'; */
}
body{background-color: #000000;}
.main-visual {position: relative;
  height: 100vh;
  overflow: hidden;
  transition: height 0.5s ease;
  margin-top: 1rem;
}

#mainVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
#mainVideo::after{width: 100%; height: 100%; background-color: rgb(0, 0, 0); z-index: 1000000;}

.navbar {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  background-color: #000000;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: top 0.3s ease;
}

.navbar.show {
  top: 0;
}

.navbar ul{display: flex;justify-content: space-around;}
.navbar li{margin-top: 4px;}
.navbar li a{text-decoration: none;color:rgb(255, 200, 0);font-size: 24px;}

.navbar li a:hover{color: white;}

.main-title{color: rgb(255, 200, 0);position: absolute;font-size: 80px;top: 40%; left:20%}

.blackbombat{position: absolute;color: rgb(255, 255, 255);top: 60%;left: calc(39%); font-size: 50px;}
.scroll{
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgb(255, 200, 0);
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgb(255, 200, 0);
  border-bottom: 2px solid rgb(255, 200, 0);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

#mid-visual {
  background-color: #000000;
  margin-top: 140px;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  margin-top: 40px;
  height: 500px;
  text-align: center;
  font-size: 18px;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#mid {
  background-color: #fff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

#fighterImage {
  transition: .5s;
  cursor: pointer;
  width: 400px;
  height: 400px;
}

#fighterImage2 {
  transition: .5s;
  cursor: pointer;
  width: 400px;
  height: 400px;
}

.fight-card-all {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.fight-card-user {
  height: 250px;
}

.vs {
  font-size: 80px;
  height: 100px;
  margin-top: 100px;
  color: white;
}

.name1 {
  font-size: 40px;
  color: white;
}

.win {
  margin-top: 20px;
  color: #ffffff63;
}

.boo {
  color: white;
}

.fly {
  background-color: #333;
  color: white;
  margin-top: 100px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0;
}

.modal-content {
  background-color: #000;
  margin: 0 auto;
  border: 3px solid white;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: fixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 450px;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

.close:hover {
  color: rgb(255, 200, 0);
}

.modal img {
  position: absolute;
  right: 30px;
  top: 80px;
  width: 300px;
  height: 400px;
  object-fit: contain;
}

.modal > .user-profil {
  position: absolute;
  left: 30px;
  top: 80px;
  color: white;
  line-height: 2;
  max-width: 400px;
}

.modal > .user-profil > a {
  color: white;
}

.modal > .user-hw {
  position: absolute;
  left: 30px;
  top: 280px;
  color: rgb(255, 200, 0);
  width: 400px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.modal > .user-hw2 {
  position: absolute;
  left: 30px;
  top: 320px;
  color: white;
  width: 400px;
  display: flex;
  justify-content: space-between;
  font-size: 32px;
}

.modal2 {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0;
}

.modal-content2 {
  background-color: #000;
  margin: 0 auto;
  border: 3px solid white;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: fixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 450px;
}

.close2 {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

.close2:hover {
  color: rgb(255, 200, 0);
}

.modal2 img {
  position: absolute;
  right: 30px;
  top: 80px;
  width: 300px;
  height: 400px;
  object-fit: contain;
}

.modal2 > .user-profil2 {
  position: absolute;
  left: 30px;
  top: 80px;
  color: white;
  line-height: 2;
  max-width: 400px;
}

.modal2 > .user-profil2 > a {
  color: white;
}

.modal2 > .user-hw3 {
  position: absolute;
  left: 30px;
  top: 280px;
  color: rgb(255, 200, 0);
  width: 400px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.modal2 > .user-hw4 {
  position: absolute;
  left: 30px;
  top: 320px;
  color: white;
  width: 400px;
  display: flex;
  justify-content: space-between;
  font-size: 32px;
}

.madal-wl, .madal-wl2 {
  position: absolute;
  left: 30px;
  top: 380px;
  display: flex;
  gap: 30px;
}

.record-item {
  text-align: center;
}

.record-item .number {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: rgb(255, 200, 0);
}

.record-item .label {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.sungboo-bar {
  display: flex;
  background-color: #333;
  width: 500px;
  margin-top: 10px;
}

.sungboo-bar .left {
  width: 20%;
  background-color: rgb(255, 255, 255);
  text-align: left;
  padding: 5px;
}

.sungboo-bar .right {
  width: 80%;
  background-color: rgb(60, 60, 60);
  text-align: right;
  padding: 5px;
  color: white;
}

/* 투표 기능 스타일 */
.vote-section {
  margin-top: 20px;
  text-align: center;
}

.vote-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.vote-btn {
  background-color: rgb(255, 200, 0);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vote-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

.vote-btn:active {
  transform: translateY(0);
}

.vote-btn.voted {
  background-color: #4CAF50;
  color: white;
  pointer-events: none;
}

.vote-btn.voted:hover {
  background-color: #4CAF50;
  transform: none;
}

.vote-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.vote-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fighter-name {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.vote-percentage {
  color: rgb(255, 200, 0);
  font-weight: bold;
  font-size: 18px;
  min-width: 50px;
  text-align: center;
}

/* 투표 애니메이션 */
@keyframes votePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.vote-btn.voting {
  animation: votePulse 0.3s ease;
}

/* 투표 완료 메시지 */
.vote-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 200, 0);
  color: #000;
  padding: 20px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  z-index: 10000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vote-message.show {
  opacity: 1;
}

.fighter-stats {
  margin: 30px 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

.stat-row:first-child {
  color: rgb(255, 200, 0);
  font-size: 14px;
  font-weight: bold;
}

.stat-row:last-child {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.record {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.fighter-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fighter-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

#mainevent{background-color: #000000;}

.mySwiper2 .swiper-slide img{width: 70%;height: 100%;object-fit:cover; }
.mySwiper2 .swiper-slide img:hover{transform: translateY(-10px);transition: .6s;}
.mySwiper2 .swiper-slide{ display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .mianevent-title{margin-top: 140px;}
}

#new-fighter{overflow: hidden;position: relative;margin-top: 40px;}

#new-fighter video{height:60%;margin-top: 50px;}

.new-fighter-warp{
  position: absolute;
  display: flex;
  gap: 120px;
  justify-content: center;
  width: 100%;
}

.new-fighter-warp:first-of-type {
  top: 290px;
}

.new-fighter-warp.second-row {
  top: 850px;
}

.fighter-img{
  text-align: center;
  color: white;
  font-size: 20px;
  line-height: 4;
}

.fighter-img img {
  width: 300px;
  height: 400px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fighter-img img:hover {
  transform: scale(1.05);
}

.fighter-img p {
  margin-top: 15px;
  font-size: 24px;
  color: rgb(255, 200, 0);
}

#dd{}

#mainevent .swiper,
#mid-visual .swiper,
.gym-grid,
.carousel-container {
  margin-top: 40px;
}

#mainevent,
#mid-visual,
#new-fighter,
#goods,
#gym,
#brand-slide {
  margin-bottom: 80px;
}

#brand-slide {
  margin-bottom: 0;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@굿즈@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.goods-title{text-align: center;font-size: 40px;padding-top: 40px;color: rgb(255, 200, 0);}
#goods {
  padding: 40px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 236px);
  gap: 30px 20px;
  margin: 0 auto;
  justify-content: center;
}

.product {
  text-align: center;
}

.card {
  width: 236px;
  height: 236px;
  perspective: 1000px;
  margin: 0 auto;
}

.inner-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .inner-card {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  transform: rotateY(180deg);
}

.product-name {
  margin-top: 10px;
  font-size: 16px;
  color: #fdfdfd;}

/* @@@@@@@@@@@@@@@@@@@@@@스폰서@@@@@@@@@@@@@2 */

#sponsor {
    display: none;
}

#brand-slide {
    background-color: #000000;
    padding: 20px 0;
}

.carousel-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: none;
    display: block;
    margin: 0 auto;
}

footer{background-color: #E5A730; padding: 20px 0;}
.footer_inner{display: flex; width: 90%; margin: auto;}
.footer-text{color: white;width: 100%;font-size: 15px; line-height: 25px;}
.sns{width: 100%; text-align: right; display: flex; flex-direction: column; justify-content: center;}
.sns-icon{font-size: 30px;}
.sns-icon i{color: #fff;}

/* 장바구니 관련 스타일 */
.product-price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  color: rgb(255, 200, 0);
}

.add-to-cart-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: rgb(255, 200, 0);
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* 장바구니 내비게이션 아이템 스타일 */
.cart-nav-item {
  margin-left: 20px;
}

.cart-icon {
  position: relative;
  background-color: rgb(255, 200, 0);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.cart-icon i {
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* 장바구니 모달 */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.cart-content {
  background-color: #000;
  margin: 5% auto;
  padding: 0;
  border: 2px solid rgb(255, 200, 0);
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgb(255, 200, 0);
  background-color: #111;
}

.cart-header h2 {
  color: rgb(255, 200, 0);
  margin: 0;
}

.close-cart {
  color: rgb(255, 200, 0);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: #fff;
}

.cart-items {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 5px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}

.cart-item-price {
  color: rgb(255, 200, 0);
  font-weight: bold;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
}

.quantity-btn {
  background-color: rgb(255, 200, 0);
  color: #000;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background-color: #fff;
}

.quantity-display {
  color: #fff;
  font-weight: bold;
  min-width: 30px;
  text-align: center;
}

.cart-item-total {
  color: rgb(255, 200, 0);
  font-weight: bold;
  font-size: 16px;
  min-width: 80px;
  text-align: right;
}

.remove-item {
  background-color: #ff4444;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.remove-item:hover {
  background-color: #cc0000;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid rgb(255, 200, 0);
  background-color: #111;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #000;
  border: 1px solid rgb(255, 200, 0);
  border-radius: 5px;
}

.cart-total span:first-child {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.cart-total span:last-child {
  color: rgb(255, 200, 0);
  font-size: 24px;
  font-weight: bold;
}

.cart-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.clear-cart-btn, .checkout-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.clear-cart-btn {
  background-color: #666;
  color: white;
}

.clear-cart-btn:hover {
  background-color: #999;
}

.checkout-btn {
  background-color: rgb(255, 200, 0);
  color: #000;
}

.checkout-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

/* 빈 장바구니 메시지 */
.empty-cart-message {
  text-align: center;
  color: #666;
  padding: 40px;
  font-size: 18px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .cart-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .cart-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .cart-item-quantity {
    margin: 10px 0;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-icon {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }
  
  .cart-icon i {
    font-size: 20px;
  }
}

/* 작은 내비게이션 스타일 */
.mini-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.mini-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mini-nav li {
    text-align: center;
}

.mini-nav a {
    color: rgb(255, 200, 0);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    display: block;
}

.mini-nav a:hover {
    color: white;
}

#sponsor {
    background-color: #000000;
    padding: 40px 0;
}

.mySwiper3 {
    width: 100%;
    padding: 40px 0;
}

.mySwiper3 .swiper-slide {
    text-align: center;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper3 .swiper-slide img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.mySwiper3 .swiper-pagination-bullet {
    background: rgb(255, 200, 0);
}

.mySwiper3 .swiper-pagination-bullet-active {
    background: white;
}

/* FIGHT CARD 스와이퍼 버튼 스타일 */
.swiper-button-next,
.swiper-button-prev {
  color: rgb(255, 200, 0) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: white !important;
}

/* GYM 섹션 */
#gym {
  background-color: #000000;
  padding: 60px 0;
  text-align: center;
}

.gym-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gym-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(255, 200, 0, 0.2);
  transition: transform 0.3s ease;
}

.gym-image:hover {
  transform: scale(1.05);
}

/* 섹션 타이틀 공통 스타일 */
.mianevent-title,
.uer-swiper-title,
.gym-title,
.brand-title,
.goods-title {
  text-align: center;
  font-size: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: rgb(255, 200, 0);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* 각 섹션별 컨텐츠 상단 여백 통일 */
#mainevent .swiper,
#mid-visual .swiper,
.gym-grid,
.carousel-container {
  margin-top: 40px;
}

/* 섹션 간격 통일 */
#mainevent,
#mid-visual,
#new-fighter,
#goods,
#gym,
#brand-slide {
  margin-bottom: 80px;
}

/* 마지막 섹션은 하단 여백 제거 */
#brand-slide {
  margin-bottom: 0;
}

.modal3 {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 238px;
  width: 100%;
  height: 70%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  color: white;
}

.modal3-text{}
.modal-content3 {
  margin: auto;
  display: block;
  max-width: 60%;
}

.close3 {
  position: absolute;
  top: 30px;
  right: 45px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.fighter-details {
  display: flex;
  padding: 40px;
  gap: 40px;
}

.fighter-info {
  flex: 1;
  color: white;
}

.fighter-info h2 {
  color: rgb(255, 200, 0);
  font-size: 28px;
  margin-bottom: 20px;
}

.fighter-basic {
  margin-bottom: 20px;
}

.fighter-basic h5 {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 10px;
}

.fighter-basic h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
}

.fighter-basic strong {
  color: rgb(255, 200, 0);
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.fighter-details-info {
  margin-bottom: 25px;
}

.fighter-details-info p {
  margin: 8px 0;
  font-size: 16px;
}

.fighter-details-info .label {
  color: rgb(255, 200, 0);
  font-weight: bold;
  margin-right: 10px;
}

.fighter-details-info a {
  color: rgb(255, 200, 0);
  text-decoration: none;
  font-size: 16px;
}

.fighter-details-info a:hover {
  text-decoration: underline;
}

.fighter-stats {
  margin-bottom: 25px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

.stat-row:first-child {
  color: rgb(255, 200, 0);
  font-size: 14px;
  font-weight: bold;
}

.stat-row:last-child {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.fighter-record h4 {
  color: rgb(255, 200, 0);
  font-size: 20px;
  margin-bottom: 15px;
}

.record-items {
  display: flex;
  gap: 30px;
}

.fighter-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fighter-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}