/* Global Styles */
:root {
  --primary-color: #8e44ad;
  --secondary-color: #9b59b6;
  --background-color: #13111a;
  --text-color: #f5f5f5;
  --accent-color: #e056fd;
  --card-bg: rgba(25, 20, 35, 0.6);
  --transition-speed: 0.3s;
  --content-bg: rgba(0, 0, 0, 0.4);
}

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

html {
  min-height: 100%;
  overflow-y: scroll; /* Always show scrollbar */
  scrollbar-width: thin; /* For Firefox */
  -ms-overflow-style: scrollbar; /* For Internet Explorer and Edge */
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../6vmozp1fdb.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.3);
  z-index: -1;
}

body::after {
  content: '';
  position: absolute;
  top: 0; /* Start from top of page */
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: calc(100% - 30px);
  height: 100%; /* Only extend to footer */
  background: linear-gradient(to bottom, transparent 0%, transparent 615px, #0b0810 615px, #0b0810 650px, rgba(11, 8, 16, 0.8) 700px, rgba(11, 8, 16, 0.6) 800px, rgba(11, 8, 16, 0.4) 900px);
  z-index: -1;
  border-radius: 0;
  bottom: auto; /* Remove bottom setting */
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
}

.content-wrapper {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0; /* No space before footer */
}

.content-section {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  height: 100%;
  overflow-y: auto;
  padding: 15px 0;
  margin-top: 0;
  position: relative;
}

/* Specific settings for non-links sections */
#about {
  height: auto; /* Auto height to show all content */
  overflow-y: visible; /* Hide scrollbar */
  max-height: none; /* Remove max height constraint */
  padding-top: 0; /* Start at same position as My Links */
}

#trailer {
  height: 480px; /* Fixed height to match links section height */
  overflow-y: auto; /* Enable scroll bar for trailer section */
  padding-top: 0; /* Start at same position as My Links */
}

#opinions {
  height: auto; /* Allow natural height */
  overflow: visible; /* Allow content to be visible and navigation arrows to work */
  padding-bottom: 40px; /* Space for navigation controls */
  padding-top: 0; /* Start at same position as My Links */
}

/* Ensure opinions navigation is visible and positioned correctly */
.opinions-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
  z-index: 100; /* High z-index to ensure visibility */
  position: relative; /* Establish positioning context */
}

.opinions-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
  z-index: 100; /* High z-index to ensure visibility */
  position: relative; /* Establish positioning context */
}

.content-section.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header Styles */
header {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('../8i1tx7l8ar.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 600px;
  max-width: calc(100% - 30px);
  height: 0;
  padding-bottom: 600px; /* Double the height */
  margin: 15px auto 0;
  border-radius: 20px 20px 0 0; /* Rounded top, square bottom */
}

/* Removed fading effect */

.header-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* Social Media Links */
.social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  justify-content: center;
}

.social-link {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.social-link:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.of-icon, .mv-icon, .fs-icon, .rd-icon, .rg-icon, .ig-icon, .x-icon, .business-icon {
  width: 30px;
  height: 30px;
}

.link-icon .of-icon, .link-icon .mv-icon, .link-icon .fs-icon, .link-icon .rd-icon, .link-icon .rg-icon, .link-icon .ig-icon {
  width: 36px;
  height: 36px;
}

/* Navigation */
.navigation {
  text-align: center;
  padding: 15px 0;
  background-color: transparent;
  border-radius: 0;
  margin: 0 auto 15px;
  width: 600px;
  max-width: calc(100% - 30px);
  box-shadow: none;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 20px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

/* Links Grid */
.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px 15px 30px 15px; /* Add bottom padding to end after instagram/throne tiles */
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.link-tile.featured {
  grid-column: 1 / -1; /* Span full width */
  grid-row: span 2; /* Span two rows */
}

.link-tile.tall {
  grid-row: span 2; /* Span two rows vertically */
}

.tall .link-item {
  height: 315px; /* Double height plus gap */
}

#links {
  margin-top: 0;
  padding-top: 0;
  overflow-y: hidden; /* Remove scroll bar from links section */
}

.link-tile {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--card-bg);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.link-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-item {
  display: block;
  height: 150px;
  position: relative;
  background-image: url('../e9iwumycx0.jpg');
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: white;
  overflow: hidden;
  image-rendering: auto;
  -webkit-filter: blur(0.3px) contrast(0.9) brightness(1.1);
  filter: blur(0.3px) contrast(0.9) brightness(1.1);
}

.featured .link-item {
  height: 315px; /* Double height plus gap */
}

.link-item.exclusive-content {
  background-image: url('../frutoyc08k.jpg');
  background-position: 25% center;
}

.link-item.content-preview {
  background-image: url('../lo3f22pp78.jpg');
}

.link-item.fansly {
  background-image: url('../d5hfbngs1f.jpg');
}

.link-item.throne {
  background-image: url('../e8wjhiuy1g.jpg');
}

.link-item.business {
  background-image: url('../ptsh01hs7i.jpg');
}

.link-item.video-store {
  background-image: url('../apccdeiz2d.jpg');
}

.link-item.instagram {
  background-image: url('../84q4v0t0fy.jpg');
  background-position: top; /* Align top edge of image with top of tile */
}

.link-item.x-alt {
  background-image: url('../byge1r7zjs.jpg');
  background-position: center;
}

.link-item.redgifs {
  background-image: url('../6s9gtbbrud.jpg');
  background-position: top center; /* Show entire head */
}

.link-item.reddit {
  background-image: url('../ueqit9sict.jpg');
  background-position: top; /* Align top edge of image with top of tile */
}





.link-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.2rem;
  z-index: 2;
}

.link-item h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  z-index: 1;
}

/* About Section */
.about-container {
  display: flex;
  justify-content: center;
}

.about-text {
  padding: 20px;
}

/* Trailer Section */
.trailer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 5px 20px 5px; /* Minimal padding to nearly touch edges */
  max-height: calc(100vh - 200px);
  overflow: hidden;
}

.trailer-slideshow-container {
  position: relative;
  width: calc(100% - 10px); /* Nearly full width with minimal margin */
  max-width: none;
  margin-bottom: 10px;
}

.trailer-slideshow {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  background: transparent;
}

.trailer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.trailer-slide.active {
  opacity: 1;
}

.trailer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  background: transparent;
}

.nsfw-button-container {
  text-align: center;
}

#nsfw-trailer-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

#nsfw-trailer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(142, 68, 173, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  line-height: 1.5;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* Opinions Section */
.opinions-wrapper {
  position: relative;
  max-width: 600px;
  margin: 5px auto 0;
  padding: 0 15px;
}

.opinions-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
}

.opinions-slider {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.opinion-card {
  background-color: transparent;
  border-radius: 15px;
  padding: 0;
  box-shadow: none;
  transition: opacity 0.5s ease;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden; /* This ensures border-radius clips the content */
}

.opinion-card.active {
  opacity: 1;
}

.opinion-card:hover {
  transform: none;
  box-shadow: none;
}

.opinion-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  display: block;
  opacity: 0.9; /* Add transparency to opinion images */
  filter: brightness(1.05) contrast(0.95); /* Subtle enhancement for better transparency effect */
  transition: opacity 0.3s ease;
}

/* Remove specific styling for 4th screenshot - use default scaling */

.opinion-image:hover {
  opacity: 1; /* Full opacity on hover */
}

.opinions-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.opinions-nav button {
  background: var(--card-bg);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.opinions-nav button:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 8px 20px rgba(142, 68, 173, 0.6);
}

.opinions-nav button i {
  font-size: 1.2rem;
}

/* Review Button */
.review-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.review-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.review-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.5);
}

.review-button-container a {
  text-decoration: none;
}

.opinions-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--card-bg);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.dot.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Trailer Section */
.trailer-container {
  max-width: 100%;
  margin: 0 auto;
}

.trailer-image-container {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background-color: var(--card-bg);
  transition: transform var(--transition-speed) ease;
  max-width: 600px;
  margin: 0 auto;
}

.trailer-image-container:hover {
  transform: translateY(-3px);
}

.trailer-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  max-width: 100%;
}

.nsfw-button-container {
  margin-top: 20px;
  text-align: center;
}

#nsfw-trailer-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
  text-decoration: none;
  display: inline-block;
}

#nsfw-trailer-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.5);
  color: white;
}

.nsfw-button-container a {
  text-decoration: none;
}

/* Footer */
.footer {
  width: 600px;
  max-width: calc(100% - 30px);
  margin: 20px auto 0;
  padding: 15px 0;
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.15), rgba(11, 8, 16, 0.5)); /* Further increased transparency */
  border-radius: 0 0 20px 20px;
  text-align: center;
  backdrop-filter: blur(15px); /* Even more blur for better transparency effect */
  border-top: 1px solid rgba(142, 68, 173, 0.15); /* Even lighter border */
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05); /* Even lighter shadow */
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer p {
  color: var(--text-color);
  font-size: 0.9rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  /* Set root element to scale properly */
  html {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Footer mobile adjustments */
  .footer {
    width: 100%;
    max-width: none;
    border-radius: 0;
    margin: 15px auto 0;
  }
  
  .footer p {
    font-size: 0.65rem; /* Smaller text to match navigation bar size */
    letter-spacing: 1.2px;
    font-weight: 300;
  }
  
  /* Use mobile background */
  body::before {
    background: url('../z8x9tpcssl.png');
    background-size: 100% 100%;
    background-attachment: fixed;
    filter: blur(0) brightness(1);
  }
  
  /* Header: Full width maintaining desktop proportions */
  header {
    width: 100%;
    max-width: none;
    height: 0;
    padding-bottom: 100%; /* Keep square proportions */
    margin: 0 auto;
    border-radius: 0;
    position: relative;
  }
  
  /* Navigation: Scale to fit mobile */
  .navigation {
    width: 100%;
    max-width: none;
    margin: 0 auto 15px;
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
  }
  
  .nav-links {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .nav-links a {
    font-size: 0.6rem; /* Smaller text to fit 4 tabs */
    padding: 4px 8px;
    white-space: nowrap;
  }
  
  /* Container: Full width */
  .container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  
  /* Grid: Scale proportionally */
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 5px;
    margin: 0 auto;
    width: calc(100% - 10px); /* Minimal margin on sides */
  }
  
  /* Scale all tiles proportionally */
  .link-tile.featured {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
  
  .featured .link-item {
    height: calc(50vw + 5px); /* Proportional to viewport */
  }
  
  .link-tile.tall {
    grid-row: span 2;
  }
  
  .tall .link-item {
    height: calc(50vw + 5px); /* Proportional to viewport */
  }
  
  .link-item {
    height: calc(25vw); /* Proportional to viewport */
  }
  
  /* Scale tile text proportionally */
  .link-item h2 {
    font-size: calc(0.6rem + 1vw); /* Proportional text size */
    padding: calc(2px + 1vw);
    letter-spacing: 0.5px;
  }
  
  /* Scale social links */
  .social-links {
    bottom: 10px;
    gap: 4px;
  }
  
  .social-link {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  
  /* Remove the gradient background for mobile */
  body::after {
    display: none;
  }
  
  /* Mobile content sections - full width like My Links */
  #trailer, #opinions {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    padding: 0 0 15px 0;
    box-sizing: border-box;
  }
  
  /* About section keeps original spacing */
  #about {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    padding: 0 10px 15px 10px;
    box-sizing: border-box;
  }
  
  /* About section mobile scaling */
  .about-container {
    width: 100%;
    padding: 0;
  }
  
  .about-text {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .about-text h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 0.8rem;
    margin-bottom: 12px;
    word-wrap: break-word;
  }
  
  /* Trailer section mobile scaling */
  .trailer-container {
    width: 100%;
    padding: 15px 5px 0 5px;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  
  .trailer-slideshow-container {
    width: calc(100% - 10px);
    margin-bottom: 15px;
  }
  
  .trailer-slideshow {
    height: 250px;
  }
  
  #nsfw-trailer-btn {
    font-size: 0.9rem;
    padding: 12px 25px;
  }
  
  /* Opinions section mobile scaling */
  .opinions-wrapper {
    width: 100%;
    max-width: none;
    padding: 0 5px;
    margin: -10px auto 0;
    margin-top: -10px;
  }
  
  .opinion-card {
    padding: 0;
    min-height: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    background-color: transparent;
    position: absolute;
    width: 100%;
  }
  
  .opinions-container {
    height: 200px;
  }
  
  .opinion-image {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
  }
  
  .opinions-nav {
    margin-top: 20px;
    gap: 15px;
  }
  
  .opinions-nav button {
    width: 35px;
    height: 35px;
  }
  
  .opinions-nav button i {
    font-size: 0.9rem;
  }
  
  .review-btn {
    font-size: 0.7rem;
    padding: 8px 15px;
  }
  
  .opinions-dots {
    margin-top: 10px;
  }
  
  .nsfw-button-container {
    margin-top: 0; /* Remove any top margin */
    width: 100%;
    text-align: center;
  }
  
  #nsfw-trailer-btn {
    font-size: 0.9rem; /* Slightly smaller for mobile */
    padding: 12px 24px; /* Slightly smaller padding for mobile */
  }
  
  #opinions {
    height: auto;
    max-height: 80vh;
    padding-bottom: 40px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Trailer image container for mobile */
  .trailer-image-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Mobile opinions section scaling - full width like trailer */
  .opinions-wrapper {
    max-width: calc(100% - 10px); /* Nearly full width with minimal margin */
    margin: calc(2px + 1vw) auto 0;
    padding: 0 5px; /* Minimal padding to nearly touch edges */
  }
  
  .opinions-container {
    height: calc(60vw);
    border-radius: calc(8px + 1vw);
    width: 100%; /* Ensure full width */
  }
  
  /* Scale opinions elements */
  .opinions-nav button {
    width: calc(25px + 2vw);
    height: calc(25px + 2vw);
  }
  
  .opinions-nav button i {
    font-size: calc(0.8rem + 0.5vw);
  }
  
  .opinions-nav {
    margin-top: calc(15px + 2vw);
  }
  
  /* Scale review button for mobile */
  .review-btn {
    font-size: 0.6rem;
    padding: 6px 12px;
    letter-spacing: 0.5px;
  }
  
  .review-button-container {
    gap: 6px;
    margin-top: 15px;
  }
}

/* Contact Form Popup */
.contact-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.contact-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(11, 8, 16, 0.95), rgba(25, 15, 35, 0.95));
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(142, 68, 173, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(142, 68, 173, 0.3);
}

.contact-header h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
}

.close-btn:hover {
  background-color: rgba(142, 68, 173, 0.2);
  color: var(--accent-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(142, 68, 173, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--text-color);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(142, 68, 173, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn-cancel,
.btn-send {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cancel {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cancel:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-send {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.btn-send:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

.btn-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-status.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-status.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Mobile adjustments for contact form */
@media screen and (max-width: 768px) {
  .contact-popup {
    width: 95%;
    padding: 20px;
    margin: 10px;
  }
  
  .contact-header h3 {
    font-size: 1.2rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-cancel,
  .btn-send {
    width: 100%;
  }
}