*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Simplified Creator Cards Styles */
.creator-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  will-change: transform, box-shadow;
}

.creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.creator-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.creator-card:hover .creator-image img {
  transform: scale(1.05);
}

.creator-info {
  padding: 20px;
  text-align: center;
}

.creator-name {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ff6b9d;
  font-weight: 600;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Grid Layout */
#creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

/* Pagination Styles */
#pagination-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.page-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-btn.active {
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Results Count */
#results-count-text {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Language Popup */
.creator-description {
  color: #ff6b9d;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Language Selector - Custom Dropdown */
.language-selector {
  position: fixed;
  top: 4px;
  right: 20px;
  z-index: 1000;
}

.custom-select {
  position: relative;
  min-width: 120px;
}

.select-trigger {
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border: 2px solid #4ecdc4;
  border-radius: 12px;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
}

.select-trigger:hover {
  border-color: #ff6b9d;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.selected-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown-arrow {
  color: #4ecdc4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select.open .dropdown-arrow {
  transform: rotate(180deg);
}

.select-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border: 2px solid #4ecdc4;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-select.open .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.option {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option:last-child {
  border-bottom: none;
}

.option:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.1),
    rgba(78, 205, 196, 0.1)
  );
  transform: translateX(5px);
}

.option.selected {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.2),
    rgba(78, 205, 196, 0.2)
  );
}

/* Enhanced Language Popup */
.language-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.language-modal {
  background: linear-gradient(145deg, #1a1a2e 0%, #2d1b3d 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.language-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background-size: 200% 200%;
  animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.language-modal h2 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.language-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.lang-btn {
  background: linear-gradient(145deg, #1a1a2e, #2d1b3d);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 25px 35px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lang-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.lang-btn:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: #4ecdc4;
  box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

.lang-btn:hover::before {
  left: 100%;
}

.lang-btn.german:hover {
  border-color: #ff6b9d;
  box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
}

.lang-flag {
  width: 45px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.lang-btn:hover .lang-flag {
  transform: scale(1.1);
}

.lang-text {
  font-size: 1rem;
  font-weight: 700;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.lang-btn:hover .lang-text {
  color: #ffffff;
}

.modal-subtitle {
  color: #c5c5c5;
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 10px;
}

.modal-subtitle2 {
  color: #c5c5c5;
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Sparkle decoration */
.sparkle-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 25px;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4ecdc4;
  border-radius: 50%;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
  background: #ff6b9d;
}

.sparkle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
  background: #ffd93d;
}

.sparkle:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: 0.5s;
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

/* CSS */
.article-hook {
  margin: 60px auto;
  padding: 30px 0;
  max-width: 750px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.article-hook p {
  font-size: 1.25rem;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.7;
}

.callout-block {
  margin: 50px auto;
  padding: 25px 30px;
  background: #1a1a2e;
  border-left: 5px solid #4ecdc4;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.callout-block p {
  font-size: 1.2rem;
  color: #eee;
  line-height: 1.6;
}

.callout-block strong {
  color: #ff6b6b;
  font-weight: 700;
}

.text-highlight {
  font-weight: 700;
  color: #4ecdc4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0520 50%, #0a0a0a 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d1b3d 100%);
  padding: 2px 0;
  border-bottom: 2px solid #ff6b9d;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ff6b9d" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="60" r="1" fill="%234ecdc4" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="80" r="1" fill="%23ffd93d" opacity="0.2"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="2.5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23sparkle)"/></svg>')
    repeat;
  opacity: 0.3;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.price-info {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.05),
    rgba(78, 205, 196, 0.1)
  );
  border-left: 4px solid #4ecdc4;
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

.price-info::before {
  content: "💰";
  position: absolute;
  left: -18px;
  top: 15px;
  font-size: 1.5rem;
  background: #1a1a2e;
  border-radius: 50%;
  padding: 5px;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffd93d, #ff6b6b);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
}

/* css for alina */
.featured-model-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #2d1b3d 100%);
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}

.featured-model-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffd93d, #ff6b9d);
  border-radius: 25px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.card-image-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.8),
    rgba(78, 205, 196, 0.8)
  );
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.card-slider-btn.prev {
  left: 15px;
}

.card-slider-btn.next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.dot.active {
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.highlight-number {
  font-weight: 800;
  font-size: 1.2em;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.1em;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

.featured-model-card .creator-info {
  padding: 35px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9),
    rgba(45, 27, 61, 0.9)
  );
}

/* css layout */
.article-content {
  max-width: 1000px;
  margin: 0 auto;
}

.article-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
  background-image: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    #ff6b9d 0%,
    #4ecdc4 50%,
    #ffd93d 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
  position: relative;
  transition: background-position 0.1s ease;
}

.intro-text p {
  font-size: 1.2rem;
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 18px;
  line-height: 1.7;
}

.article-topic {
  margin: 70px 0;
  display: grid;
  gap: 40px;
  align-items: center;
  min-height: 400px;
}

.article-topic.layout-standard {
  grid-template-columns: 1fr 1fr;
}

.community-points {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.community-points li {
  font-size: 1.1rem;
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
}

.community-points li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: #ff6b9d;
  line-height: 1.2;
}

.card-border-wrapper {
  max-width: 500px;
  margin: 40px auto;
  padding: 5px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffd93d);
  border-radius: 25px;
  position: relative;
  box-shadow: 0 25px 60px rgba(255, 107, 157, 0.2);
}

.article-topic.layout-floating {
  grid-template-columns: 1fr;
  position: relative;
}

.layout-floating .topic-image {
  float: right;
  width: 45%;
  margin: 0 0 30px 40px;
  shape-outside: circle(50%);
}

.custom-separator {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(255, 107, 157, 0),
    rgba(78, 205, 196, 0.75),
    rgba(255, 107, 157, 0)
  );
  margin: 30px 0;
}

.article-topic.layout-diagonal {
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.3) 0%,
    transparent 50%,
    rgba(45, 27, 61, 0.3) 100%
  );
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.layout-diagonal::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 48%,
    rgba(255, 107, 157, 0.1) 49%,
    rgba(255, 107, 157, 0.1) 51%,
    transparent 52%
  );
  pointer-events: none;
}

.article-topic.layout-zigzag {
  grid-template-columns: 2fr 1fr;
  background: linear-gradient(
    45deg,
    rgba(78, 205, 196, 0.1),
    rgba(255, 107, 157, 0.1)
  );
  padding: 40px;
  border-radius: 25px;
  transform: skewY(-1deg);
}

.layout-zigzag .topic-content {
  transform: skewY(1deg);
}

.article-topic.layout-circular {
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.layout-circular .topic-image {
  position: relative;
}

.layout-circular .topic-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffd93d) 1;
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.topic-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.topic-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.topic-image:hover img {
  transform: scale(1.1);
}

.topic-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 3px solid;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4) 1;
  padding-bottom: 15px;
}

.topic-text h3,
.split-text-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 15px 0;
  color: #ffd93d;
  position: relative;
}

.topic-text h3::before,
.split-text-left h3::before {
  content: "✨";
  margin-right: 10px;
  animation: sparkle 2s ease-in-out infinite;
}

.split-text-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 15px 0;
  color: #ffd93d;
  position: relative;
}

.split-text-left h3::before {
  content: "✨";
  margin-right: 10px;
  animation: sparkle 2s ease-in-out infinite;
}

.split-text-right h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 15px 0;
  color: #ffd93d;
  position: relative;
}

.split-text-right h3::before {
  content: "✨";
  margin-right: 10px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.topic-text p {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 18px;
  line-height: 1.7;
}

.full-width-break {
  width: 100vw;
  height: 500px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.full-width-break::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.7),
    rgba(78, 205, 196, 0.7)
  );
  mix-blend-mode: multiply;
}

.full-width-break h2 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
  padding: 0 20px;
  text-align: center;
  background: linear-gradient(45deg, #ffffff, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-block {
  margin: 80px auto;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border-radius: 20px;
  border-left: 6px solid #ff6b9d;
  position: relative;
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: #ff6b9d;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.quote-block p {
  font-size: 1.5rem;
  font-style: italic;
  color: #eee;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}

/* Call to Action Styles */
.cta-section {
  margin: 80px auto;
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at var(--x-cta, 50%) var(--y-cta, 50%),
      #2d1b3d,
      #1a1a2e 40%,
      #0a0a0a 70%
    );
  background-size: 20px 20px, 100% 100%;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.4s ease;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ff6b9d, #4ecdc4, #ff6b9d);
  background-size: 200% 200%;
  animation: border-flow 4s linear infinite;
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes moveStars {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -20px);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 107, 157, 0.7),
    0 0 25px rgba(78, 205, 196, 0.5);
}

.cta-section p {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b9d, #ff6b6b);
  color: white;
  padding: 20px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  will-change: left;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 35px rgba(255, 107, 157, 0.8),
    0 0 15px rgba(255, 107, 97, 0.6);
}

.cta-button:hover::before {
  left: 100%;
}

.faq-section {
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border-radius: 25px;
  border-top: 5px solid;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4) 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-section h3 {
  color: #4ecdc4;
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-section p {
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* css model and pagination */
.creators-section {
  margin-top: 100px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
  border-top: 2px solid;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4) 1;
}

.results-count {
  color: #c5c5c5;
  font-size: 1.1rem;
  font-weight: 500;
}

.sort-dropdown {
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border: 2px solid #4ecdc4;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.sort-dropdown option {
  background: #1a1a2e;
  color: #fff;
}

.sort-dropdown:hover {
  border-color: #ff6b9d;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.stat-label {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-top: 3px;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.final-cta {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 107, 157, 0.3);
  text-align: center;
}

.final-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-button-small {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.cta-button-small:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}
.btn-primary:focus,
.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.5);
}

.page-btn:focus,
.page-btn:focus-visible {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

.cta-button:focus,
.cta-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lang-btn:focus,
.lang-btn:focus-visible {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

.card-slider-btn:focus,
.card-slider-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.select-trigger:focus,
.select-trigger:focus-visible {
  outline: 2px solid #ff6b9d;
  outline-offset: 2px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px;
}

/* ==== NEW CREATIVE LAYOUTS FOR ALINA PHOTOS ==== */
.image-strip-section {
  margin: 70px 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.5),
    rgba(45, 27, 61, 0.5)
  );
  border-radius: 25px;
  padding: 40px;
  overflow: hidden;
}

.image-strip-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.image-strip-container img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  padding: 2px;
  transition: all 0.3s ease;
}

.image-strip-container img::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  border-radius: 17px;
  z-index: -1;
}

.image-strip-container div:nth-child(odd) img:hover {
  transform: translateY(-5px) scale(1.07) rotate(3deg);
  box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
}

.image-strip-container div:nth-child(even) img:hover {
  transform: translateY(-5px) scale(1.07) rotate(-3deg);
  box-shadow: 0 15px 30px rgba(78, 205, 196, 0.4);
}

.split-content-section {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 40px;
  align-items: start;
  margin: 80px 0;
  position: relative;
}

.center-image-overlay {
  position: sticky;
  top: 100px;
  z-index: 2;
  padding: 3px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #ffd93d);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
  animation: floatAnimation 6s ease-in-out infinite;
}

.center-image-overlay img {
  width: 100%;
  border-radius: 17px;
  display: block;
}

.split-text-left,
.split-text-right {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.3),
    rgba(45, 27, 61, 0.3)
  );
  padding: 30px;
  border-radius: 20px;
}

.archive-section {
  margin: 80px 0;
  padding: 50px 40px;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.7),
    rgba(45, 27, 61, 0.7)
  );
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.archive-text p:first-of-type::first-letter {
  font-size: 4rem;
  font-weight: 900;
  color: #ff6b9d;
  float: left;
  margin-right: 0.2em;
  line-height: 0.8;
  padding-top: 0.1em;
}

.archive-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.photo-stack {
  position: relative;
  width: 250px;
  height: 350px;
  margin: 0 auto;
}

.stack-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4) 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.photo-1 {
  transform: rotate(-5deg) translateX(-10px);
  z-index: 1;
}

.photo-2 {
  transform: rotate(3deg) translateX(5px);
  z-index: 2;
}

.photo-3 {
  transform: rotate(-2deg) translateX(10px);
  z-index: 3;
}

.photo-stack:hover .photo-1 {
  transform: rotate(-8deg) translateX(-20px) translateY(-10px);
}

.photo-stack:hover .photo-2 {
  transform: rotate(0deg) translateX(0px);
}

.photo-stack:hover .photo-3 {
  transform: rotate(5deg) translateX(20px) translateY(-5px);
}

.success-section {
  position: relative;
  margin: 80px 0;
  padding: 60px 40px;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.1),
    rgba(255, 107, 157, 0.1)
  );
  border-radius: 30px;
  overflow: hidden;
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 30;
}

.float-img {
  position: absolute;
  border-radius: 20px;
  opacity: 1;
  animation: float 8s ease-in-out infinite;
  overflow: hidden;
}

.float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.float-1 {
  top: 5%;
  right: 2%;
  width: 80px;
  height: 110px;
  object-fit: cover;
  animation-delay: 0s;
}

.float-2 {
  bottom: 3%;
  left: 3%;
  width: 80px;
  height: 110px;
  object-fit: cover;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.success-content {
  position: relative;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.6),
    rgba(45, 27, 61, 0.7)
  );
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.success-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--y-glow, 50%);
  left: var(--x-glow, 50%);
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 157, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.success-content:hover::before {
  opacity: 1;
}

.footer {
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  border-top: 2px solid;
  border-image: linear-gradient(45deg, #ff6b9d, #4ecdc4) 1;
  padding: 80px 0 40px;
  margin-top: 100px;
}

.copyright {
  color: #a0a0a0;
  font-size: 1rem;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print {
  .language-popup,
  .language-selector,
  .card-slider-btn,
  .pagination,
  .cta-section,
  .floating-images {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .creator-name,
  .article-content h1,
  .topic-text h2,
  .faq-section h2 {
    background: none;
    -webkit-text-fill-color: #333;
    color: #333;
  }
}
@media (max-width: 992px) {
  .article-topic.layout-standard,
  .article-topic.layout-diagonal,
  .article-topic.layout-zigzag,
  .article-topic.layout-circular {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .layout-floating .topic-image {
    float: none;
    width: 100%;
    margin: 0 0 30px 0;
  }

  .layout-zigzag {
    transform: none;
  }

  .layout-zigzag .topic-content {
    transform: none;
  }

  .image-strip-container {
    flex-direction: column;
    align-items: center;
  }

  .image-strip-container img {
    width: 80%;
    max-width: 300px;
  }

  .split-content-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .center-image-overlay {
    position: static;
    order: 2;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .photo-stack {
    width: 200px;
    height: 280px;
  }

  .floating-images {
    display: none;
  }

  .success-content {
    background: rgba(26, 26, 46, 0.95);
  }

  .content-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .sort-dropdown {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .article-content {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }

  h1[data-key="title"] {
    order: -3;
  }

  .card-border-wrapper {
    order: -2;
  }

  .intro-text {
    order: -1;
    margin-top: 30px;
  }

  #creators-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .creator-name {
    font-size: 1.2rem;
  }

  .creator-image {
    height: 180px;
  }

  .creator-info {
    padding: 15px;
  }

  .language-selector {
    top: 5px;
    right: 15px;
  }

  .custom-select {
    min-width: 100px;
  }

  .select-trigger {
    padding: 8px 12px;
  }

  .lang-text {
    font-size: 0.8rem;
  }

  .flag-icon {
    width: 18px;
    height: 12px;
  }

  .main-content {
    padding: 20px 10px;
  }

  .article-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .featured-model-card {
    border-radius: 15px;
    margin: 1px 0;
    max-width: none;
  }

  .slider-image {
    height: 500px;
  }

  .topic-image img {
    height: 220px;
  }

  .topic-text h2 {
    font-size: 1.6rem;
  }

  .topic-text h3 {
    font-size: 1.3rem;
  }

  .topic-text p {
    font-size: 1rem;
  }

  .full-width-break {
    height: 300px;
    margin: 50px 0;
  }

  .full-width-break h2 {
    font-size: 2rem;
  }

  .cta-section {
    margin: 50px -15px;
    border-radius: 0;
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .quote-block {
    margin: 50px 0;
    padding: 30px 20px;
  }

  .quote-block p {
    font-size: 1.2rem;
  }

  .faq-section {
    padding: 30px 20px;
    margin-top: 50px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .pagination {
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .language-modal {
    padding: 40px 25px;
    margin: 20px;
  }

  .language-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .lang-btn {
    min-width: auto;
    width: 100%;
    padding: 20px 30px;
  }

  .language-modal h2 {
    font-size: 1.5rem;
  }

  .article-content h1 {
    font-size: 1.5rem;
  }

  .header-content,
  .main-content {
    padding-left: 5px;
    padding-right: 5px;
  }

  .article-content {
    padding: 0 10px;
  }

  .featured-model-card .creator-info {
    padding: 20px;
  }

  .slider-image {
    height: 500px;
  }

  .topic-image img {
    height: 180px;
  }

  .cta-section {
    margin: 40px -10px;
    padding: 30px 15px;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .card-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
