body {
  font-family: 'Inter', sans-serif !important;
  letter-spacing: 0.2px;
  background-color: #162039;
}

/* Navbar Styles */
#mainNav {
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%) !important;
  border-bottom: 1px solid #806633;
  padding-top: 0px !important;
  padding-bottom: 2px !important;
}

#mainNav.navbar-shrink {
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%) !important;
  border-bottom: 1px solid #806633;
  padding-top: 0px !important;
  padding-bottom: 2px !important;
}

.content-section {
  background-color: #1a1f2e !important;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #d4a644;
    font-size: 1.8rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 166, 68, 0.4);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    color: #f1c959;
    background: rgba(212, 166, 68, 0.15);
    border-color: #d4a644;
}

.scroll-arrow i {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Animación suave tipo flotante */

@keyframes floatArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Animación al hacer click (rebote suave) */

.scroll-arrow:active {
  animation: bounceClick 0.25s forwards;
}

@keyframes bounceClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.server-panel {
  max-width: 760px;
  padding: 38px 32px;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.server-title {
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #b8c5d6;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.server-text {
  font-size: 17px;
  line-height: 1.65;
  color: #eaeaea;
  margin-bottom: 14px;
}

.server-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00aaff, #0093dd);
  padding: 14px 28px;
  color: #b8c5d6 !important;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.hytale-video-container {
    /* Bootstrap usa esta variable para la altura del ratio */
    --bs-aspect-ratio: 45%;  /* probá 45, 40 o el valor que te guste */
}

.server-btn:hover {
  background: #00bbff;
  box-shadow: 0 6px 24px rgba(0, 170, 255, 0.55);
  transform: translateY(-2px);
}

header {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 10px;
}

/* Masthead fade effect */
.masthead {
  position: relative;
}

.masthead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, #1a1f2e 100%);
  pointer-events: none;
}

/* What is Hytale Section */
.what-is-section {
  padding: 80px 0;
  border-bottom: 1px solid #806633;
}

.what-is-section .section-title {
  color: #f1c959;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.what-is-section .section-text {
  color: #b8c5d6;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* Server Section */
.server-section {
  padding: 80px 0;
}

.server-section .section-title {
  color: #f1c959;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.server-section .section-text {
  color: #b8c5d6;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.server-info-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #806633;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.server-feature i {
  color: #d4a644;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.what-is-section .video-wrapper {
  position: relative;
  border: 3px solid #806633;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Server Section */
.server-section {
  padding: 80px 0;
}

.server-section .section-title {
  color: #f1c959;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.server-section .section-text {
  color: #b8c5d6;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.server-info-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #806633;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.server-feature i {
  color: #d4a644;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.what-is-section .preview-image {
  width: 100%;
  height: auto;
  display: block;
}

.server-section .preview-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.what-is-section .play-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #806633;
  color: #b8c5d6;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.what-is-section .play-button:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: #d4a644;
  color: #d4a644;
  transform: translateY(-2px);
}

.what-is-section .play-button i {
  font-size: 12px;
}

/* Social Section - Follow Us */
.social-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%);
  padding: 50px 0;
  position: relative;
  border-top: 1px solid #806633;
  border-bottom: 1px solid #806633;
}

.social-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.follow-text {
  font-size: 18px;
  font-weight: 600;
  color: #b8c5d6;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8c5d6;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  color: #b8c5d6;
}

.social-icon i {
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.1);
}
/* Votes Button Style */
.btn-votes {
    background: linear-gradient(180deg, #2b8e24 0%, #7ebe39 100%);
    border: 2px solid #806633;
    color: #b8c5d6 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-votes:hover {
    background: linear-gradient(180deg, #2b8e24 0%,
        #7ebe39 100%);
    border-color: #806633;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #b8c5d6 !important;
}

.btn-votes:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
/* Discord Button Style */
.btn-discord {
  background: linear-gradient(180deg, #245e8e 0%, #398dbe 100%);
  border: 2px solid #806633;
  color: #b8c5d6 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-discord:hover {
  background: linear-gradient(180deg, #2a6ba0 0%, #43a0d4 100%);
  border-color: #806633;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #b8c5d6 !important;
}

.btn-discord:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-vermas {
  background: linear-gradient(180deg, #15161c 0%, #222b31 100%);
  border: 2px solid #806633;
  color: #b8c5d6 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-vermas:hover {
  background: linear-gradient(180deg, #3c3f4c 0%, #38454d 100%);
  border-color: #806633;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #b8c5d6 !important;
}

.btn-vermas:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-news {
  background: linear-gradient(180deg, #79797e 0%, #96969e 100%);
  border: 2px solid #806633;
  color: #b8c5d6 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-news:hover {
  background: linear-gradient(180deg, #98989e 0%, #bebec5 100%);
  border-color: #806633;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #b8c5d6 !important;
}

.btn-news:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

    .vote-row {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .vote-card {
        background: rgba(10, 12, 20, 0.9);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        width: 300px;
        padding: 25px 20px;
        text-align: center;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .vote-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    }

    .vote-title {
        font-size: 1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
    }

    .vote-text {
        font-size: 0.85rem;
        color: #cfd5e3;
        margin-bottom: 15px;
    }

    .vote-btn {
        padding: 10px 22px;
        border-radius: 999px;
        font-weight: 700;
        text-transform: uppercase;
        border: none;
        background: #2e95cc;
        color: #050b10;
        transition: 0.15s;
        font-size: 0.9rem;
    }

    .vote-btn:hover {
        background: #3edee6;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(46, 135, 204, 0.35);
    }

    .vote-icon {
        font-size: 1.45rem;
        margin-bottom: 10px;
        opacity: 0.9;
    }


footer {
  background-color: #0e1218;
}

footer p {
  font-weight: 300;
  margin: 0;
}

