@import url("assets/css/header.css");
@import url("assets/css/home.css");
@import url("assets/css/promotions.css");
@import url("assets/css/games.css");
@import url("assets/css/careers.css");
@import url("assets/css/contact.css");
@import url("assets/css/single-promotion.css");
@import url("assets/css/single-club.css");
@import url("assets/css/footer.css");

/* Custom CSS Variables  */
/* Install "CSS Variable Autocomplete" extension for VSCode to get autocomplete */
:root {
  /* Colors */
  --primary: #ecbe28;
  --secondary: #1e2949;
  --background: #0f0d26;
  /*
    NAME: Tertiary Color
    DESCRIPTION: This CSS variable defines the tertiary color (#0c162a) which can be used as a background color for various details in the theme.
  */
  --tertiary: #0c162a;

  /* Typography */
  --font-size-xxs: 0.625rem;
  /* 10px */
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-small: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-md: 1.125rem;
  /* 18px */
  --font-size-lg: 1.5rem;
  /* 24px */
  --font-size-xl: 2rem;
  /* 32px */
  --font-size-2xl: 2.5rem;
  /* 40px */
  --font-size-3xl: 3rem;
  /* 48px */
  --font-size-4xl: 4rem;
  /* 64px */
  --font-size-5xl: 5rem;
  /* 80px */
  --font-size-6xl: 6rem;
  /* 96px */
  --font-size-7xl: 7rem;
  /* 112px */
  --font-size-8xl: 8rem;
  /* 128px */
  --font-size-9xl: 9rem;
  /* 144px */
  --font-size-10xl: 10rem;
  /* 160px */

  /* Spacing */
  --spacing-xxs: 0.25rem;
  /* 4px */
  --spacing-xs: 0.5rem;
  /* 8px */
  --spacing-sm: 0.75rem;
  /* 12px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 2.5rem;
  /* 40px */
  --spacing-3xl: 3rem;
  /* 48px */
  --spacing-4xl: 4rem;
  /* 64px */
  --spacing-5xl: 5rem;
  /* 80px */
  --spacing-6xl: 6rem;
  /* 96px */
  --spacing-7xl: 7rem;
  /* 112px */
  --spacing-8xl: 8rem;
  /* 128px */
  --spacing-9xl: 9rem;
  /* 144px */
  --spacing-10xl: 10rem;
  /* 160px */
  --spacing-11xl: 11rem;
  /* 176px */
  --spacing-12xl: 12rem;
  /* 192px */
  --spacing-13xl: 13rem;
  /* 208px */
  --spacing-14xl: 14rem;
  /* 224px */
  --spacing-15xl: 15rem;
  /* 240px */

  /* Border Radius */
  --border-radius-xxs: 0.125rem;
  /* 2px */
  --border-radius-xs: 0.1875rem;
  /* 3px */
  --border-radius-sm: 0.25rem;
  /* 4px */
  --border-radius-md: 0.5rem;
  /* 8px */
  --border-radius-lg: 1rem;
  /* 16px */
  --border-radius-xl: 1.5rem;
  /* 24px */
  --border-radius-2xl: 2rem;
  /* 32px */
  --border-radius-3xl: 2.5rem;
  /* 40px */
  --border-radius-full: 50%;
  /* Fully rounded (e.g., for circular shapes) */

  /* Widths */
  --w-xxs: 7.5rem;
  /* 120px */
  --w-xs: 10rem;
  /* 160px */
  --w-sm: 15rem;
  /* 240px */
  --w-md: 20rem;
  /* 320px */
  --w-lg: 30rem;
  /* 480px */
  --w-xl: 40rem;
  /* 640px */
  --w-2xl: 60rem;
  /* 960px */
  --w-3xl: 80rem;
  /* 1280px */
  --w-full: 100%;
  /* Full width */
  --w-screen: 100vw;
  /* Full viewport width */
  /* Heights */
  --h-xxs: 7.5rem;
  /* 120px */
  --h-xs: 10rem;
  /* 160px */
  --h-sm: 15rem;
  /* 240px */
  --h-md: 20rem;
  /* 320px */
  --h-lg: 30rem;
  /* 480px */
  --h-xl: 40rem;
  /* 640px */
  --h-2xl: 60rem;
  /* 960px */
  --h-3xl: 80rem;
  /* 1280px */
  --h-full: 100%;
  /* Full height */
  --h-screen: 100vh;
  /* Full viewport height */
  --h-header: 85px;
  /* Header height */
}

html {
  background: #090d1c;
}

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

main {
  max-width: inherit;
}

body {
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin: 0 auto !important;
  max-width: 2560px;
  padding: 0;
  background-image: url("assets/images/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
  color: white !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--spacing-md) 0;
}

h1 {
  font-size: var(--font-size-xl);
}

h2 {
  font-size: var(--font-size-large);
}

.heading {
  font-size: var(--font-size-3xl);
  font-weight: bold;
  margin-bottom: var(--spacing-2xl);
  text-align: center;
  color: var(--primary);
}

.card {
  min-height: var(--h-lg);
  max-height: var(--h-xl);
  max-width: var(--w-lg);
  width: var(--w-full);
  background: linear-gradient(331deg,
      rgba(30, 41, 73, 0.52) 16.81%,
      rgba(72, 98, 175, 0.47) 135.95%) !important;
  border-radius: var(--border-radius-2xl) !important;
  padding: var(--spacing-lg) var(--spacing-md);
}

.card .card-img-top {
  border-radius: var(--border-radius-lg) !important;
  width: var(--w-full);
  height: var(--h-md);
  object-fit: cover;
}

.card .card-body {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--w-full);
}

.card .card-body .card-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.card .card-body .card-text {
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card .card-body .card-btn {
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.card .card-body .card-btn:hover {
  background-color: var(--secondary);
}

.cardClub {
  --primary-30: rgba(236, 190, 40, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: var(--h-full);
  min-height: var(--h-xl);
  max-width: var(--w-lg);
  width: var(--w-full);
  background: linear-gradient(331deg,
      rgba(30, 41, 73, 0.52) 16.81%,
      rgba(72, 98, 175, 0.47) 135.95%) !important;
  border-radius: var(--border-radius-2xl) !important;
  padding: var(--spacing-lg) var(--spacing-md);
  border: 1px solid var(--primary-30);
}

.cardClub .card-img-top {
  border-radius: var(--border-radius-lg) !important;
  width: var(--w-full);
  max-width: var(--w-lg);
  height: var(--h-md);
  object-fit: cover;

}

.cardClub .card-body {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--w-full);
  text-align: center;
}

.cardClub .card-body .card-title {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
}

.cardClub .card-body {
  font-size: var(--font-size-base);
}

.cardClub .card-body strong {
  color: var(--primary);
}

.cardClub .card-body .card-details {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--spacing-3xl);
}

.cardClub .card-body .card-details p {
  background-color: var(--tertiary);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
}

.cardClub .card-body .card-btn {
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cardClub .card-body .card-btn:hover {
  background-color: var(--secondary);
}

.cardGames {
  border-radius: var(--border-radius-lg);
  max-width: var(--w-lg);
  overflow: hidden;
  width: var(--w-full);
  max-height: var(--h-lg);
  height: var(--h-full);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.cardGames .card-title {
  width: 100%;
  position: absolute;
  height: 40px;
  bottom: -10px;
  font-size: var(--font-size-lg);
  background-color: rgba(12, 22, 42, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cardClub {
    max-width: var(--w-md);
    padding: var(--spacing-md) var(--spacing-sm);
    min-height: auto;
  }

  .cardClub .card-body {
    align-items: center;
  }

  .cardClub .card-body .card-details {
    flex-direction: column;
  }


  .cardClub .card-img-top {
    height: var(--h-sm);

  }

  .cardClub .card-body .card-title {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
  }

  .cardClub .card-body {
    font-size: var(--font-size-sm);
  }

  .cardClub .card-body .card-details {
    /* Remove or minimize spacing */
    gap: var(--spacing-xs);
    flex-direction: column;
  }

  .cardClub .card-body .card-details p {
    padding: var(--spacing-xs);
    font-size: var(--font-size-xs);
  }

  .cardClub .card-body .card-btn {
    padding: var(--spacing-sm);
    font-size: var(--font-size-sm);
    letter-spacing: 0;
    width: fit-content;
  }

  .card {
    max-width: var(--w-md);
    padding: var(--spacing-md) var(--spacing-sm);
    min-height: auto;
  }

  .card .card-body {
    align-items: center;
    font-size: var(--font-size-sm);
  }

  .card .card-img-top {
    height: var(--h-sm);
    object-fit: contain !important;
  }

  .card .card-body .card-title {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
  }

  .card .card-body .card-text {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
  }

  .card .card-body .card-btn {
    padding: var(--spacing-sm);
    font-size: var(--font-size-sm);
    letter-spacing: 0;
    width: fit-content;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary) !important;
}

.decorated-text {
  width: var(--w-full);
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.decorated-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: radial-gradient(circle,
      rgba(236, 190, 40, 1) 25%,
      rgb(99, 81, 22) 40%,
      rgba(0, 0, 0, 1) 105%);
}

.page-default-heading {
  padding: var(--spacing-7xl) 0;
  min-height: var(--h-screen);
  display: block;
  text-align: center;
}

@media (width < 768px) {
  .page-default-heading {
    padding: var(--spacing-7xl) var(--spacing-lg);
  }
}

.cover-shadow {
  position: absolute;
  z-index: 10;
  bottom: -3px;
  height: 213px;
  width: 100%;
  background: linear-gradient(0deg, rgb(0 0 0), rgba(228, 8, 8, 0));
  border: none;
}

/* General Form Styling */
.form-group input,
.form-group textarea {
  background-color: var(--tertiary);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  font-size: 1rem;
}

/* Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,
      255,
      255,
      0.6);
  /* Increased contrast for better visibility */
}

/* Keep background on focus but highlight text */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: var(--tertiary) !important;
  color: white;
  border-color: var(--primary);
}

/* Adjust Label Text */
.form-label {
  display: inline-block;
  text-align: left;
  width: 100%;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  /* Slightly lighter text */
}

/* CV Upload Styling */
.custom-file-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  /* Dashed border only */
  padding: 12px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: left;
  /* Align text to the left */
  transition: all 0.3s ease-in-out;
  width: 100%;
  background: transparent !important;
  /* Remove background color */
}

.custom-file-upload:hover {
  border-color: var(--primary);
}

/* Hide actual input field but keep its functionality */
.custom-file-upload input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Label Styling (File Upload Button) */
.custom-file-upload label {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  /* Align text to the left */
  width: 100%;
  color: white;
  font-size: 1rem;
}

/* File Icon */
.file-icon {
  display: none;
  font-size: 1.2rem;
  color: var(--primary);
}

/* File Name */
.file-name {
  display: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Remove File Button */
.remove-file {
  display: none;
  font-size: 1.2rem;
  color: red;
  cursor: pointer;
  margin-left: 10px;
}

/* Custom Submit Button */
.custom-btn {
  background: var(--primary) !important;
  margin-top: 2.1rem;
  color: white;
  border: none;
  padding: 12px 24px;
  height: 50px;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.custom-btn:hover {
  --hover: #c49f25;
  background: var(--hover) !important;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (width < 768px) {
  .form-group {
    flex-direction: column;
  }

  .custom-btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .custom-file-upload label {
    font-size: 0.9rem;
  }
}

.addtoany_shortcode {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.a2a_kit {
  line-height: 32px;
  width: 80%;
  display: flex !important;
  justify-content: center;
  gap: 40px;
}

.a2a_dd {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .a2a_svg {
    width: 32px !important;
    height: 32px !important;
  }

  .a2a_kit {
    flex-wrap: wrap;
  }
}

#load-more-btn {
  color: white !important;
  border-radius: var(--border-radius-2xl);
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -2px -2px 6px rgba(0, 0, 0, 0.4);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.show-more-btn {
  color: white !important;
  border-radius: var(--border-radius-2xl) !important;
  box-shadow: inset 2px 2px 6px rgba(255, 255, 255, 0.3),
    inset -2px -2px 6px rgba(0, 0, 0, 0.4);
  padding: var(--spacing-md) var(--spacing-lg) !important;
  font-size: var(--font-size-base) !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.swiper-backface-hidden .swiper-slide {
  display: flex;
  justify-content: center;
}