body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

.profile-container {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.album-container {
  text-align: center;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding-top: 120px;
  position: relative;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.profile-title {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
}

.response-section {
  display: none;
  margin: 15px 0;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: Papyrus,fantasy; 
}

.input-box {
  margin-top: 15px;
}

input[type="text"] {
  padding: 10px;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #0077cc;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

.dropdown-menu {
  position: absolute;
  top: 20px;
  left: 20px;
}

.menu-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.dropdown-content {
  display: block;
  position: absolute;
  left: 0;
  top: 90px;
  background-color: white;
  min-width: 120px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 100;
  transform-origin: top left;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.dropdown-content.show {
  transform: scale(1);
  opacity: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Album Page Layout */
.album-layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}

.album-left {
  flex: 1;
  min-width: 250px;
}

.album-right {
  flex: 2;
  min-width: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.grid-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.grid-video {
  width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-container {
  width: 100%;
}

.subsection {
  margin-bottom: 30px;
}

.subsection-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  margin-top: 0;
  text-align: left;
}

.whats-new-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive: Mobile - left column on top */
@media (max-width: 768px) {
  .album-layout {
    flex-direction: column;
  }

  .album-left {
    order: -1;
  }

  .whats-new-image {
    height: 350px;
  }

  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .grid-image {
    height: 120px;
  }

  .grid-video {
    max-height: 200px;
  }
}
