/* TurretGirls.org - Korean Gaming Website */
:root {
  --primary: #059669;
  --secondary: #6b7280;
  --background: #f0fdf4;
  --surface: #ffffff;
  --text: #064e3b;
  --accent: #10b981;
  --border: #d1fae5;
  --hover: #047857;
}

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

body {
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

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

/* Header */
header {
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

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

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Game iframe */
.game-container {
  background: var(--surface);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
}

/* Content Sections */
.content-section {
  background: var(--surface);
  margin: 2rem 0;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.content-section h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.content-section h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 2rem 0 1rem 0;
}

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

.feature-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  text-align: center;
}

.feature-card h4 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--hover);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #4b5563;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .game-iframe {
    height: 400px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Game Screenshots Gallery */
.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.screenshot {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* SEO Content */
.seo-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.seo-content p {
  margin-bottom: 1.5rem;
}

.seo-content ul {
  margin: 1rem 0 1rem 2rem;
}

.seo-content li {
  margin-bottom: 0.5rem;
}