.results-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.results-description {
  padding-left: 40px;
}

.results-description p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.results-description p:last-child {
  margin-bottom: 0;
}

.results-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.result-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.result-image-dressed {
  opacity: 1;
  z-index: 2;
}

.result-image-undressed {
  opacity: 0;
  z-index: 1;
}

.result-image-container:hover .result-image-dressed {
  opacity: 0;
}

.result-image-container:hover .result-image-undressed {
  opacity: 1;
}

.results-censorship-banner {
  position: absolute;
  bottom: 40%;
  left: 40%;
  transform: translateX(-50%) rotate(-15deg);
  background: #FFD700;
  color: #000;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFA000;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-censorship-banner-small {
  position: absolute;
  bottom: 8%;
  left: 40%;
  transform: translateX(-50%) rotate(-10deg);
  background: #FF6B35;
  color: #fff;
  padding: 2px 12px;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid #E55A2B;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-image-container:hover .results-censorship-banner,
.result-image-container:hover .results-censorship-banner-small {
  opacity: 1;
}

@media (max-width: 768px) {
  .results-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .results-description {
    padding-left: 0;
  }
  
  .result-image-container {
    height: 400px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.results-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-description p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .results-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

.results-text {
  padding-left: 40px;
}

.results-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.results-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 500;
}

.results-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.results-description p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.result-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.result-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.result-image-dressed {
  opacity: 1;
  z-index: 2;
}

.result-image-undressed {
  opacity: 0;
  z-index: 1;
}

.result-image-container:hover .result-image-dressed {
  opacity: 0;
}

.result-image-container:hover .result-image-undressed {
  opacity: 1;
}

.result-image-container:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.censorship-banner {
  position: absolute;
  bottom: 50%;
  left: 65%;
  transform: translateX(-50%) rotate(-15deg);
  background: #FFD700;
  color: #000;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFA000;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.censorship-banner-small {
  position: absolute;
  bottom: 20%;
  left: 65%;
  transform: translateX(-50%) rotate(-10deg);
  background: #FF6B35;
  color: #fff;
  padding: 2px 12px;
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid #E55A2B;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-image-container:hover .censorship-banner,
.result-image-container:hover .censorship-banner-small {
  opacity: 1;
}

@media (max-width: 768px) {
  .results-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .results-text {
    padding-left: 0;
  }
  
  .results-title {
    font-size: 2rem;
  }
  
  .result-image-container {
    height: 400px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .censorship-banner {
    font-size: 8px;
    padding: 6px 12px;
    bottom: 55%;
    left: 60%;
  }
  
  .censorship-banner-small {
    font-size: 6px;
    padding: 1px 8px;
    bottom: 15%;
    left: 60%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .result-image-container:hover {
    transform: none;
  }
  
  .result-image {
    transition: none;
  }
  
  .censorship-banner,
  .censorship-banner-small {
    transition: none;
  }
}