body {
  font-family: 'Montserrat', sans-serif;
  background: #121212;
  color: #f4ede4;
  margin: 0;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 50px;
}

nav {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav a {
  color: #ffece8;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

.textbox {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

h2 {
  color: #aff2f8;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.controls {
  text-align: center;
  margin-top: 1rem;
}

.controls button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  margin: 0 6px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.controls img {
  width: 24px;
  vertical-align: middle;
}

.playlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.playlist div {
  background: #2a2a2a;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.playlist div:hover {
  background: #aff2f8;
  color: white;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid #aff2f8;
}

.video-wrapper,
.video-wrapper.portrait {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.social-icons {
  text-align: center;
  margin-top: 1.5rem;
}

.social-icons img {
  width: 34px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

form input,
form textarea {
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

form input::placeholder,
form textarea::placeholder {
  color: #ddd;
}

form button {
  background: #e4605e;
  color: white;
  font-weight: bold;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

form button:hover {
  background: #ff7a6a;
}

form button img {
  width: 18px;
}

footer {
  background: #1a1a1a;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#pauseBtn {
  display: none;
}