/* Base Styles */
body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  background-color: #1a1a1a;
  color: #d4af37;
  text-align: center;
}

/* Header and Hollywood Sign Animation */
header {
  padding: 30px 20px;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
  border-bottom: 2px solid #d4af37;
}

.hollywood-sign {
  font-size: 3em;
  letter-spacing: 10px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37;
  animation: flicker 3s infinite;
}

/* Flicker Animation */
@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #d4af37, 0 0 20px #d4af37; }
  50% { opacity: 0.8; text-shadow: 0 0 5px #d4af37, 0 0 15px #d4af37; }
  60% { opacity: 0.6; }
  70% { opacity: 0.9; }
}

/* Navigation */
nav {
  margin-top: 15px;
}

nav a {
  color: #d4af37;
  margin: 0 15px;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  transition: text-shadow 0.3s;
}

nav a:hover {
  text-shadow: 0 0 8px #ffd700;
}

/* Main Section */
.intro {
  padding: 50px 20px;
}

.intro h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Button */
.button {
  display: inline-block;
  padding: 12px 30px;
  background: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.button:hover {
  background: #ffd700;
}

/* Footer */
footer {
  padding: 20px;
  background-color: #000;
  border-top: 2px solid #d4af37;
  font-size: 0.9em;
}

/* News Article Styles */
.news-article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 30px;
  margin: 40px auto;
  width: 85%;
  max-width: 700px;
  text-align: left;
}

.news-article h2 {
  font-size: 1.8em;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.byline {
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
}

.news-article p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-article em {
  color: #ffd700;
  font-style: italic;
}

/* Game Gallery Layout */
.game-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #d4af37;
}

.game-card h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.game-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.game-card .button {
  display: inline-block;
}
