* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Model Image Styles */
.modelImage {
  margin-left: 16rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
  width: calc(100% - 16rem);
}

.contentWrapper {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Back Button */
.backButton {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
}

.backButton span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13.33px;
}

.backButton:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #1e293b;
}

.backIcon {
  width: 1rem;
  height: 1rem;
}

/* Clickable Elements */
.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.profileImageWrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.profileImageWrapper.clickable:hover .profileImage {
  transform: scale(1.05);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

.modelName.clickable:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}

/* Image Card */
.imageCard {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.imageCard:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Card Header */
.cardHeader {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.profileImage {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modelName {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.leaked, .username {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  margin-bottom: 5px;
}

.leaked {
  font-style: italic;
  font-weight: 500;
  color: #efabc5;
  background: linear-gradient(90deg, #e56f9c, #e39999, #d87093, #e192b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 10px #b0306099, 0 0 20px #8b000066;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.username {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #475569;
}

.imageInfo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #475569;
  margin: 0.8rem 0 0.5rem 0;
  font-weight: 500;
}

.photoTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.photoDescription {
  font-size: 1rem;
  color: #6b7280;
  margin: 0.5rem 0 0 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Container */
.imageContainer {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.imageWrapper {
  position: relative;
  max-width: 900px;
  cursor: pointer;
  width: 900px;
}

.image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  object-fit: cover;
}

/* Navigation Buttons */
.navigationButtons {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: white;
  border-top: 1px solid #f1f5f9;
}

.navButton {
  font-family: Arial, Helvetica, sans-serif;
  flex: 1;
  background: linear-gradient(135deg, #9333ea9e 0%, #9333eab3 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navButton:hover:not(.disabled) {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(173, 24, 187, 0.342);
}

.navButton:active:not(.disabled) {
  transform: translateY(0);
}

.navButton.disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.5;
}

.navButton.disabled:hover {
  transform: none;
  box-shadow: none;
}

.navIcon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modalClose {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modalClose:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modalImageContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
}

.modalImageFullscreen {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.1s ease;
  user-select: none;
  display: block;
  object-fit: contain;
}

.zoomInfo {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Modal Loading Styles */
.modalLoadingContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.modalSpinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modalLoadingContainer p {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modelImage {
    margin-left: 0;
    width: 100%;
  }
  
  .contentWrapper {
    padding: 1rem;
  }
  
  .cardHeader {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .modelName {
    font-size: 1.875rem;
  }
  
  .photoTitle {
    font-size: 1.25rem;
  }
  
  .imageContainer {
    padding: 1.5rem;
  }

  .imageWrapper {
    width: 100%;
  }
  
  .navigationButtons {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .navButton {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .modalClose {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }

  .zoomInfo {
    bottom: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .contentWrapper {
    padding: 0.5rem;
  }
  
  .cardHeader {
    padding: 1rem;
  }
  
  .modelName {
    font-size: 1.5rem;
  }
  
  .imageInfo {
    font-size: 0.875rem;
  }
  
  .photoTitle {
    font-size: 1.125rem;
  }
  
  .photoDescription {
    font-size: 0.875rem;
  }
  
  .imageContainer {
    padding: 1rem;
  }
  
  .navigationButtons {
    padding: 1rem;
  }
  
  .navButton {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
