/* ==============================
   CalmChick - Main Website Style
   ============================== */

body {
  margin: 0;
  background: #dff7ff;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

/* ==============================
   Fictional EAS-style Banner
   ============================== */

.eas-banner {
  width: 100%;
  box-sizing: border-box;
  background: #111;
  color: white;
  border-top: 3px solid #d00000;
  border-bottom: 3px solid #d00000;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-family: monospace;
  font-weight: bold;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-text 25s linear infinite;
}

@keyframes scroll-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ==============================
   Main Website Layout
   ============================== */

.site {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

/* ==============================
   Header / Logo
   ============================== */

header {
  text-align: center;
  padding: 20px;
}

.logo {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.tagline {
  font-size: 18px;
  font-weight: bold;
}

/* ==============================
   Navigation
   ============================== */

nav {
  background: #222;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

nav a:hover {
  background: #444;
  text-decoration: underline;
}

nav a.active {
  background: #005bbb;
  color: #fff;
}

/* ==============================
   Content Boxes
   ============================== */

.box {
  background: white;
  margin-top: 20px;
  padding: 20px;
  border: 3px solid #222;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #999;
}

.box h1,
.box h2 {
  margin-top: 0;
}

a {
  color: #005bbb;
}

a:hover {
  color: #003366;
}

/* ==============================
   Video & Game Grids
   ============================== */

.video-grid,
.game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 15px;
}

.video-card,
.game-card {
  border: 2px solid #222;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
}

.video-thumbnail {
  width: 100%;
  max-width: 480px;
  height: auto;
  border: 2px solid #111;
  display: block;
  margin-bottom: 10px;
}

/* ==============================
   Status & Engine Tags
   ============================== */

.status-tag,
.engine-tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}

.status-released {
  background: #00cc66;
  color: white;
}

.status-wip {
  background: #ff9900;
  color: white;
}

.engine-roblox {
  background: #e60000;
  color: white;
}

.engine-unity {
  background: #000000;
  color: white;
}

.engine-other {
  background: #6c5ce7;
  color: white;
}

/* ==============================
   Social Links Section
   ============================== */

.social-links p {
  margin: 10px 0;
  font-size: 16px;
}

.social-links a {
  font-weight: bold;
}

/* ==============================
   Footer
   ============================== */

footer {
  text-align: center;
  margin: 30px 0;
  font-size: 13px;
}