/* 
 * GetNordHollow.cyou - Main Stylesheet
 * Theme: Dark Gaming/Neon Style
 */

/* Import Fonts - Orbitron for headers, Inter for body */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  /* Dark Gaming Color Palette */
  --primary: #ff6b35;        /* Neon orange */
  --primary-light: #ff8c5a;  /* Light orange */
  --primary-dark: #e55a2b;   /* Dark orange */
  --secondary: #f7931e;      /* Golden orange */
  --accent: #ffcc02;         /* Bright yellow */
  --accent-light: #ffd633;   /* Light yellow */
  --bg-dark: #0f0f23;        /* Very dark blue */
  --bg-medium: #1a1a2e;      /* Medium dark */
  --bg-light: #16213e;       /* Lighter dark */
  --text-light: #eee;        /* Light text */
  --text-muted: #b0b3c7;     /* Muted text */
  --text-dark: #16213e;      /* Dark text */
  --border-color: #2d3748;   /* Border color */
  --shadow-color: rgba(255, 107, 53, 0.2); /* Orange shadow */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--text-light);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

/* About Section */
.about {
  background: var(--bg-medium);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* About image overlay (adds informative text on top of the image) */
.about-image {
  position: relative;
  display: inline-block;
}

.about-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: linear-gradient(180deg, rgba(10,12,20,0.0) 0%, rgba(8,10,24,0.85) 100%);
  color: var(--text-light);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.about-overlay h3 {
  margin: 0 0 0.25rem 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.about-overlay p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Make overlay less intrusive on very small screens */
@media (max-width: 480px) {
  .about-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 0.75rem 0.9rem;
  }

  .about-overlay h3 { font-size: 1rem; }
  .about-overlay p { font-size: 0.85rem; }
}

/* Features Section */
.features {
  background: var(--bg-dark);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.feature-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Games Section */
.games-section {
  background: var(--bg-medium);
  padding: 4rem 0;
}

.games-header {
  text-align: center;
  margin-bottom: 3rem;
}

.games-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.game-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.game-frame {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 35px;
  height: 35px;
}

.footer-brand-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-nav {
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.footer-disclaimer h4 {
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Age Verification Popup */
.age-popup {
  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: 10000;
}

.age-popup.hidden {
  display: none;
}

.age-popup-content {
  background: var(--bg-medium);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  border: 1px solid var(--border-color);
}

.age-popup h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.age-popup p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.age-popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    display: none;
  }
  
  .main-nav.show {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-nav ul {
    gap: 1rem;
  }
  
  .age-popup-content {
    margin: 1rem;
    padding: 2rem;
  }
  
  .age-popup-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .game-frame {
    height: 400px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }