* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
}

.header {
  background-color: #18181b;
  border-bottom: 1px solid #27272a;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.desktop-nav {
  display: flex;
  gap: 0.75rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background-color: #18181b;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #27272a;
}

.mobile-menu-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu-link {
  padding: 1rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
  border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
  background-color: #27272a;
  border-left-color: #ec4899;
}

@media (max-width: 640px) {
  .logo-img {
    height: 40px;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, #ec4899, #f43f5e);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: #27272a;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #3f3f46;
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.hero {
  padding: 4rem 1rem;
}

.hero-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.125rem;
  color: #a1a1aa;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.content {
  padding: 3rem 1rem;
}

.content-container {
  max-width: 80rem;
  margin: 0 auto;
}

.filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: #27272a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: #3f3f46;
}

.filter-btn.active {
  background: linear-gradient(to right, #ec4899, #f43f5e);
}

.bloggers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .bloggers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bloggers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 3.75rem;
  }
}

.blogger-card {
  background-color: #18181b;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.blogger-card:hover {
  box-shadow: 0 0 0 2px #ec4899;
}

.blogger-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.blogger-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blogger-card:hover .blogger-image img {
  transform: scale(1.05);
}

.blogger-info {
  padding: 1rem;
}

.blogger-name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.blogger-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  font-size: 0.875rem;
}

.blogger-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
}

.blogger-stat svg {
  width: 1rem;
  height: 1rem;
}

.promo-banner-section {
  padding: 1rem;
  background-color: #000;
  margin: 2rem 0;
}

.promo-banner {
  max-width: 80rem;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 63, 94, 0.15));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
}

.promo-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

@media (min-width: 768px) {
  .promo-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.promo-content {
  text-align: left;
}

.promo-icon {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.promo-icon svg {
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
  background: linear-gradient(to bottom right, #ec4899, #f43f5e);
  border-radius: 0.5rem;
}

.promo-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.promo-description {
  font-size: 0.9rem;
  color: #d4d4d8;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.promo-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.promo-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

@media (max-width: 768px) {
  .promo-image {
    grid-template-columns: 1fr;
  }
}

.ad-banner {
  margin: 3rem 0;
  background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(244, 63, 94, 0.2));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.ad-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.ad-container-with-image {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ad-container-with-image {
    grid-template-columns: 1fr 1fr;
  }
}

.ad-text-content {
  text-align: left;
}

.ad-banner-image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

@media (min-width: 768px) {
  .ad-banner-image {
    order: 2;
  }
}

.ad-banner-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.ad-icon {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.ad-icon svg {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  background: linear-gradient(to bottom right, #ec4899, #f43f5e);
  border-radius: 0.75rem;
}

.ad-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ad-description {
  font-size: 1.125rem;
  color: #d4d4d8;
  margin-bottom: 2rem;
}

.ai-banner {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  border: none;
  padding: 3rem;
  margin: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .ai-banner {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem;
  }
}

.ai-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ai-banner-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .ai-banner-container {
    grid-template-columns: 1.2fr 1fr;
  }
}

.ai-banner-content {
  text-align: left;
}

.ai-banner-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .ai-banner-title {
    font-size: 2rem;
  }
}

.ai-banner-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-huge {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: #fff;
  color: #f43f5e;
  border: none;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-huge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.ai-banner-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ai-banner-media {
    grid-template-columns: 1fr 1fr;
  }
}

.ai-media-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
  .ai-media-item {
    max-width: 90%;
    margin: 0 auto;
  }
}

.ai-media-image,
.ai-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-container {
  position: relative;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(244, 63, 94, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(244, 63, 94, 0.5);
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(244, 63, 94, 1);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.7);
}

.video-play-button.playing {
  opacity: 0;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pagination-top {
  margin-top: 0;
  margin-bottom: 2rem;
}

.pagination-btn {
  padding: 0.75rem;
  background-color: #27272a;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #3f3f46;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.page-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background-color: #27272a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.page-number:hover {
  background-color: #3f3f46;
}

.page-number.active {
  background: linear-gradient(to right, #ec4899, #f43f5e);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
  background-color: #18181b;
  border-radius: 1rem;
  max-width: 42rem;
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 51;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #27272a;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background-color: #3f3f46;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.modal-name {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.modal-description {
  color: #a1a1aa;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.modal-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: #a1a1aa;
}

.modal-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .ad-title, .promo-title {
    font-size: 1.5rem;
  }

  .promo-content, .ad-text-content {
    text-align: center;
  }

  .promo-icon, .ad-icon {
    justify-content: center;
  }
}

.featured-section {
  padding: 60px 20px;
  background-color: #000;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 80rem;
  margin: 0 auto;
}

.featured-card {
  background: #18181b;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #27272a;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-card:hover {
  transform: translateY(-5px);
  border-color: #ec4899;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.featured-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.1);
}

.featured-card-content {
  padding: 20px;
}

.featured-card-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.featured-card-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.vip-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

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

  .featured-card-content {
    padding: 15px;
  }

  .featured-card-name {
    font-size: 1rem;
  }

  .featured-card-description {
    font-size: 0.85rem;
  }
}

.gallery-page {
  min-height: 100vh;
  background-color: #000;
  padding: 100px 20px 60px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #27272a;
  border-color: #ec4899;
  transform: translateX(-5px);
}

.gallery-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  background: #18181b;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #27272a;
}

.gallery-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ec4899;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.gallery-info h1 {
  color: #fff;
  font-size: 36px;
  margin: 0 0 10px 0;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin: 0;
}

.gallery-section {
  margin-bottom: 60px;
}

.gallery-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #18181b;
  border: 1px solid #27272a;
}

.photo-item:hover {
  transform: scale(1.05);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item.locked img {
  filter: blur(20px);
}

.photo-item.locked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lock-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.lock-icon span {
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 60px;
  height: 60px;
  background: rgba(236, 72, 153, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5);
  transition: all 0.3s ease;
}

.photo-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(236, 72, 153, 1);
}

.video-play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.unlock-modal, .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.unlock-modal.active, .lightbox.active {
  display: flex;
}

.unlock-modal-content {
  background: #18181b;
  padding: 50px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  position: relative;
  border: 2px solid #ec4899;
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.unlock-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.unlock-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.unlock-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #ec4899;
}

.unlock-modal h2 {
  color: #fff;
  font-size: 32px;
  margin: 0 0 15px 0;
}

.unlock-modal p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.unlock-modal .btn {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
}

.photo-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.photo-viewer.active {
  opacity: 1;
}

.photo-viewer-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-viewer-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.photo-viewer-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.photo-viewer-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .photo-viewer-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lightbox-image {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  background: #27272a;
  border-color: #ec4899;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: #27272a;
  border-color: #ec4899;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  z-index: 2001;
}

@media (max-width: 768px) {
  .gallery-header {
    flex-direction: column;
    text-align: center;
  }

  .gallery-avatar {
    width: 120px;
    height: 120px;
  }

  .gallery-info h1 {
    font-size: 28px;
  }

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

  .unlock-modal-content {
    margin: 20px;
    padding: 40px 30px;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-content {
    max-width: calc(100% - 20px);
    max-height: calc(100vh - 100px);
    padding: 15px;
  }

  .lightbox-image {
    max-height: calc(100vh - 160px);
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lightbox-close {
    width: 50px;
    height: 50px;
    font-size: 32px;
    top: 10px;
    right: 10px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-header p {
  font-size: 1.25rem;
  color: #a1a1aa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.project-card-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  border: 1px solid #27272a;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card-banner:hover {
  transform: translateY(-5px);
  border-color: #ec4899;
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
}

.project-card-banner:hover .project-banner-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.project-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card-banner:hover .project-banner-img {
  transform: scale(1.05);
}

.project-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: all 0.3s ease;
}

.project-banner-content {
  width: 100%;
  z-index: 1;
}

.project-banner-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.project-banner-content p {
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.project-banner-content .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .projects-header h1 {
    font-size: 2rem;
  }

  .projects-header p {
    font-size: 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card-banner {
    height: 350px;
  }

  .project-banner-overlay {
    padding: 20px;
  }

  .project-banner-content h2 {
    font-size: 1.25rem;
  }

  .project-banner-content p {
    font-size: 0.9rem;
  }
}
