/* Infinite Bond Page Specific Styles */

/* Dark theme for Infinite Bond */
body {
  background: linear-gradient(135deg, #2d1b69 0%, #8b1538 100%);
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2d1b69 0%, #8b1538 100%);
  padding: 6em 0 4em 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 20, 147, 0.3) 0%,
    rgba(138, 43, 226, 0.3) 50%,
    transparent 70%
  );
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.1;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 2em;
  opacity: 0.9;
  line-height: 1.5;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1em;
  justify-content: flex-start;
}

.hero-image {
  text-align: center;
}

.hero-phones {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Games Section */
.games-section {
  padding: 5em 0;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-align: center;
}

.games-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2em;
}

.games-image {
  margin-bottom: 3em;
}

.couple-image {
  width: 120%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: scale(1.2);
}

.games-text {
  max-width: 600px;
  margin: 0 auto;
}

.games-text p {
  font-size: 1.2em;
  line-height: 1.6;
  opacity: 0.9;
}

/* Spicy Section */
.spicy-section {
  padding: 5em 0;
  background: #0a0a0a;
  color: white;
}

.spicy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
  margin-top: 2em;
}

.spicy-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Discount Section */
.discount-section {
  padding: 3em 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.discount-content h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.discount-bar {
  width: 100%;
  max-width: 400px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 2em auto;
  overflow: hidden;
}

.discount-progress {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #ffa500);
  border-radius: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.btn-discount {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  border: none;
  padding: 1em 2em;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-discount:hover {
  transform: scale(1.05);
}

/* Gameplay Section */
.gameplay-section {
  padding: 5em 0;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.gameplay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2em;
  row-gap: 3em;
  margin-top: 3em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gameplay-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  border: none;
  transition: transform 0.3s ease;
  margin: 0;
}

.gameplay-card:hover {
  transform: scale(1.05);
  z-index: 10;
  position: relative;
}

.gameplay-image {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 1em;
}

/* Comments Section */
.comments-section {
  padding: 5em 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.comments-container {
  margin-top: 3em;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.comments-container::before,
.comments-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 10;
  pointer-events: none;
}

.comments-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.comments-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.comments-scroll {
  display: flex;
  gap: 2em;
  animation: scroll-comments 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.comments-scroll:hover {
  animation-play-state: paused;
}

@keyframes scroll-comments {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -50%));
  }
}

.comment-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2em;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 20, 147, 0.5);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.user-avatar:hover {
  transform: scale(1.1);
  border-color: rgba(255, 20, 147, 0.8);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.user-info h4 {
  margin: 0 0 0.3em 0;
  font-size: 1.1em;
  color: white;
  font-weight: 600;
}

.rating {
  font-size: 0.9em;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5em 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 3em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.newsletter-form {
  max-width: 500px;
  margin: 2em auto 0;
}

.newsletter-input-group {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}

.newsletter-input-group input {
  flex: 1;
  padding: 1em;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  outline: none;
}

.newsletter-input-group button {
  padding: 1em 2em;
  border: none;
  border-radius: 50px;
  background: white;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-input-group button:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content,
  .spicy-content {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .hero-text h1 {
    font-size: 2.5em;
  }

  .games-content {
    flex-direction: column;
  }

  .couple-image {
    width: 100%;
    transform: scale(1);
  }

  .gameplay-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .newsletter-input-group {
    flex-direction: column;
  }
}

/* Logo gradient styling for Infinite Bond page */
.logo {
  background: linear-gradient(45deg, #ffb3d9 0%, #d63384 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 1px;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .logo {
    color: #d63384;
  }
}

/* Dark theme adjustments */
[data-theme="dark"] body {
  background: linear-gradient(135deg, #1a0d2e 0%, #4a0e2d 100%);
}

[data-theme="dark"] .logo {
  background: linear-gradient(45deg, #ffc0cb 0%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #1a0d2e 0%, #4a0e2d 100%);
}

[data-theme="dark"] .games-section,
[data-theme="dark"] .gameplay-section {
  background: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .spicy-section {
  background: #000000;
}

[data-theme="dark"] .comments-section {
  background: rgba(0, 0, 0, 0.8);
}
