#sc-header {
  background-color: #000000;
  background-image: url("https://i.ibb.co/wF8XJfG1/drakantos-bg-header.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  width: 100%
}

#sc-header h2 {
  font-size: 1.8rem;
  letter-spacing: 0.063rem;
  line-height: 3rem;
  font-weight: 700;
  text-shadow:
    0.2rem 0.4rem 0.2rem rgba(0,0,0,0.8),
    0 0.625rem 1.875rem rgba(0,0,0,0.8),
    0 0.625rem 2.5rem rgba(0,0,0,0.8),
    0 0.625rem 2.5rem rgba(0,0,0,0.8),
    0 0.625rem 2.5rem rgba(0,0,0,0.8),
    0 0.625rem 3.125rem rgba(0,0,0,0.8);
}

#sc-media {
  background-color: #000000;
  background-image: url("https://i.ibb.co/hR4Hjrg8/bg-dungeon.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

#sc-media::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  content: '';
  box-shadow: 
    inset 0 6rem 7rem -4rem rgba(0,0,0,1),
    inset 0 6rem 7rem -4rem rgba(0,0,0,1),
    inset 0 -6rem 7rem -4rem rgba(0,0,0,1),
    inset 0 -6rem 7rem -4rem rgba(0,0,0,1);
}

#sc-media h2 {
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  line-height: 2.7rem;
}

#media-buttons > button > span {
  font-size: 1rem;
  letter-spacing: .125rem;
}

#bg-drakantos-bgs {
  background-image: url("https://i.ibb.co/v6r8t9Xr/d812de425cac2ab1bf3740889628dc99.gif");
  background-color: red;
  background-size: cover;
  background-color: var(--custom-dark-blue);
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 100%;
  height: auto;
  width: 1119px;
  aspect-ratio: auto 1119 / 713;
}

#div-rotate {
  transform: translateX(2rem) skewX(-10deg);
  border-right: 0.5rem solid white;
  z-index: 1;
  background-color: #000;
}

#wingeon-logo-wrap {
  background-color: #000;
  z-index: 2;
  width: 70%;
  height: 70%;
  background-image: url("../img/wingeon-studios-logo.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.row-shadow-wrap::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  box-shadow: 
    inset 0 10rem 7rem -8rem rgba(0,0,0,1),
    inset 0 10rem 7rem -8rem rgba(0,0,0,1),
    inset 0 -10rem 7rem -8rem rgba(0,0,0,1),
    inset 0 -10rem 7rem -8rem rgba(0,0,0,1);
  z-index: 2;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  #sc-media {
    padding: 5.5rem 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  #sc-media {
    padding: 5.5rem 10rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #sc-media {
    padding: 5.5rem 17rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #sc-media {
    padding: 5.5rem 22rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #sc-media {
    padding: 5.5rem 30rem;
  }
}
:root {
  --custom-full-dark: #000000;
  --custom-dark: #0A0A0A;
  --custom-gray-dark: #161616;
  --custom-primary: #6EC1E4;
  --custom-dark-blue: #03080b;
  --navbar-height: 4.5rem;
}

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

html {
  font-size: 16px;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

body {
  background-color: var(--custom-full-dark);
}

main {
  margin-top: var(--navbar-height);
}

#navbar-main {
  min-height: var(--navbar-height);
}

#navbar-main .nav-link {
  font-size: 1.4rem;
}

#navbar-links-wrap {
  margin-right: 3rem;
}

#navbar-links-wrap > .navbar-nav {
  min-height: 48px;
}

.container {
  max-width: 1400px;
}

.bg-c-full-dark {
  background-color: var(--custom-full-dark);
}

.bg-c-dark-transparent {
  background-color: rgba(0,0,0,0.6);
}

.display-5 {
  font-size: 2.4rem;
}

.text-strong-shadow {
  text-shadow:
    0 0.625rem 1.875rem black,
    0 0.625rem 2.5rem black,
    0 0.625rem 3.125rem black;
}

.logo-fade {
  width: 100px;
  opacity: 0;
  transition: all .25s ease-out;
  margin: 0 3rem;
}

.logo-show {
  width: 18.125rem !important;
  opacity: 1;
  transition: all .25s ease-out;
}

.max-h-70vh {
  max-height: 70vh;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 8px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 10px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 12px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  html {
    font-size: 12px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1400px) {
  html {
    font-size: 13px;
  }
}
#sc-careers {
  background-image: url("../img/careers-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 8rem;
}

#table-careers {
  border-collapse: separate;
  border-spacing: 0 0.3rem;
}

#table-careers td, 
#table-careers th {
  border: none !important;
  text-align: center;
}

#table-careers > tbody > tr {
  cursor: pointer;
}

#table-careers > tbody > tr:hover {
  color: gray;
}

#table-careers > tbody > tr:nth-child(even) {
  background-color: rgba(1,2,2,0.7);
}

#table-careers > tbody > tr:nth-child(odd) {
  background-color: rgba(13,13,13,0.7);
}

#table-careers th, #table-careers td {
  font-weight: normal;
}

#table-careers th {
  font-size: 1.2rem;
  padding: 1.2rem 1rem;
  background-color: rgba(1,2,2,0.7);
}

#table-careers td {
  font-size: 1.1rem;
  vertical-align: middle !important;
  padding: 1.2rem 1rem;
}

.cursor-normal {
  cursor: default;
}

pre {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

pre ul, pre ol {
  margin-left: 1.2rem !important;
  line-height: 1.5rem;
}

pre p {
  line-height: 1.5rem;
}

.modal-c-lg {
  max-width: 65rem;
}
.btn-download-red {
  background: rgba(139, 0, 0, 0.4); /* Rojo oscuro con transparencia */
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 0;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(139, 0, 0, 0.5), 0 0 10px rgba(139, 0, 0, 0.3);
  backdrop-filter: blur(1,5px); /* Leve desenfoque del fondo */
  transition: all 0.3s ease-in-out;
}

.btn-download-red:hover {
  box-shadow: 0 0 10px rgba(148, 42, 42, 0.6), 0 0 20px rgba(255, 0, 0, 0.4);
  transform: scale(1.03);
  text-decoration: none;
  color: #fff;
}
#sc-header {
  background-image: url("https://i.ibb.co/wF8XJfG1/drakantos-bg-header.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#game-features {
  font-size: 1.3rem;
  max-width: 80%;
  min-height: 3rem;
}

.feature-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.feature-btn:hover {
  transform: scale(1.2);
}

#feature-text {
  max-width: 20rem;
  text-align: center;
  font-size: 1.2rem;
}
#div-rotate {
  transform: translateX(2rem) skewX(-10deg);
  border-right: 0.5rem solid white;
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.z-index-2 {
  z-index: 2;
  position: relative;
}
.feature-image {
  width: 600px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: opacity 0.4s ease;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#feature-img,
#feature-text {
  transition: opacity 0.3s ease;
}
#game-features {
  max-width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.15);
}

.feature-image {
  width: 600px;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

#feature-text {
  font-size: 1rem;
  color: #fff;
  max-width: 220px;
  transition: opacity 0.5s ease-in-out;
}

.feature-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-btn:hover {
  transform: scale(1.3);
  color: #ff4444;
}

.fade-out {
  opacity: 0;
  transform: scale(0.98);
}