/* General */
:root {
  /* Fonts*/
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Roboto", sans-serif;
  --third-font: "Playfair Display", sans-serif;
  --fourth-font: "Montserrat", sans-serif;
  --game-1-font: "Audiowide", sans-serif;
  --game-2-font: "Abel", sans-serif;

  /* Colors */
  --primary: #0060fe;
  --gold: #ffb830;
  --dark: #0b0c1b;
  --semi-dark: #1a1b2e;
  --semi-dark-2: #212235;
  --text-gray: #9193a8;
  --red: #ec625f;
  --border: #e2e9ee;
  --light: #f4f8fb;
  /* 84B3FF */
}
:root .light-theme {
  --text-gray: #001033;
}
:root .light-theme .theme-footer {
  --text-gray: #9193a8;
}

html {
  font-family: var(--secondary-font);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  cursor: default;
  background-color: var(--dark);
}
body.light-theme {
  background-color: #ecf4fa;
}
/*------------------------------------------------------*/

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  height: 54px;
  line-height: 1;
  padding: 0 36px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--secondary-font);
  transition: box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}
.btn-product {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  height: 46px;
  line-height: 1;
  padding: 0 25px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--secondary-font);
  bottom: 10px;
  margin-left: 12px;
}
/* btn-sm */
.btn-sm {
  height: 48px;
  padding: 0 24px;
  font-size: 14px;
}

/* btn-rounded */
.btn-rounded {
  border-radius: 50px;
}

/* Whmcs-login */
.whmcs_login:hover {
  cursor: pointer;
}
#login-button:disabled {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    border-color: #ccc !important;
    opacity: 0.7;
}



/* fill-primary */
.btn-fill-primary {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.btn-fill-primary:hover {
  background-color: #003bdf;
  border-color: #003bdf;
}
.out-of-stock {
  background-color: #a2a2a2 !important;
  color: #fff;
  border: 1px solid #a2a2a2 !important;
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
  cursor: default;
}

/* fill-warning */
.btn-fill-warning {
  background-color: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.btn-fill-warning:hover {
  background-color: #d2962a;
  border-color: #d2962a;
}

/* outline-dark */
.btn-outline-dark {
  background-color: var(--semi-dark);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 20px -15px rgba(0, 106, 255, 0.5);
}
.btn-outline-dark.level-up {
  background-color: rgba(255, 255, 255, 0.03);
}
.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.light-theme .btn-outline-dark {
  background-color: var(--light);
  border-color: var(--border);
  color: var(--dark);
}
.light-theme .btn-outline-dark:hover {
  background-color: var(--border);
}

/* fill-success */
.btn-fill-success {
  background-color: #15cd72;
  color: #fff;
  border: 1px solid #15cd72;
  box-shadow: 0 22px 20px -15px rgba(21, 205, 113, 0.5);
}
.btn-fill-success:hover {
  background-color: #13b966;
  border-color: #13b966;
}

/* btn-icon */
.btn-icon {
  margin-right: 10px;
  width: 20px;
}
.btn-icon.right-icon {
  margin-right: unset;
  margin-left: 10px;
}

/* btn-circle */
.btn.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  padding: 0;
  border-radius: 50%;
}
.btn.btn-circle .btn-icon {
  margin: 0 !important;
  width: 30px;
}
.btn.btn-circle.btn-lg {
  height: 64px;
  width: 64px;
}

/* shadow-off */
.btn.shadow-off {
  box-shadow: unset !important;
}

/* hover */
.btn:hover {
  box-shadow: none;
}

@media only screen and (max-width: 1199px) {
  .btn {
    font-size: 14px;
    height: 46px;
    padding: 0 26px;
  }
}
/*------------------------------------------------------*/

/* Backgrounds & Colors */
.bg-2 {
  background-color: #141526;
}
.light-theme .bg-2 {
  position: relative;
  background-color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 1;
}
.primary-color {
  color: var(--primary);
}
/*------------------------------------------------------*/

/* Section head */
.se-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 75px;
}
.se-head .se-title-1 {
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.se-head .se-title-2 {
  font-family: var(--third-font);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}
.se-head .se-title-3 {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  color: #8c99af;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: -60px;
}
.testUrl {
  color: #0060fe !important;
}
.testBorder {
  border: 1px dashed #36385c;
  padding: 16px;
  margin: 120px;
}

/* game-se-head */
.se-head.game-se-head .se-title-1 {
  font-family: var(--game-1-font);
  color: var(--gold);
}
.se-head.game-se-head .se-title-2 {
  font-family: var(--game-1-font);
  text-transform: uppercase;
}
.se-head.game-se-head .se-para {
  font-size: 24px;
  font-family: var(--game-2-font);
  color: var(--text-gray);
  line-height: 1.4;
}

.light-theme .se-head .se-title-2 {
  color: var(--dark);
}
@media only screen and (max-width: 1199.98px) {
  .se-head .se-title-2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-head .se-title-2 {
    font-size: 26px;
  }
  .se-head.game-se-head .se-para {
    font-size: 20px;
  }
}

/*------------------------------------------------------*/
/* Support Footer Row */
.support-footer {
  background: #127fc3;
  padding: 30px 0px;
  overflow: hidden; /* Prevents floating issues */
}

.support-footer h3 {
  float: left;
  color: #fff;
  line-height: 50px;
  font-family: "proxima_nova_softmedium", sans-serif;
  font-size: 22px;
}

.support-footer ul {
  float: right;
}

.support-footer ul li {
  float: left;
  padding-left: 40px;
  color: #cfedff;
  line-height: 50px;
  list-style-type: none;
}

.support-footer ul li img {
  float: left;
  margin-right: 12px;
  opacity: 0.74;
}

.support-footer a {
  color: #cfedff;
  display: inline-block; /* Use inline-block to keep inline elements */
}

.support-footer a:hover {
  color: #fff;
  text-decoration: none;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.22);
}

.support-footer a:hover img {
  opacity: 1;
}

.phone-item div {
  display: inline-block; /* Ensure the phone number stays inline */
}

.phone-item {
  line-height: 50px !important; /* Adjusted line-height to match others */
  white-space: nowrap; /* Prevents text from wrapping */
}
