/* BODY */
body {
    background: #000000;
    color: #e5e5e5;
    height: 100%;
}

/* TEXT */
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}
/* Medium screens (≤992px) */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.25rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 0.95rem; }
}

/* Small screens (≤576px) */
@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.1rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: 0.9rem; }
}
.text-highlight {
    color: orange !important;
}
.text-link {
  color: #43cd2c !important;
}
.text-shadow {
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.8),
        0 0 16px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(0, 0, 0, 0.4);
}
.box-shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

/* MODAL - START */
.modal-content {
  background-color: #111111 !important;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
  position: relative;
}

.modal-backdrop.show {
  opacity: 0.85;
  background-color: #000;
}

.btn-create-account {
  background: orange;
  border: 2px solid orange;
  color: #000;
  transition: all 0.3s ease;
}

.btn-download {
  background: #43cd2c;
  border: 2px solid #43cd2c;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-create-account:hover {
  transform: translateY(-2px);
  background: transparent;
  border: 2px solid orange;
}
.btn-download:hover {
  transform: translateY(-2px);
  background: transparent;
  border: 2px solid #43cd2c;

}
/* MODAL - END */

.section-pad {
  margin-top: 5rem;
}
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1600px;
  }
}

/* PAGE CONTAINER - START */
.page-container{
  position: relative;
  z-index: 0;          
  padding: 2rem;
  min-height: 100vh;
}

/* 3) Fixed background behind container content (and behind the hero) */
.page-container::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;            /* keep behind everything in this context */
  pointer-events: none;
  background: url("/hon-content/media/img/background.png") center / cover no-repeat;
}

@media (max-width: 576px) {
  .page-container{
    padding: 1rem;
  }
}
/* PAGE CONTAINER - END */
/* NAVBAR - START */
.navbar {
    font-size: 1.15rem; 
    background-color: #111111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    z-index: 10;
}

.navbar-opaque nav {
    background-color: rgba(17, 17, 17, 0.5) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #cfcfcf;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: orange;
    transition: width 0.15s ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff;
}

.navbar .btn {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar .btn:hover {
    color: #ffffff !important;
    transition: all 0.2s ease-in-out;
}

#play-now-button {
  background: linear-gradient(to bottom, #37a524 0%, #43cd2c 100%);
  box-shadow: 0 0 10px rgba(67, 205, 44, 0.4);
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  margin: 1rem 0 0.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  #play-now-button {
    width: auto;
    margin: 0;
  }
}
/* NAVBAR - END */
/* FOOTER - START */
.footer {
    background:#0f0f0f;
    color:#cfcfcf;
    position: relative;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.6);
    padding: 2.5rem 0;
}
.social a{
    color:#cfcfcf;
}
.social a:hover{
    color:#ffffff;
}
/* FOOTER - END */