/*--------------------------------------
  GENERAL SETTINGS
---------------------------------------*/
body.velnord-click-body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #ffcfc3;
  color: #4f2214;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #a33f20;
  transition: color 0.3s;
}

a:hover {
  color: #4f2214;
}

/*--------------------------------------
  NAVBAR
---------------------------------------*/
.velnord-click-navbar {
  background-color: #ffcfc3;
  border-bottom: 2px solid #a33f20;
}

.velnord-click-navbar .velnord-click-logo {
  max-height: 70px;
}

.velnord-click-navbar .nav-link {
  color: #4f2214;
  font-weight: 600;
}

.velnord-click-navbar .nav-link.active {
  color: #a33f20;
}

.navbar-toggler {
  border: none;
  color: #a33f20;
}

/*--------------------------------------
  HERO
---------------------------------------*/
.velnord-click-hero {
  height: 70vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffcfc3 url('../images/hero.jpg') no-repeat center/cover;
  text-align: center;
}

.velnord-click-hero .hero-inner {
  max-width: 700px;   /* Contain content width */
  width: 100%;
  margin: 0 auto;
}

.velnord-click-hero .hero-title {
  font-size: 2.8rem;
  color: #a33f20;
  text-shadow: 1px 1px #ffcfc3;
  margin-bottom: 20px;
}

.velnord-click-hero .hero-sub {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #4f2214;
}

.velnord-click-btn {
  background-color: #a33f20;
  color: #ffcfc3;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.velnord-click-btn:hover {
  background-color: #4f2214;
  color: #ffcfc3;
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .velnord-click-hero {
    height: auto;
    padding: 60px 15px;
  }

  .velnord-click-hero .hero-title {
    font-size: 2rem;
  }

  .velnord-click-hero .hero-sub {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .velnord-click-hero .hero-title {
    font-size: 1.6rem;
  }
  .velnord-click-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------
  SECTION TITLES
---------------------------------------*/
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #a33f20;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px #ffcfc3;
}

.section-sub {
  font-size: 1rem;
  color: #4f2214;
}

/*--------------------------------------
  DISCLAIMER CARD
---------------------------------------*/
.velnord-click-disclaimer-section .disclaimer-card {
  background: #fff3ed;
  border: 2px solid #a33f20;
  border-radius: 16px;
}

.velnord-click-disclaimer-section .disclaimer-icon {
  color: #a33f20;
}

.velnord-click-disclaimer-section .card-title {
  font-size: 1.8rem;
  color: #a33f20;
}

.velnord-click-disclaimer-section .card-text {
  color: #4f2214;
  font-size: 1rem;
}

.disclaimer-btn {
  display: inline-block;
  margin-top: 15px;
}

/*--------------------------------------
  GAME SECTION
---------------------------------------*/
.velnord-click-play {
  text-align: center;
}

.velnord-click-play .velnord-click-game-frame {
  margin: 0 auto;
  max-width: 900px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #a33f20;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.velnord-click-play iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*--------------------------------------
  FEATURES
---------------------------------------*/
.velnord-click-features .feature-card {
  background: #fff3ed;
  border-radius: 12px;
  text-align: center;
  padding: 25px 15px;
  border: 2px solid #a33f20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.velnord-click-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 2.2rem;
  color: #a33f20;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: 700;
  color: #a33f20;
  margin-bottom: 10px;
}

.feature-text {
  color: #4f2214;
}

/*--------------------------------------
  ABOUT
---------------------------------------*/
.velnord-click-about .about-image {
  max-width: 100%;
}

.velnord-click-about .section-text {
  font-size: 1rem;
  color: #4f2214;
}

/*--------------------------------------
  REVIEWS
---------------------------------------*/
.velnord-click-reviews-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: #fff3ed;
  border: 2px solid #a33f20;
  border-radius: 12px;
  padding: 20px;
  max-width: 280px;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 0.95rem;
  color: #4f2214;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: #a33f20;
}

.review-stars {
  color: #a33f20;
}

/*--------------------------------------
  CONTACT FORM
---------------------------------------*/
.velnord-click-contact .velnord-click-input {
  border: 2px solid #a33f20;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: #fff3ed;
  color: #4f2214;
  width: 100%;
}

.velnord-click-contact .velnord-click-input:focus {
  outline: none;
  border-color: #4f2214;
  box-shadow: 0 0 6px rgba(79,34,20,0.3);
}

/*--------------------------------------
  FOOTER
---------------------------------------*/
.velnord-click-footer {
  background: #ffcfc3;
  color: #4f2214;
}

.velnord-click-footer .footer-logo-wrap img {
  max-height: 60px;
}

.velnord-click-footer-links a {
  color: #a33f20;
  font-weight: 600;
}

.velnord-click-footer-links a:hover {
  color: #4f2214;
}

.velnord-click-footer-disclaimer {
  font-size: 0.9rem;
  color: #4f2214;
}

/*--------------------------------------
  DISCLAIMER POPUP
---------------------------------------*/
.velnord-click-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79,34,20,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.velnord-click-popup.visible {
  display: flex;
}

.velnord-click-popup-inner {
  background: #fff3ed;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
}

.velnord-click-popup-inner h3 {
  color: #a33f20;
  margin-bottom: 15px;
}

.velnord-click-popup-inner p {
  color: #4f2214;
  margin-bottom: 20px;
}

.popup-actions button {
  margin: 0 8px;
}

/*--------------------------------------
  SCROLL TO TOP
---------------------------------------*/
.velnord-click-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #a33f20;
  color: #ffcfc3;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.velnord-click-scroll-top.visible {
  display: block;
}

.velnord-click-scroll-top:hover {
  background: #4f2214;
}

/*--------------------------------------
  RESPONSIVE
---------------------------------------*/
@media (max-width: 768px) {
  .velnord-click-hero .hero-title {
    font-size: 2rem;
  }
  .velnord-click-features .feature-card {
    padding: 20px;
  }
  .velnord-click-navbar .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .velnord-click-hero .hero-title {
    font-size: 1.6rem;
  }
  .velnord-click-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}



.velnord-click-legal-section {
  background: #ffcfc3;
  color: #4f2214;
  padding: 60px 20px;
  font-family: 'Sora', sans-serif;
  line-height: 1.7;
}

.velnord-click-legal-section .main-legal-heading {
  font-size: 2.5rem;
  color: #a33f20;
  margin-bottom: 40px;
}

.velnord-click-legal-section .sub-legal-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #a33f20;
  margin-top: 25px;
  margin-bottom: 10px;
}

.velnord-click-legal-section .legal-text {
  font-size: 1rem;
  color: #4f2214;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .velnord-click-legal-section {
    padding: 40px 15px;
  }
  .velnord-click-legal-section .main-legal-heading {
    font-size: 2rem;
  }
  .velnord-click-legal-section .sub-legal-heading {
    font-size: 1.2rem;
  }
}
