/* Shared layout + footer/ad styling for Games pages (matches calculators template) */

* {
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* Matches the calculator card look */
.main-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .main-card {
    padding: 2rem;
  }
}

.main-card:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb styles */
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Ad Container (same look as car-loan-calculator) */
.ad-container {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .ad-container {
    padding: 30px;
  }
}

/* Footer hover behavior (optional helpers) */
.footer-nav a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 3px 0;
  transition: all 0.2s ease;
}

.footer-nav a:hover {
  text-decoration: underline;
  padding-left: 5px;
}

/* Like button minor polish */
.like-btn {
  -webkit-tap-highlight-color: transparent;
}
