html {
  scroll-behavior: smooth;
}

/* Legal Pages Styling */
.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
}

.legal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 3em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
  background: linear-gradient(135deg, #63DF4E 0%, #52B8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 0.8em;
  font-size: 0.95em;
}

.legal-content h2 {
  color: #63DF4E;
  font-size: 1.3em;
  margin: 1.5em 0 0.8em 0;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.8em;
}

.legal-content ul li {
  margin-bottom: 0.5em;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.2em;
  position: relative;
  font-size: 0.9em;
  line-height: 1.3;
}

.legal-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #63DF4E;
  font-weight: bold;
}

.legal-content strong {
  color: rgba(255, 255, 255, 0.95);
}

.legal-content a {
  color: #63DF4E;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  color: #52B8FF;
  text-decoration: underline;
}

.back-to-home {
  text-align: center;
  margin-top: 3em;
}

.back-to-home a {
  display: inline-block;
  background: linear-gradient(135deg, #63DF4E 0%, #52B8FF 100%);
  color: white;
  padding: 0.8em 1.5em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(99, 223, 78, 0.2);
}

.back-to-home a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 223, 78, 0.3);
}

@media (max-width: 768px) {
  .legal-container {
    padding: 1em;
  }

  .legal-content {
    padding: 1.5em;
  }

  .legal-content h1 {
    font-size: 1.8em;
  }

  .legal-content h2 {
    font-size: 1.2em;
  }

  .legal-content p {
    font-size: 0.9em;
  }

  .legal-content ul li {
    font-size: 0.85em;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  cursor: auto;
}
  
  .magic-dust-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.4)"/><circle cx="80" cy="30" r="0.3" fill="rgba(255,255,255,0.3)"/><circle cx="40" cy="70" r="0.8" fill="rgba(255,255,255,0.25)"/><circle cx="90" cy="80" r="0.4" fill="rgba(255,255,255,0.35)"/><circle cx="10" cy="60" r="0.2" fill="rgba(255,255,255,0.3)"/><circle cx="60" cy="10" r="0.6" fill="rgba(255,255,255,0.28)"/><circle cx="30" cy="90" r="0.4" fill="rgba(255,255,255,0.32)"/><circle cx="70" cy="50" r="0.3" fill="rgba(255,255,255,0.26)"/><circle cx="15" cy="40" r="0.4" fill="rgba(255,255,255,0.24)"/><circle cx="85" cy="60" r="0.5" fill="rgba(255,255,255,0.3)"/><circle cx="50" cy="85" r="0.3" fill="rgba(255,255,255,0.28)"/><circle cx="75" cy="15" r="0.4" fill="rgba(255,255,255,0.26)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
    animation: floatingParticles 20s ease-in-out infinite;
  }
  
  @keyframes floatingParticles {
    0%, 100% { 
      opacity: 0.6;
      transform: translateY(0px) scale(1);
      filter: blur(0px);
    }
    25% { 
      opacity: 0.8;
      transform: translateY(-10px) scale(1.1);
      filter: blur(0.5px);
    }
    50% { 
      opacity: 0.7;
      transform: translateY(-5px) scale(1.05);
      filter: blur(0.2px);
    }
    75% { 
      opacity: 0.9;
      transform: translateY(-15px) scale(1.15);
      filter: blur(0.8px);
    }
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background: transparent;
    color: white;
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
  }
  
  
  .logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
  }
  
  .logo-container:hover {
    transform: translateY(-2px);
  }
  
  header .logo {
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    margin-right: 12px;
  }
  
  .logo-container:hover .logo {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .brand-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
  }
  
  .brand-attribution {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1;
    margin-top: 2px;
  }
  
  header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
  }
  
  header nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .hero {
    text-align: center;
    padding: 2em 2em 7em 2em;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
  }
  
  
  .hero .highlight {
    display: inline-block;
    position: relative;
  }
  
  .mojo-letter {
    display: inline-block;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: enchantedMojo 3s ease-in-out infinite;
    transition: all 0.3s ease;
  }
  
  .mojo-letter:nth-child(1) {
    animation-delay: 0s;
  }
  
  .mojo-letter:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .mojo-letter:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .mojo-letter:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  @keyframes enchantedMojo {
    0%, 100% { 
      color: #FFD700;
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
      transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% { 
      color: #FF6B6B;
      text-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
      transform: translateY(-3px) rotate(2deg) scale(1.1);
    }
    50% { 
      color: #4ECDC4;
      text-shadow: 0 0 30px rgba(78, 205, 196, 0.8);
      transform: translateY(-5px) rotate(-1deg) scale(1.15);
    }
    75% { 
      color: #45B7D1;
      text-shadow: 0 0 25px rgba(69, 183, 209, 0.8);
      transform: translateY(-2px) rotate(1deg) scale(1.05);
    }
  }
  
  .hero h1 {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 3em;
    margin-bottom: 0.5em;
    animation: slideInUp 0.6s ease-out;
  }
  
  .hero p {
    position: relative;
    z-index: 1;
    font-size: 1.2em;
    opacity: 0.9;
    animation: slideInUp 0.8s ease-out;
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  .btn {
    display: inline-block;
    margin-top: 1em;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    animation: slideInUp 1s ease-out;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn:hover {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.4);
  }
  
  .btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
  }
  
  .hero-screenshot {
    margin: 2em 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .screenshot-image {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
    opacity: 0.85;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .screenshot-image:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  }
  
  
  .features, .pricing, .install {
    padding: 2em 2em;
    max-width: 800px;
    margin: 2em auto;
    position: relative;
  }
  
  .reviews {
    padding: 2em 2em;
    max-width: 1200px;
    margin: 2em auto;
    position: relative;
  }
  
  .features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: -2em auto 2em auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
    padding: 2em 2em 4em 2em;
  }
  
  .features:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
    border-radius: 20px;
  }
  
  .features h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .features .carousel {
    width: min(100%, 1000px);
    height: 350px; /* Increased height to accommodate content properly */
    padding: 0 0 60px 0;
    list-style: none;
    border: 1px solid rgba(99, 223, 78, 0.3);
    border-radius: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    position: relative;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  
  .features .carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .features .carousel-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .features .carousel-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(99, 223, 78, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .features .carousel-nav button.active {
    background-color: rgba(99, 223, 78, 1);
    transform: scale(1.2);
  }
  
  .features .carousel-nav button:hover {
    background-color: rgba(99, 223, 78, 0.8);
    transform: scale(1.1);
  }
  
  .features .scroll-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }
  
  .features .carousel > li {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: grid;
    grid-template-columns: 350px 1fr; /* Even wider image column */
    grid-template-areas: 
      "--title --title" 
      "--img --content";
    gap: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    align-items: center; /* Center align items vertically */
  }
  
  .features .carousel > li:hover {
    transform: translateY(-2px);
  }
  
  .features .carousel > li h3 {
    grid-area: --title;
    margin: 0;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .features .carousel > li img {
    grid-area: --img;
    width: 100%;
    height: 180px; /* Slightly reduced to fit better */
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .features .carousel > li p {
    grid-area: --content;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center; /* Center text vertically */
    overflow: hidden;
    font-size: 0.95rem;
  }
  
  .features .carousel > li::scroll-marker {
    content: ' ';
    height: 20px;
    aspect-ratio: 1;
    background-color: rgba(99, 223, 78, 0.6);
    border-radius: 999px;
    transition: 150ms ease-in-out;
    cursor: pointer;
  }
  
  .features .carousel > li::scroll-marker:target-current {
    background-color: rgba(99, 223, 78, 1);
    aspect-ratio: 2/1.25;
  }
  
  .features .carousel > li::scroll-marker:hover {
    background-color: rgba(99, 223, 78, 0.8);
    transform: scale(1.1);
  }
  
  .features .carousel > li::scroll-marker:focus-visible {
    outline: 2px dashed rgba(99, 223, 78, 0.8);
    outline-offset: 4px;
  }
  
  
  
  .pricing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: 2em auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  .pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
    border-radius: 20px;
  }
  
  .pricing h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .pricing .plans {
    display: flex;
    gap: -20px;
    justify-content: center;
    position: relative;
    z-index: 1;
    align-items: flex-start;
  }
  
  .plan {
    flex: 0 0 220px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5em 1.2em;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    transform: scale(0.9);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
  }
  
  .plan:nth-child(1) {
    transform: scale(0.8) rotate(-8deg);
    z-index: 1;
    margin-right: -30px;
  }
  
  .plan:nth-child(2) {
    border: 3px solid rgba(99, 223, 78, 0.9);
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 0 20px rgba(99, 223, 78, 0.4), 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    color: #2d3748;
    opacity: 1;
    z-index: 5;
  }
  
  
  .plan:nth-child(3) {
    transform: scale(0.8) rotate(8deg);
    z-index: 1;
    margin-left: -30px;
  }
  
  .plan:hover {
    transform: scale(0.95) translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 223, 78, 0.4);
    z-index: 10;
  }
  
  .plan:nth-child(1):hover {
    transform: scale(0.85) rotate(-8deg) translateY(-8px);
    z-index: 10;
  }
  
  .plan:nth-child(3):hover {
    transform: scale(0.85) rotate(8deg) translateY(-8px);
    z-index: 10;
  }
  
  .plan:nth-child(2):hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 20px 60px rgba(99, 223, 78, 0.3);
  }
  
  
  .plan:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
  }
  
  .plan:nth-child(2)::after {
    content: 'Most Popular';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #63DF4E 0%, #7661ff 100%);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
  }
  
  .plan h3 {
    margin-top: 25px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .plan:hover h3 {
    animation: enchantedMojo 3s ease-in-out infinite;
  }
  
  .plan p {
    text-align: center;
    line-height: 2;
    margin: 0.5em 0;
    position: relative;
    z-index: 1;
  }
  
  .plan p:not(.price) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
  
  .plan .price {
    font-size: 1.25em;
    font-weight: bold;
    margin-top: 1em;
    text-align: center;
  }
  
  .reviews {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  
  .reviews:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
    border-radius: 20px;
  }
  
  .reviews h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    margin-top: 2em;
  }
  
  .review-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5em;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 223, 78, 0.4);
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1em;
    gap: 1em;
  }
  
  .reviewer-info {
    display: flex;
    align-items: center;
    gap: 1em;
    flex: 1;
  }
  
  .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63DF4E 0%, #52B8FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 223, 78, 0.3);
    overflow: hidden;
  }
  
  .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .reviewer-details {
    flex: 1;
    min-width: 0;
  }
  
  .reviewer-name {
    color: white;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 0.25em;
  }
  
  .review-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
  }
  
  .review-stars {
    color: #ffd700;
    font-size: 1.2em;
    letter-spacing: 2px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .review-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95em;
    flex: 1;
  }
  
  .install {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: 2em auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .install:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .install::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
    border-radius: 20px;
  }
  
  .install h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
.install p {
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.install-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
  
  footer {
    text-align: center;
    padding: 2em;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: white;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  footer a {
    color: #63DF4E;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  footer a:hover {
    color: #63DF4E;
    text-shadow: 0 0 10px rgba(99, 223, 78, 0.5);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    html, body {
      background-color: #667eea !important;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
      background-attachment: scroll !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      min-height: 100vh !important;
    }
    
    header {
      flex-direction: column;
      padding: 1em;
    }
    
    header nav {
      margin-top: 1em;
      display: flex;
      flex-wrap: nowrap;
      gap: 1em;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    
    header nav a {
      font-size: 0.85em;
      padding: 0.5em 0.6em;
      white-space: nowrap;
      margin: 0;
      flex-shrink: 0;
      min-width: fit-content;
    }
    
    .hero {
      padding: 2em 1em;
    }
    
    .hero h1 {
      font-size: 2em;
    }
    
    .pricing .plans {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    
    .plan {
      flex: none;
      width: 100%;
      max-width: 300px;
      transform: none !important;
      margin: 0 !important;
      height: auto;
      min-height: 280px;
    }
    
    .plan:nth-child(1),
    .plan:nth-child(3) {
      transform: none !important;
      margin: 0 !important;
    }
    
    .plan:hover {
      transform: translateY(-5px) !important;
    }
    
    .plan:nth-child(1):hover,
    .plan:nth-child(3):hover {
      transform: translateY(-5px) !important;
    }
    
    .features, .pricing, .install, .reviews {
      padding: 2em 1em;
      margin: 1em;
    }
    
    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 1em;
    }
    
    .review-card {
      padding: 1em;
    }
    
    .install-buttons {
      flex-direction: column;
      gap: 0.8em;
    }
    
    .install-buttons .btn {
      width: 100%;
      max-width: 280px;
    }
    
    .features {
      padding: 2em 1em 4em 1em;
      overflow: visible;
    }
    
    .features .carousel {
      width: 100%;
      margin: 0;
      height: 300px; /* Increased mobile height to prevent text cutoff */
      padding: 0 0 50px 0;
      overflow-x: auto;
      overflow-y: hidden;
    }
    
    .features .carousel > li {
      grid-template-columns: 1fr;
      grid-template-areas: 
        "--title" 
        "--img"
        "--content";
      padding: 1.5rem;
      margin: 0.5rem;
      gap: 1rem;
      height: auto;
      min-height: 200px;
    }
    
    .features .carousel > li img {
      height: 120px;
      width: 100%;
    }
    
    .screenshot-image {
      max-width: 80%;
      min-width: 280px;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.5em;
    }
    
    .btn {
      padding: 10px 20px;
      font-size: 0.9em;
    }
    
    .plan {
      max-width: 280px;
      padding: 1.2em 1em;
    }
    
    .plan h3 {
      font-size: 1.2em;
    }
    
    .plan p {
      font-size: 0.9em;
    }
    
    .features {
      padding: 2em 1em 4em 1em;
      overflow: visible;
    }
    
    .features .carousel {
      height: 280px; /* Increased small mobile height to prevent text cutoff */
      padding: 0 0 45px 0;
      overflow-x: auto;
      overflow-y: hidden;
    }
    
    .features .carousel > li {
      grid-template-columns: 1fr;
      grid-template-areas: 
        "--title" 
        "--img"
        "--content";
      gap: 0.8rem;
      height: auto;
      min-height: 180px;
    }
    
    .features .carousel > li img {
      height: 100px;
      width: 100%;
    }
    
    .screenshot-image {
      max-width: 90%;
      min-width: 250px;
    }
  }
  
  /* Accessibility improvements */
  .btn:focus,
  nav a:focus {
    outline: 2px solid #63DF4E;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(99, 223, 78, 0.3);
  }
  
  /* Skip to content link for screen readers */
  .skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: linear-gradient(135deg, rgba(3, 45, 66, 0.95) 0%, rgba(118, 97, 255, 0.95) 100%);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
  
  .skip-link:focus {
    top: 6px;
  }
  