/* NordscapeLabs.today - Modern Tech Theme Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
  /* Modern tech theme colors - blue, cyan, dark theme */
  --primary-color: #00d9ff;
  --primary-dark: #00a8cc;
  --secondary-color: #6c5ce7;
  --accent-color: #0984e3;
  --neon-blue: #00d9ff;
  --neon-purple: #a29bfe;
  --dark-bg: #0a0e27;
  --dark-surface: #151932;
  --darker-surface: #0f1323;
  --white: #ffffff;
  --off-white: #f0f3f7;
  --gray-100: #e8ecf1;
  --gray-200: #d1d8e0;
  --gray-300: #b8c1cc;
  --gray-400: #9fa8b3;
  --gray-500: #7f8c9a;
  --gray-600: #606876;
  --gray-700: #3d4554;
  --gray-800: #252b38;
  --gray-900: #151a23;
  --shadow-neon: 0 0 20px rgba(0, 217, 255, 0.3);
  --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.5);
  --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #6c5ce7 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #151932 100%);
  --border-radius-sm: 4px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--gray-200);
  line-height: 1.6;
  background: var(--gradient-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 1px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--neon-purple);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: var(--border-radius-md);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: var(--shadow-neon);
}

/* Header & Navigation */
header {
  background: rgba(10, 14, 39, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 2px solid var(--primary-color);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.logo-img {
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.nav-menu {
  display: flex;
  gap: 5px;
  list-style: none;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 217, 255, 0.1);
}

.nav-link:hover::before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

/* Hero section */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.75) 0%, rgba(21, 25, 50, 0.7) 100%), url('herobg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
  border-bottom: 3px solid var(--primary-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px);
  pointer-events: none;
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.hero-image {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), 0 0 80px rgba(108, 92, 231, 0.2);
  border: 3px solid var(--primary-color);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary-color);
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 217, 255, 0.8); }
  50% { text-shadow: 0 0 40px rgba(0, 217, 255, 1), 0 0 60px rgba(108, 92, 231, 0.8); }
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--gray-200);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Disclaimer section */
.disclaimer-section {
  padding: 60px 0;
  background: var(--darker-surface);
}

.disclaimer-box {
  background: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.disclaimer-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}

.disclaimer-box h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.disclaimer-box p {
  font-size: 1.05rem;
  color: var(--gray-200);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Game section */
.game-section {
  padding: 70px 0;
  background: var(--dark-bg);
}

.game-container {
  max-width: 1100px;
  margin: 0 auto;
}

.game-header {
  text-align: center;
  margin-bottom: 40px;
}

.game-header h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.game-header p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.game-content {
  position: relative;
  margin-bottom: 30px;
}

.game-iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), var(--shadow-strong);
  border: 3px solid var(--primary-color);
  background: var(--dark-surface);
}

.game-description {
  background: var(--dark-surface);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  margin-top: 40px;
  box-shadow: var(--shadow-strong);
  border-left: 4px solid var(--primary-color);
}

.game-description h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-description p {
  color: var(--gray-200);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--darker-surface);
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2.6rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.about-text p {
  color: var(--gray-200);
  font-size: 1.05rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
 
}

/* Features section */
.features-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.features-header p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  transition: var(--transition);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.4), var(--shadow-strong);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: var(--shadow-neon);
  border: 3px solid var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--gray-200);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--darker-surface);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.contact-header p {
  color: var(--gray-300);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--dark-surface);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--primary-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-700);
  border-radius: var(--border-radius-md);
  transition: var(--transition);
  background: var(--darker-surface);
  color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
  background: var(--dark-surface);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

/* Popup Disclaimer */
.disclaimer-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.disclaimer-popup.show {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.disclaimer-popup-content {
  background: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 45px 40px;
  width: 90%;
  max-width: 550px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.5), var(--shadow-strong);
  animation: scaleIn 0.4s ease-out;
  border: 3px solid var(--primary-color);
  position: relative;
}

.disclaimer-popup-content::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  opacity: 0.2;
  filter: blur(15px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.disclaimer-popup-content h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.disclaimer-popup-content p {
  margin-bottom: 18px;
  color: var(--gray-200);
  font-size: 1.05rem;
  line-height: 1.7;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Legal content styling */
.legal-content {
  padding: 120px 0 70px;
  background: var(--dark-bg);
}

.legal-box {
  background: var(--dark-surface);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--primary-color);
}

.legal-box h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.legal-box h3 {
  color: var(--neon-blue);
  margin: 30px 0 15px;
  font-size: 1.6rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.legal-box p, .legal-box ul {
  color: var(--gray-200);
  margin-bottom: 18px;
  line-height: 1.8;
}

.legal-box ul {
  padding-left: 25px;
}

.legal-box ul li {
  margin-bottom: 10px;
}

.legal-box a {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}

.legal-box a:hover {
  color: var(--neon-purple);
}

/* Footer */
footer {
  background: var(--darker-surface);
  color: var(--gray-200);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  padding: 60px 0 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.footer-brand p {
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links-container {
  display: flex;
  gap: 50px;
  flex: 1;
}

.footer-column h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 12px;
}

.footer-link a {
  color: var(--gray-300);
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-link a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  margin: 30px 0;
}

.footer-disclaimer p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-bottom p {
  margin: 5px 0;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-main {
    flex-direction: column;
  }
  
  .footer-links-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .game-iframe {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: relative;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    flex-direction: column;
    background: var(--dark-surface);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
  }
  
  .hero {
    padding: 140px 0 80px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-image {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .game-iframe {
    height: 500px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .legal-box {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .disclaimer-popup-content {
    padding: 30px 25px;
  }
  
  .popup-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .game-iframe {
    height: 400px;
  }
  
  .legal-box h2 {
    font-size: 2rem;
  }
  
  .legal-box h3 {
    font-size: 1.4rem;
  }
}
