/* Custom CSS Properties & Global Overrides */
:root {
  --primary-color: #3b6db5;
  --secondary-color: #d66767;
  --accent-color: #c8b53d;
  --bg-color: #0b1020;
  --surface-color: #0f1627;
  --text-color: #e8eef5;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

#header-placeholder {
  display: none;
}

/* Glass Tile Base Component Overrides */
.glass-tile {
  position: relative;
  overflow: hidden;
}

.glass-tile::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(74, 144, 226, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.glass-tile:hover::before {
  opacity: 1;
}

.glass-tile:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow:
    0 8px 20px rgba(74, 144, 226, 0.2),
    0 0 0 1px rgba(74, 144, 226, 0.3);
}

.glass-tile h2,
.glass-tile h3 {
  font-family: "Bungee", "Roboto", sans-serif;
  letter-spacing: 1px;
}

.glass-tile p {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 600;
}

/* Hero / Welcome Section */
.welcome-section {
  text-align: center;
  padding: 8rem 2rem 2rem 2rem;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: none;
}

.welcome-text {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
}

.welcome-logo {
  height: 250px;
  width: auto;
  max-width: 90vw;
  display: block;
  margin: 0 auto 20px;
  border-radius: 60px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  cursor: pointer;
}

.welcome-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.4));
}

.welcome-subtitle {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  font-family: "Bungee", "Roboto", sans-serif;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
}

.welcome-subtitle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.welcome-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.home-page .playora-btn:focus-visible {
  outline: none;
}

/* Featured / "What We're Playing" Section */
.playing-featured-tile {
  max-width: 920px;
  margin: 0.5rem auto 1rem;
  border-radius: 20px;
  animation-delay: 20ms;
  padding: 1.5rem 2rem;
}

.playing-heading {
  text-align: center;
  color: #ffffff;
  margin: 0 0 1.2rem;
  letter-spacing: 1px;
}

.playing-content-wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.playing-cover-link {
  display: block;
  flex: 0 0 auto;
}

.image-placeholder {
  width: 360px;
  max-width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(232, 238, 245, 0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.playing-cover-img {
  width: 360px;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.playing-details {
  flex: 1;
  min-width: 260px;
}

.game-title {
  margin: 0 0 0.8rem;
  font-size: 1.65rem;
  letter-spacing: 0.5px;
}

.game-description {
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.95;
}

.playing-btn {
  padding: 0.85rem 1.55rem;
}

/* Site Footer */
.site-footer {
  text-align: center;
  padding: 1.25rem;
  color: rgba(232, 238, 245, 0.8);
  font-size: 0.95rem;
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.site-footer a {
  color: #9ec4ff;
  text-decoration: none;
}
