/* ==============================
   Global Styles - Scandispark.space
   ============================== */

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

/* Body Styling */
body.scandi-space-body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #021629; /* Site background */
  color: #ffffff; /* Text color */
  line-height: 1.6;
  font-size: 16px;
}

/* Headings */
.scandi-space h1,
.scandi-space h2,
.scandi-space h3,
.scandi-space h4,
.scandi-space h5,
.scandi-space h6 {
  color: #3ebb24; /* Headings color */
  font-weight: 600;
  line-height: 1.3;
}

/* Links */
.scandi-space a {
  color: #3ebb24; /* Active link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.scandi-space a:hover,
.scandi-space a:focus {
  color: #ffffff;
}

/* Buttons */
.scandi-space-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3ebb24; /* Button color */
  color: #021629; /* Button text */
  border: 2px solid #3ebb24;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scandi-space-btn:hover {
  background-color: transparent; /* Hover */
  color: #3ebb24;
}

/* Sections Common Padding */
.scandi-space-section {
  padding: 60px 0;
}

/* Container */
.scandi-space-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utility Classes */
.scandi-space-text-center {
  text-align: center;
}

.scandi-space-text-accent {
  color: #3ebb24;
}

.scandi-space-bg-dark {
  background-color: #021629;
}

.scandi-space-bg-accent {
  background-color: #3ebb24;
  color: #021629;
}


/* ------------------------------
   Scandi-space Theme - Navbar Styling
------------------------------ */
.scandi-space-navbar {
  position: fixed; /* fix to top */
  top: 0;
  left: 0;
  right: 0;
  background-color: #021629;
  padding: 0.7rem 1rem;
  font-family: 'Roboto Mono', monospace;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 1000;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hide navbar by moving it up */
.scandi-space-navbar.nav-hidden {
  transform: translateY(-100%);
}


.scandi-space-logo {
  height: 70px;
  max-height: 70px;
  width: auto;
}

/* Toggler (mobile menu) */
.scandi-space-toggler {
  border: 2px solid #3ebb24;
  border-radius: 6px;
}

.scandi-space-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  display: block;
  background-color: #3ebb24;
  position: relative;
}

.scandi-space-toggler-icon::before,
.scandi-space-toggler-icon::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #3ebb24;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.scandi-space-toggler-icon::before {
  top: -7px;
}

.scandi-space-toggler-icon::after {
  top: 7px;
}

/* Navigation Links */
.scandi-space-nav-link {
  color: #ffffff !important;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

.scandi-space-nav-link:hover {
  color: #3ebb24 !important;
  background-color: transparent;
}

.scandi-space-nav-link.active {
  color: #3ebb24 !important;
  font-weight: bold;
}

/* Buttons */
.scandi-space-btn {
  background-color: #3ebb24;
  color: #021629;
  border: 2px solid #3ebb24;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.scandi-space-btn:hover {
  background-color: transparent;
  color: #3ebb24;
}

/* Mobile dropdown background */
@media (max-width: 767px) {
  .scandi-space-navbar .navbar-collapse {
    background-color: #021629;
    padding: 1rem;
  }
}


/* ================================
   Scandi-Space Hero Section
   ================================ */
.scandi-space-hero-section {
  background: 
              url('../images/hero-image.jpg') center/cover no-repeat;
  color: #fff;
}

.scandi-space-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3ebb24;
}

.scandi-space-hero-subtext {
  font-size: 1.2rem;
  color: #d1d1d1;
  max-width: 700px;
  margin: 0 auto;
}

.scandi-space-hero-btn {
  background-color: #3ebb24;
  color: #021629;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: 2px solid #3ebb24;
  transition: all 0.3s ease;
}

.scandi-space-hero-btn:hover {
  background-color: transparent;
  color: #3ebb24;
}

/* Disclaimer Section - Scandi Space */
.scandi-space-disclaimer-section {
  background-color: #021629;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.scandi-space-disclaimer-card {
  background-color: #1c1c1c;
  border: 1px solid #3ebb24;
}

.scandi-space-disclaimer-title {
  color: #3ebb24;
  font-weight: 700;
}

.scandi-space-disclaimer-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
}

.scandi-space-btn {
  background-color: #3ebb24;
  color: #021629;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
}

.scandi-space-btn:hover {
  background-color: transparent;
  border: 2px solid #3ebb24;
  color: #3ebb24;
}


/* Game Section Styles */
.scandi-space-game-section {
  background-color: #021629; /* Site background */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.scandi-space-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #3ebb24; /* Headings / Active links */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.scandi-space-game-card {
  background: #1a1a1a; /* Slightly lighter than site background for contrast */
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scandi-space-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.scandi-space-game-frame {
  position: relative;
  width: 100%;
  background-color: #000; /* fallback background */
}

.scandi-space-game-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Buttons */
.scandi-space-btn {
  background-color: #3ebb24;
  color: #021629;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #3ebb24;
  transition: all 0.3s ease;
  text-decoration: none;
}

.scandi-space-btn:hover {
  background-color: transparent;
  color: #3ebb24;
  border-color: #3ebb24;
}

/* Text inside section */
.scandi-space-game-section p {
  color: #ffffff;
  font-size: 1.1rem;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .scandi-space-section-title {
    font-size: 1.6rem;
  }

  .scandi-space-game-card {
    border-radius: 1rem;
  }
}


.scandi-space-feature-card {
  background-color: #1b1b1b;
  border: 1px solid #3ebb24;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.scandi-space-feature-card:hover {
  transform: translateY(-5px);
  background-color: #3ebb24;
  color: #021629;
}
.scandi-space-feature-card:hover .scandi-space-feature-title,
.scandi-space-feature-card:hover .scandi-space-feature-text {
  color: #021629 !important;
}
.scandi-space-feature-icon {
	color: #3ebb24;
  transition: transform 0.3s ease;
}
.scandi-space-feature-card:hover .scandi-space-feature-icon {
  transform: scale(1.1);
  color: #021629 !important;
}


/* About Section */
.scandi-space-about-section {
  background-color: #021629;
  color: #ffffff;
}

.scandi-space-section-title {
  color: #3ebb24;
  font-size: 2.2rem;
  font-weight: 700;
}

.scandi-space-about-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-accent {
  color: #3ebb24;
  font-weight: 600;
}

.scandi-space-about-img {
  border: 4px solid #3ebb24;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scandi-space-about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(62, 187, 36, 0.6);
}

/* Button Styling */
.scandi-space-btn {
  background-color: #3ebb24;
  color: #021629;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #3ebb24;
}

.scandi-space-btn:hover {
  background-color: transparent;
  color: #3ebb24;
}


.scandi-space-reviews-section {
  background-color: #021629;
  color: #ffffff;
}

.scandi-space-section-title {
  color: #3ebb24;
  font-weight: 700;
  font-size: 2.2rem;
}

.scandi-space-section-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.scandi-space-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.scandi-space-review-card {
  background-color: #222;
  border: 2px solid #3ebb24;
  border-radius: 15px;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 20px rgba(62, 187, 36, 0.3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scandi-space-review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(62, 187, 36, 0.6);
}

.scandi-space-review-icon {
  color: #3ebb24;
  margin-bottom: 1.2rem;
}

.scandi-space-review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1rem;
  font-style: italic;
}

.scandi-space-review-author {
  color: #3ebb24;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: right;
}

.scandi-space-footer {
  background-color: #021629;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.scandi-space-footer a.scandi-space-footer-link {
  color: #3ebb24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.scandi-space-footer a.scandi-space-footer-link:hover,
.scandi-space-footer a.scandi-space-footer-link:focus {
  text-decoration: underline;
  outline: none;
}

.scandi-space-footer-logo img {
  max-width: 160px;
  height: auto;
}

.scandi-space-footer-disclaimer {
  padding-right: 2rem;
  border-right: 1px solid #3ebb24;
}

.scandi-space-disclaimer-heading {
  color: #3ebb24;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.scandi-space-footer-links {
  padding-left: 2rem;
}

.scandi-space-links-heading {
  color: #3ebb24;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.scandi-space-footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.scandi-space-footer-links ul li {
  margin-bottom: 1rem;
}

.scandi-space-footer-bottom {
  border-top: 1px solid #3ebb24;
  color: #ffffff;
  font-size: 0.9rem;
  user-select: none;
}

.scandi-space-footer-bottom a.scandi-space-footer-link {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .scandi-space-footer-disclaimer,
  .scandi-space-footer-links {
    padding: 0;
    border: none;
    text-align: center;
    margin-bottom: 2rem;
  }

  .scandi-space-links-heading,
  .scandi-space-disclaimer-heading {
    text-align: center;
  }
}


/* ScandiSpace Age Verification Popup Overlay */
.scandi-space-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 19, 19, 0.95); /* Dark semi-transparent bg */
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

/* Popup Box */
.scandi-space-age-popup-box {
  background-color: #021629;
  border: 2px solid #3ebb24;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(62, 187, 36, 0.5);
  color: #ffffff;
  text-align: center;
  font-family: 'Roboto Mono', monospace;
}

/* Popup Title */
.scandi-space-age-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3ebb24;
  margin-bottom: 1rem;
}

/* Popup Text */
.scandi-space-age-popup-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Buttons Container */
.scandi-space-age-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Buttons */
.scandi-space-btn-age {
  background-color: #3ebb24;
  color: #021629;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
  user-select: none;
}

.scandi-space-btn-age:hover {
  background-color: transparent;
  color: #3ebb24;
  border: 2px solid #3ebb24;
}

/* Accessibility Focus */
.scandi-space-btn-age:focus {
  outline: 3px solid #3ebb24;
  outline-offset: 2px;
}


.scandi-space-scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background-color: #3ebb24;  /* buttons color */
  color: #021629;             /* button text color */
  border: none;
  border-radius: 50%;         /* perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(62, 187, 36, 0.4);
  transition: background-color 0.3s ease;
  z-index: 10000;
}

.scandi-space-scroll-top:hover {
  background-color: transparent;
  color: #3ebb24;
  box-shadow: 0 0 8px #3ebb24;
}

.scandi-space-scroll-arrow {
  user-select: none;
  line-height: 1;
}

/* Contact Section */
.scandi-space-contact-section {
  background-color: #021629;
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.scandi-space-section-title {
  color: #3ebb24;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.scandi-space-contact-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ffffffdd;
}

.scandi-space-contact-form label {
  color: #3ebb24;
  font-weight: 600;
}

.scandi-space-contact-form input,
.scandi-space-contact-form textarea {
  background-color: #021629;
  color: #ffffff;
  border: 1px solid #3ebb24;
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.scandi-space-contact-form input:focus,
.scandi-space-contact-form textarea:focus {
  outline: none;
  border-color: #3ebb24;
  box-shadow: 0 0 8px #3ebb24aa;
}

.scandi-space-contact-form button.scandi-space-btn {
  background-color: #3ebb24;
  color: #021629;
  font-weight: 700;
  padding: 0.75rem 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scandi-space-contact-form button.scandi-space-btn:hover {
  background-color: transparent;
  color: #3ebb24;
  border: 2px solid #3ebb24;
}
.scandi-space-contact-container {
  max-width: 700px;  
  margin: auto;
}


.scandi-space-disclaimer-section p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .scandi-space-section-title {
    font-size: 2rem;
  }
  .scandi-space-subheading {
    font-size: 1.25rem;
  }
}
.scandi-space-disclaimer-section {
  background-color: #021629;
  color: #ffffff;
  padding: 3rem 1rem;
  line-height: 1.7;
}
.scandi-space-subheading {
  color: #3ebb24;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.scandi-space-privacy-section {
  background-color: #021629; /* Site background */
  color: #ffffff; /* Text */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.scandi-space-privacy-section .scandi-space-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.7;
}

/* Main Title */
.scandi-space-privacy-section .scandi-space-section-title {
  color: #3ebb24; /* Headings */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Subheadings */
.scandi-space-privacy-section .scandi-space-subheading {
  color: #3ebb24; /* Accents */
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

/* Paragraphs */
.scandi-space-privacy-section p {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

/* Strong text */
.scandi-space-privacy-section strong {
  color: #3ebb24;
}

/* Links inside text (if any) */
.scandi-space-privacy-section a {
  color: #3ebb24;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.scandi-space-privacy-section a:hover,
.scandi-space-privacy-section a:focus {
  color: #3ebb24;
  outline: none;
}

/* Responsive */
@media (max-width: 767.98px) {
  .scandi-space-privacy-section .scandi-space-section-title {
    font-size: 2rem;
  }
  .scandi-space-privacy-section .scandi-space-subheading {
    font-size: 1.25rem;
  }
  .scandi-space-privacy-section p {
    font-size: 1rem;
  }
}

.scandi-space-terms-section {
  background-color: #021629; /* Site background */
  color: #ffffff; /* Text */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.scandi-space-terms-section .scandi-space-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.7;
}

/* Main Title */
.scandi-space-terms-section .scandi-space-section-title {
  color: #3ebb24; /* Headings */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Subheadings */
.scandi-space-terms-section .scandi-space-subheading {
  color: #3ebb24; /* Accents */
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

/* Paragraphs */
.scandi-space-terms-section p {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

/* Strong text */
.scandi-space-terms-section strong {
  color: #3ebb24;
}

/* Links inside text (if any) */
.scandi-space-terms-section a {
  color: #3ebb24;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.scandi-space-terms-section a:hover,
.scandi-space-terms-section a:focus {
  color: #3ebb24;
  outline: none;
}

/* Responsive */
@media (max-width: 767.98px) {
  .scandi-space-terms-section .scandi-space-section-title {
    font-size: 2rem;
  }
  .scandi-space-terms-section .scandi-space-subheading {
    font-size: 1.25rem;
  }
  .scandi-space-terms-section p {
    font-size: 1rem;
  }
}
