@font-face {
  font-family: "PretendardBold";
  src: url("/fonts/Pretendard-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "PretendardSemiBold";
  src: url("/fonts/Pretendard-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "PretendardMedium";
  src: url("/fonts/Pretendard-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "PretendardRegular";
  src: url("/fonts/Pretendard-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "PretendardLight";
  src: url("/fonts/Pretendard-Light.woff2") format("woff2");
}

button {
  cursor: pointer;
}

.font-pretendard-bold {
  font-family: "PretendardBold", "sans-serif";
}
.font-pretendard-semibold {
  font-family: "PretendardSemiBold", "sans-serif";
}
.font-pretendard-medium {
  font-family: "PretendardMedium", "sans-serif";
}
.font-pretendard-regular {
  font-family: "PretendardRegular", "sans-serif";
}
.font-pretendard-light {
  font-family: "PretendardLight", "sans-serif";
}

.casino-card {
  position: relative;
  transition: all 0.3s ease;
}

/* Background images transition */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.bg-image-1 {
  opacity: 1;
}

.bg-image-2 {
  opacity: 0;
}

/* .casino-card:hover .bg-image-1 {
  opacity: 0;
  filter: contrast(0.8);
} */

/* .casino-card:hover .bg-image-2 {
  opacity: 1;
} */

/* Woman image animation */
.woman-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.9);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  filter: drop-shadow(rgba(0, 0, 0, .3) 10px 14px 0);
}

.casino-card:hover .woman-image {
  transform: scale(1.05);
}

/* Logo animation */
.logo-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 24px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.casino-card:hover .logo-container {
  opacity: 0;
}

.logo-image {
  max-height: 4rem;
  max-width: 10rem;
  width: max-content;
  height: max-content;
  transition: transform 0.3s ease;
  filter: drop-shadow(rgba(0, 0, 0, .6) 2px 2px 0px);
}

.logo-text {
  filter: drop-shadow(rgba(0, 0, 0, .6) 2px 2px 0px);
}

.casino-card:hover .logo-image {
  transform: scale(0.8);
}

/* Button container animation */
.button-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover .button-container {
  opacity: 1;
}

.button-wrapper {
  width: 66.666667%;
  transform: translateY(120px) translateZ(0px);
  transition: transform 0.3s ease;
}

.casino-card:hover .button-wrapper {
  transform: none;
}

/* Button style */
.button-type1 {
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 9999px;
  background-color: #febf04;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.button-type1:hover {
  background-color: #ffd24a;
}

.marquee-outer {
  width: 100%;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  width: 100%;
  position: relative;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee var(--duration, 10s) linear infinite;
}

@keyframes marquee {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(calc(-100% - var(--gap, 50px)));
}
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.marquee-content + .marquee-content {
  margin-left: var(--gap, 50px);
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}

.slide-animation-enter {
  animation: slideIn 250ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.slide-animation-exit {
  animation: slideOut 250ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.section-hidden {
  display: none !important;
}

.section-visible {
  display: flex !important;
}

.hide-scrollbar {
  overflow: hidden !important;
}

.position-absolute {
    position: absolute
}

.modal-content {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    position: relative;
    outline: 0;
    padding: 1px
}

.bg-popup-bottom-yellow2,.bg-popup-yellow2 {
    background: #fdbe04 !important
}

.modal-header {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.btn.btn-inverse {
    color: #fff;
    background: #222222;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding-inline: 6px;
    cursor: pointer
}