@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-yellow: #FFC107; /* A vibrant yellow */
  --primary-yellow-hover: #FFB300;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-light: #F3F4F6;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

/* Header */
.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

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

.main-nav {
  display: flex;
  gap: 30px;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(to right, #ffffff, #fefce8);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-text .highlight {
  color: var(--primary-yellow);
  background: linear-gradient(120deg, transparent 0%, transparent 60%, rgba(255, 193, 7, 0.2) 60%);
}

.hero-text p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-icon-floating {
  width: 200px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(255, 193, 7, 0.3));
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: #fff; /* White text looks better on dark yellow, or dark text on light yellow. Trying white first, or we can do dark */
  color: #000; /* Dark text for better contrast on yellow */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-dark);
}

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

.btn-outline:hover {
  background: var(--primary-yellow);
  color: #000;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.article-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card .thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card-content {
  padding: 20px;
}

.article-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.article-card .date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-btn {
  color: var(--primary-yellow-hover);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-btn::after {
  content: '→';
  transition: transform 0.3s;
}

.read-btn:hover::after {
  transform: translateX(5px);
}

/* Info Cards (Secrets) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--primary-yellow);
}

.card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

/* Special Feature */
.special-feature {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.special-feature h4 {
  font-size: 1.8rem;
  color: var(--primary-yellow);
  margin-bottom: 10px;
}

/* Tips Section */
.split-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

.visual-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.text-content {
  flex: 1;
}

.feature-list {
  list-style: none;
  margin: 30px 0;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--primary-yellow);
  font-weight: bold;
}

.decoration-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-yellow), #fff);
  opacity: 0.2;
  filter: blur(40px);
}

/* Gameplay / Build */
.coming-soon-box {
  background: var(--bg-white);
  border: 2px dashed var(--border-color);
  border-radius: 20px;
  padding: 60px;
  margin-top: 30px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.5rem;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content p {
  opacity: 0.8;
  margin-bottom: 10px;
}

/* Utilities */
.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }

  .main-nav {
    display: none; /* Hide for now, can be toggled via JS */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 15px;
  }

  .main-nav.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .split-layout {
    flex-direction: column;
  }
  
  .visual-content {
    display: none;
  }
}

/* Article Detail View */
.thumb-big {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: var(--shadow-md);
}

.content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.content p {
  margin-bottom: 15px;
}

.back-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.back-btn:hover {
  background-color: var(--primary-yellow);
  color: #fff;
  border-color: var(--primary-yellow);
}


/* Responsive Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 25px 0;
  box-shadow: var(--shadow-md);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

