/* 🌌 Fullscreen Dual Reels Page */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

h1 {
  color: #ff4500;
  margin: 15px 0;
  font-size: 2rem;
}

/* 🔘 Navigation Buttons from main site */
.nav-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4500;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin: 0 5px 20px;
  transition: background 0.2s, transform 0.2s;
}
.nav-btn:hover {
  background: #e03e00;
  transform: scale(1.05);
}

/* 🎥 Dual Reels container - full width & height fit */
#reels-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  height: calc(100vh - 160px); /* fills screen minus header/buttons */
  padding: 0 10px;
  box-sizing: border-box;
}

.reel {
  flex: 1;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.reel iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  object-fit: cover;
}

/* 🔄 Refresh button at bottom */
#refresh-btn {
  margin: 20px auto 40px;
  padding: 12px 30px;
  font-size: 1rem;
  background: #ff4500;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#refresh-btn:hover {
  background: #e03e00;
  transform: scale(1.05);
}

/* 📱 Responsive layout - stack vertically on small screens */
@media (max-width: 800px) {
  #reels-container {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .reel {
    height: 80vh;
    width: 100%;
  }

  #refresh-btn {
    margin-top: 10px;
  }
}
