
/* ---------- Root Variables ---------- */
:root {
  --Scandipixhq-bg-color: #452800;
  --Scandipixhq-heading-color: #f79916;
  --Scandipixhq-text-color: #ffffff;
  --Scandipixhq-btn-bg: #f79916;
  --Scandipixhq-btn-text: #452800;
  --Scandipixhq-btn-hover-bg: #ffffff;
  --Scandipixhq-btn-hover-text: #452800;
  --Scandipixhq-link-active: #f79916;
}

/* ---------- Global Reset ---------- */
body.Scandipixhq-net-body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--Scandipixhq-bg-color);
  color: var(--Scandipixhq-text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.Scandipixhq-net-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Headings ---------- */
h1.Scandipixhq-net-heading,
h2.Scandipixhq-net-heading,
h3.Scandipixhq-net-heading,
.Scandipixhq-net-section-title {
  color: var(--Scandipixhq-heading-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---------- Paragraphs ---------- */
p.Scandipixhq-net-text {
  color: var(--Scandipixhq-text-color);
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.Scandipixhq-net-btn {
  display: inline-block;
  background-color: var(--Scandipixhq-btn-bg);
  color: var(--Scandipixhq-btn-text);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.Scandipixhq-net-btn:hover {
  background-color: var(--Scandipixhq-btn-hover-bg);
  color: var(--Scandipixhq-btn-hover-text);
}

/* ---------- Links ---------- */
.Scandipixhq-net-link {
  color: var(--Scandipixhq-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.Scandipixhq-net-link:hover,
.Scandipixhq-net-link.active {
  color: var(--Scandipixhq-link-active);
}

/* ---------- Scroll-to-Top Button ---------- */
.Scandipixhq-net-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--Scandipixhq-btn-bg);
  color: var(--Scandipixhq-btn-text);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.Scandipixhq-net-scroll-top:hover {
  background-color: var(--Scandipixhq-btn-hover-bg);
  color: var(--Scandipixhq-btn-hover-text);
}


/* ================================
   Scandipixhq Header/Nav Styles
===================================*/

.Scandipixhq-net-navbar {
  background-color: #452800;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.Scandipixhq-net-logo {
  height: 75px;
  max-width: 150px;
}

.Scandipixhq-net-nav-list .nav-item {
  margin-left: 18px;
  margin-right: 18px;
}

.Scandipixhq-net-nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.Scandipixhq-net-nav-link:hover {
  color: #f79916;
}

.Scandipixhq-net-nav-link.active {
  background-color: #f79916;
  color: #452800 !important;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Mobile toggle button */
.Scandipixhq-net-toggler {
  border: none;
  background: transparent;
}

.Scandipixhq-net-toggler-icon {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  position: relative;
}

.Scandipixhq-net-toggler-icon::before,
.Scandipixhq-net-toggler-icon::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  left: 0;
  transition: all 0.3s ease;
}

.Scandipixhq-net-toggler-icon::before {
  top: -7px;
}

.Scandipixhq-net-toggler-icon::after {
  top: 7px;
}


/* ================================
   Scandipixhq Hero Section
===================================*/

.Scandipixhq-net-hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 0 15px;
}

.Scandipixhq-net-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(69, 40, 0, 0.6);
  z-index: 1;
}

.Scandipixhq-net-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.Scandipixhq-net-hero-title {
  font-size: 3rem;
  color: #f79916;
  font-weight: 700;
}

.Scandipixhq-net-hero-subtext {
  font-size: 1.2rem;
  color: #ffffff;
}

.Scandipixhq-net-hero-btn {
  margin-top: 10px;
  background-color: #f79916;
  color: #452800;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.Scandipixhq-net-hero-btn:hover {
  background-color: #ffffff;
  color: #452800;
}


/* ================================
   Scandipixhq Disclaimer Section
===================================*/

.Scandipixhq-net-disclaimer-section {
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.Scandipixhq-net-section-title {
  color: #f79916;
  font-size: 2.2rem;
  font-weight: 700;
}

.Scandipixhq-net-disclaimer-text {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
}

.Scandipixhq-net-btn {
  background-color: #f79916;
  color: #452800;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.Scandipixhq-net-btn:hover {
  background-color: #ffffff;
  color: #452800;
}


/* ================================
   Scandipixhq Game Embed Section
===================================*/

.Scandipixhq-net-game-section {
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-section-title {
  font-size: 2.2rem;
  color: #f79916;
  font-weight: 700;
}

.Scandipixhq-net-game-embed {
  border: 2px solid #f79916;
  border-radius: 12px;
  background-color: #2d1a00;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.Scandipixhq-net-game-embed:hover {
  transform: scale(1.01);
}

.Scandipixhq-net-iframe-wrapper {
  width: 100%;
  height: 100%;
}


/* ================================
   Scandipixhq About Us Section
===================================*/
.Scandipixhq-net-about-img {
  border: 3px solid #f79916;
  border-radius: 12px;
}

.Scandipixhq-net-about-text {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.Scandipixhq-net-highlight {
  color: #f79916;
  font-weight: 600;
}

/* ================================
   Scandipixhq Features Section
===================================*/
.Scandipixhq-net-feature-subtext {
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.85;
}

.Scandipixhq-net-feature-card {
  background-color: #452800;
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.Scandipixhq-net-feature-card:hover {
  border-color: #f79916;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.Scandipixhq-net-feature-icon i {
  color: #f79916;
}

.Scandipixhq-net-feature-title {
  color: #f79916;
  font-weight: 600;
  margin-bottom: 10px;
}


/* ================================
   Scandipixhq Reviews Section
===================================*/
.Scandipixhq-net-review-card {
  background-color: #2d1a00;
  border-radius: 12px;
  max-width: 600px;
  color: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.Scandipixhq-net-review-card:hover {
  border-color: #f79916;
}

.Scandipixhq-net-review-card blockquote p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

.Scandipixhq-net-author-info i {
  color: #f79916;
  margin-right: 5px;
}

.Scandipixhq-net-author-info h5 {
  color: #f79916;
  margin-top: 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(70%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* ================================
   Scandipixhq Footer Styles
===================================*/
.Scandipixhq-net-footer {
  background-color: #452800;
  color: #ffffff;
  padding-top: 40px;
  font-size: 0.95rem;
}

.Scandipixhq-net-footer-divider {
  height: 3px;
  background-color: #f79916;
  margin-bottom: 20px;
}

.Scandipixhq-net-footer-logo {
  max-width: 200px;
}

.Scandipixhq-net-footer-heading {
  color: #f79916;
  font-weight: 600;
  margin-bottom: 15px;
}

.Scandipixhq-net-footer-text a {
  color: #f79916;
  text-decoration: none;
}

.Scandipixhq-net-footer-text a:hover {
  text-decoration: underline;
}

.Scandipixhq-net-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Scandipixhq-net-footer-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.Scandipixhq-net-footer-link:hover {
  color: #f79916;
}

.Scandipixhq-net-footer-copyright {
  border-color: rgba(255, 255, 255, 0.2) !important;
  margin-top: 20px;
  font-size: 0.85rem;
}


/* ================================
   Scandipixhq Age Verification Popup
===================================*/
.Scandipixhq-net-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.Scandipixhq-net-age-popup-box {
  background-color: #452800;
  color: #ffffff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  border: 2px solid #f79916;
}

.Scandipixhq-net-age-popup-title {
  color: #f79916;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.Scandipixhq-net-age-popup-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.Scandipixhq-net-age-popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.Scandipixhq-net-btn-age {
  flex: 1;
  padding: 10px;
  background-color: #f79916;
  color: #452800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.Scandipixhq-net-btn-age:hover {
  background-color: #e68914;
}


/* ================================
   Scandipixhq Scroll to Top Button
===================================*/
.Scandipixhq-net-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f79916;
  color: #452800;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.Scandipixhq-net-scroll-top:hover {
  background-color: #e68914;
  transform: translateY(-2px);
}


/* ================================
   Scandipixhq Contact Section
===================================*/
.Scandipixhq-net-contact-section {
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-section-title {
  color: #f79916;
  font-size: 2.2rem;
  font-weight: bold;
}

.Scandipixhq-net-contact-intro {
  color: #ffffff;
  opacity: 0.9;
  font-size: 1.1rem;
}

.Scandipixhq-net-contact-form {
  background-color: #5a3710;
  color: #ffffff;
  border: 1px solid #f79916;
}

.Scandipixhq-net-contact-form .form-label {
  color: #f79916;
  font-weight: 600;
}

.Scandipixhq-net-contact-form .form-control {
  border: 1px solid #f79916;
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-contact-form .form-control:focus {
  border-color: #ffae3d;
  box-shadow: 0 0 5px rgba(247, 153, 22, 0.4);
}

.Scandipixhq-net-btn-submit {
  background-color: #f79916;
  color: #452800;
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.Scandipixhq-net-btn-submit:hover {
  background-color: #ffae3d;
  transform: translateY(-2px);
}


/* ================================
   Scandipixhq Disclaimer Section
===================================*/
.Scandipixhq-net-disclaimer-section {
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-disclaimer-card {
  background-color: #5a3710;
  border: 1px solid #f79916;
}

.Scandipixhq-net-disclaimer-title {
  color: #f79916;
  font-size: 2.2rem;
  font-weight: bold;
}

.Scandipixhq-net-disclaimer-subtitle {
  color: #f79916;
  font-size: 1.3rem;
  font-weight: 600;
}

.Scandipixhq-net-disclaimer-text {
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.6;
}

.Scandipixhq-net-disclaimer-link {
  color: #f79916;
  text-decoration: underline;
}

.Scandipixhq-net-disclaimer-link:hover {
  color: #ffb84d;
}


/* ================================
   Scandipixhq Legal Pages Styling
===================================*/
.Scandipixhq-net-privacy-section,
.Scandipixhq-net-terms-section {
  background-color: #452800;
  color: #ffffff;
}

.Scandipixhq-net-privacy-card,
.Scandipixhq-net-terms-card {
  background-color: #5a3710;
  border: 1px solid #f79916;
}

.Scandipixhq-net-privacy-title,
.Scandipixhq-net-terms-title {
  color: #f79916;
  font-size: 2.2rem;
  font-weight: bold;
}

.Scandipixhq-net-privacy-subtitle,
.Scandipixhq-net-terms-subtitle {
  color: #f79916;
  font-size: 1.3rem;
  font-weight: 600;
}

.Scandipixhq-net-privacy-text,
.Scandipixhq-net-terms-text {
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.6;
}

.Scandipixhq-net-privacy-link,
.Scandipixhq-net-terms-link {
  color: #f79916;
  text-decoration: underline;
}

.Scandipixhq-net-privacy-link:hover,
.Scandipixhq-net-terms-link:hover {
  color: #ffb84d;
}

.Scandipixhq-net-privacy-list {
  margin-left: 20px;
  list-style: disc;
}
