  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #0a0a0a;
      color: #ffffff;
      font-family: 'Arial', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Cinematic Background */
    .cinematic-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
      z-index: -2;
      animation: etherealFloat 20s ease-in-out infinite;
    }

    .cinematic-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 40, 0.9) 50%, rgba(0, 0, 0, 0.8) 100%);
      z-index: -1;
    }

    @keyframes etherealFloat {
      0%, 100% { transform: translate(0px, 0px) scale(1); }
      25% { transform: translate(20px, -30px) scale(1.05); }
      50% { transform: translate(-20px, 20px) scale(0.95); }
      75% { transform: translate(30px, 10px) scale(1.02); }
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-top: 80px;
      overflow: hidden;
    }

    .hero-content {
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }

    .hero-title {
      font-size: 4.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientShift 4s ease-in-out infinite;
      margin-bottom: 20px;
      text-shadow: 0 0 50px rgba(255, 107, 107, 0.5);
      letter-spacing: -2px;
    }

    .hero-subtitle {
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
      animation: fadeInUp 1s ease-out 0.5s both;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Floating Elements */
    .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .floating-element {
      position: absolute;
      width: 6px;
      height: 6px;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
      border-radius: 50%;
      animation: floatAround 15s linear infinite;
      opacity: 0.7;
    }

    .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
    .floating-element:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
    .floating-element:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 14s; }
    .floating-element:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
    .floating-element:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 13s; }
    .floating-element:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 17s; }
    .floating-element:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 15s; }

    @keyframes floatAround {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 0.7;
      }
      90% {
        opacity: 0.7;
      }
      100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
      }
    }

    /* Products Section */
    .products-section {
      position: relative;
      padding: 100px 20px;
      z-index: 3;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      position: relative;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      padding: 40px;
      text-align: center;
      overflow: hidden;
      transform: translateY(20px);
      opacity: 0;
      animation: cardReveal 1s ease-out forwards;
      backdrop-filter: blur(20px);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .product-card:nth-child(1) { animation-delay: 0.2s; }
    .product-card:nth-child(2) { animation-delay: 0.4s; }

    .product-card::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.6s ease;
    }

    .product-card:hover::before {
      left: 100%;
    }

    .product-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 25px;
      z-index: -1;
    }

    .product-card:hover {
      transform: translateY(-15px) scale(1.02);
      border-color: rgba(255, 107, 107, 0.5);
      box-shadow: 
        0 25px 50px rgba(255, 107, 107, 0.3),
        0 0 100px rgba(78, 205, 196, 0.2);
    }

    .product-card:hover::after {
      opacity: 1;
    }

    @keyframes cardReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .product-card img {
      width: 200px;
      height: 200px;
      object-fit: contain;
      margin-bottom: 30px;
      border-radius: 15px;
      transition: all 0.4s ease;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .product-card:hover img {
      transform: scale(1.1) rotate(3deg);
      filter: drop-shadow(0 20px 40px rgba(255, 107, 107, 0.4));
    }

    .product-card h3 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 15px;
      background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }

    .product-card p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 35px;
      line-height: 1.4;
    }

    .explore-btn {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 18px 35px;
      background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .explore-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #4ecdc4, #45b7d1);
      transition: left 0.3s ease;
      z-index: -1;
    }

    .explore-btn:hover::before {
      left: 0;
    }

    .explore-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    }

    .explore-btn .arrow {
      transition: transform 0.3s ease;
      font-size: 1.3rem;
    }

    .explore-btn:hover .arrow {
      transform: translateX(5px);
    }

    /* Pulse Animation */
    .pulse-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300px;
      height: 300px;
      border: 2px solid rgba(255, 107, 107, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 3s ease-out infinite;
      z-index: 0;
    }

    .pulse-ring:nth-child(2) {
      animation-delay: 1s;
      border-color: rgba(78, 205, 196, 0.3);
    }

    .pulse-ring:nth-child(3) {
      animation-delay: 2s;
      border-color: rgba(69, 183, 209, 0.3);
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
      }
      100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .product-card {
        padding: 30px 20px;
      }
      
      .product-card h3 {
        font-size: 1.8rem;
      }
      
      .product-card img {
        width: 150px;
        height: 150px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }
    }