
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
            color: #fff;
            overflow-x: hidden;
        }

        .header {
            background: rgba(10, 14, 39, 0.95);
            padding: 1rem 0.7rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #e63946;
        }

        .nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: "▶";
            -webkit-text-fill-color: #e63946;
            font-size: 2.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #e63946;
        }

        .btn-primary {
            background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
            color: #fff;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-get {
            background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
            color: #fff;
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-get:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
        }

        .hero {
            margin-top: 80px;
            padding: 6rem 2rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff 0%, #e63946 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #ccc;
        }

        .movies-slider {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .movies-track {
            display: flex;
            gap: 1.5rem;
            animation: scroll 30s linear infinite;
        }

        .movie-card {
            min-width: 200px;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .movie-card:hover {
            transform: scale(1.05);
        }

        .movie-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .features {
            max-width: 1400px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(26, 31, 58, 0.6);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid transparent;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            border-color: #e63946;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #e63946;
        }

        .trial-section {
            max-width: 1400px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .glass {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rounded-3xl {
            border-radius: 1.5rem;
        }

        .trial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding: 3rem;
        }

        .trial-info h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .trial-info p {
            color: rgba(203, 213, 225, 0.9);
            margin-bottom: 1.5rem;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: 0.75rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .whatsapp-btn:hover {
            background: #20BA5A;
        }

        .email-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
        }

        .email-btn:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .trial-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .trial-form input,
        .trial-form textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .trial-form input::placeholder,
        .trial-form textarea::placeholder {
            color: rgba(148, 163, 184, 1);
        }

        .trial-form input:focus,
        .trial-form textarea:focus {
            outline: none;
            border-color: #e63946;
            background: rgba(255, 255, 255, 0.08);
        }

        .trial-form button {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .trial-form button:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .hidden {
            display: none;
        }

        .success-popup {
            margin-top: 1rem;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
        }

        .success-content {
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }

        .success-icon {
            display: inline-flex;
            height: 2.25rem;
            width: 2.25rem;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.2);
            border: 1px solid rgba(230, 57, 70, 0.4);
        }

        .success-icon svg {
            height: 1.25rem;
            width: 1.25rem;
            color: #e63946;
        }

        .success-text p:first-child {
            font-weight: 600;
            color: white;
        }

        .success-text p:last-child {
            margin-top: 0.25rem;
            color: rgb(226, 232, 240);
            font-size: 0.875rem;
        }

        .success-text span {
            text-transform: uppercase;
            font-weight: 600;
        }

        .close-btn {
            margin-left: auto;
            padding: 0.25rem 0.5rem;
            color: rgb(203, 213, 225);
            background: transparent;
            border: none;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .close-btn:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .channels {
            background: rgba(26, 31, 58, 0.4);
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .channels h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #e63946;
        }

        .channel-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .channel-item {
            background: rgba(10, 14, 39, 0.8);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .channel-item:hover {
            border-color: #e63946;
            transform: scale(1.05);
        }

        .pricing {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #e63946;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: rgba(26, 31, 58, 0.6);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: #e63946;
            transform: scale(1.05);
        }

        .pricing-card.featured {
            border-color: #e63946;
            background: rgba(230, 57, 70, 0.1);
        }

        .price {
            font-size: 3rem;
            color: #e63946;
            margin: 1rem 0;
        }

        .footer {
            background: rgba(10, 14, 39, 0.95);
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 4rem;
            border-top: 2px solid #e63946;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #e63946;
        }

        @media (max-width: 1024px) {
            .trial-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .trial-grid {
                padding: 1.5rem;
            }
        }

        /* Section styling */
.devices-section {
  padding: 3rem 1rem;              /* similar to py-12 */
  background: rgba(12, 18, 28, 0.4); /* inky-800/40 vibe */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1200px; /* like max-w-7xl */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Title */
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #94a3b8; /* slate-400 */
  margin: 0;
}

/* Grid */
.devices-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  opacity: 0.8;
}

@media (min-width: 640px) {
  .devices-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Device item */
.device-item {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/*FAQ*/
.faq-section {
  padding: 5rem 1rem; 
  background: rgba(12, 18, 28, 0.4); /* inky-800/40 */
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #fff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.faq-header p {
  color: rgba(203,213,225,0.9); /* slate-300/90 */
  font-size: 1rem;
}

/* FAQ list */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ item */
.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-item:hover {
  background: rgba(255,255,255,0.08);
}

/* Question */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  margin: 0;
}

/* Toggle arrow */
.faq-toggle {
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(203,213,225,0.9);
  line-height: 1.5;
  transition: max-height 0.3s ease;
}

/* When open */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough to show text */
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}
