/* General Page Style */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b0b0b;
  color: #f2d4d7;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: linear-gradient(90deg, #6a0dad, #ffb6c1);
  padding: 20px;
  color: white;
  font-size: 1.5em;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.4);
}

/* Tabs Navigation */
.tabs {
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #6a0dad;
}

.tab-button {
  background: none;
  border: none;
  color: #ffb6c1;
  font-size: 1em;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-button:hover {
  background-color: #6a0dad;
  color: white;
}

.tab-button.active {
  background-color: #ffb6c1;
  color: #1a1a1a;
  font-weight: bold;
}

/* Tabs Content */
.tab-content {
  margin-top: 20px;
  flex: 1;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.iframe-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

iframe {
  width: 80%;
  height: 300px;
  border: 2px solid #6a0dad;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Open Button */
.open-btn {
  text-decoration: none;
  background-color: #6a0dad;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s;
}

.open-btn:hover {
  background-color: #ffb6c1;
  color: #1a1a1a;
}

/* Footer Credits */
footer {
  background-color: #1a1a1a;
  padding: 10px;
  font-size: 0.8em;
  color: #ffb6c1;
  border-top: 2px solid #6a0dad;
  box-shadow: 0 -2px 8px rgba(106, 13, 173, 0.4);
}

.credit-name {
  color: #ffb6c1;
  font-weight: 600;
}
