/* Base styles */
:root {
    --bg-color: #ffffff;
    --accent: #007bff;
    --text: #000000;
  }
  
  body {
    margin: 0;
    font-family: sans-serif;
    background-color: var(--bg-color);
    color: var(--text);
  }
  
  h1, h2 {
    text-align: center;
    margin-top: 1rem;
  }
  
  .video-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
  }
  
  .video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 8px;
  }
  
  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    text-align: center;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
  }
  
  
  
  .ios-btn {
    background-color: #007aff;
  }
  
  .android-btn {
    background-color: #3ddc84;
  }
  
  .game-description,
  .game-update,
  .back-link,
  .similar-games {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
  }
  
  .back-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
  }
  
  .similar-games .game-card-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .similar-games .game-card {
    background-color: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
  }
  
  .fade-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  
  #sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    padding: 5px 0;
}
  
.accordion {
  max-width: 700px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.accordion-header {
  width: 100%;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #00000033;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0;
}

.accordion-content.open {
  padding: 1rem 0;
  max-height: 500px; /* big enough for most content */
}
