
    /* ============================================
       MAX MEDIA PLAYER THEME - TRANSPARENT HERO CONTAINER SHIFTED RIGHT
       Glass/transparent container positioned on right side
       Navbar and footer have exact same dark color
       All original content preserved
       ============================================ */

    :root {
      --max-primary: #e63946;
      --max-primary-dark: #c1121f;
      --max-secondary: #00e5ff;
      --max-accent: #f4a261;
      --max-text-dark: #1e293b;
      --max-text-muted: #64748b;
      --max-border: #e2e8f0;
      /* Navbar & Footer - EXACT SAME SOLID COLORS */
      --max-nav-footer-bg: #0f172a;
      --max-nav-footer-text: #ffffff;
      --max-nav-footer-text-muted: #cbd5e1;
      /* Content area background */
      --max-content-bg: #f8fafc;
      --max-card-bg: #ffffff;
      /* Hero transparent container */
      --hero-glass-bg: rgba(10, 14, 26, 0.7);
      --hero-glass-border: rgba(255, 255, 255, 0.15);
    }

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

    body {
      background-color: var(--max-content-bg);
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      color: var(--max-text-dark);
      overflow-x: hidden;
    }

    /* No background pattern */
    .bg-pattern {
      display: none;
    }

    /* Spinner */
    #spinner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--max-content-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.4s ease;
    }

    .elegant-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid var(--max-border);
      border-top: 3px solid var(--max-primary);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Navbar - SOLID color */
    .navbar-elegant {
      background: var(--max-nav-footer-bg);
      padding: 0.5rem 2rem;
      border-bottom: 1px solid #1e293b;
    }

    .nav-link-elegant {
      color: var(--max-nav-footer-text-muted) !important;
      font-weight: 500;
      margin: 0 0.25rem;
      transition: all 0.3s;
    }

    .nav-link-elegant:hover,
    .nav-link-elegant.active {
      color: var(--max-primary) !important;
    }

    .navbar-toggler .fa-bars {
      color: var(--max-nav-footer-text) !important;
    }

    .btn-blue {
      background: var(--max-primary);
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 40px;
      font-weight: 600;
      color: white;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-blue:hover {
      background: var(--max-primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
      color: white;
    }

    .btn-sm {
      padding: 0.4rem 1.2rem;
      font-size: 0.85rem;
    }

    .btn-outline-red {
      background: transparent;
      border: 2px solid var(--max-primary);
      padding: 0.55rem 1.5rem;
      border-radius: 40px;
      font-weight: 600;
      color: var(--max-primary);
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }

    .btn-outline-red:hover {
      background: var(--max-primary);
      color: white;
    }

    /* Hero Section - with transparent glass container shifted RIGHT */
    .hero-elegant {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
    }

    .hero-bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: flex;
      justify-content: flex-end;
    }

    /* TRANSPARENT/GLASS CONTAINER on RIGHT SIDE */
    .hero-text-box {
      max-width: 550px;
      width: 90%;
      margin: 0;
      margin-right: 5%;
      background: var(--hero-glass-bg);
      backdrop-filter: blur(12px);
      border-radius: 48px;
      padding: 2rem 2rem;
      border: 1px solid var(--hero-glass-border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .hero-title-wrapper {
      background: rgba(230, 57, 70, 0.2);
      display: inline-block;
      padding: 0.4rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      color: var(--max-primary);
      font-weight: 600;
    }

    /* Main title - bright white */
    .main-title-elegant {
      font-size: 4rem;
      font-weight: 800;
      background: linear-gradient(135deg, #ffffff 0%, var(--max-primary) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }

    /* Sub title - bright cyan */
    .title-sub-elegant {
      font-size: 1.3rem;
      color: var(--max-secondary);
      margin-bottom: 1rem;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Description - light for readability */
    .hero-desc-elegant {
      color: #e2e8f0;
      margin-bottom: 1.8rem;
      font-size: 1rem;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Stats Block */
    .stats-wrapper {
      margin-top: -3rem;
      position: relative;
      z-index: 5;
    }

    .stats-modern {
      background: var(--max-card-bg);
      border-radius: 60px;
      border: 1px solid var(--max-border);
      padding: 1rem 2rem;
      display: inline-block;
      width: auto;
      max-width: 90%;
      margin: 0 auto;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .stats-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .stat-card {
      padding: 0.5rem 1rem;
    }

    .stat-number-elegant {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--max-primary);
      display: block;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--max-text-muted);
    }

    .stat-divider {
      width: 1px;
      height: 40px;
      background: var(--max-border);
    }

    .whatsapp-stat a {
      text-decoration: none;
    }

    /* Glass Card - White background */
    .glass-card-elegant {
      background: var(--max-card-bg);
      border-radius: 32px;
      padding: 2rem;
      border: 1px solid var(--max-border);
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    }

    .glass-card-elegant:hover {
      transform: translateY(-5px);
      border-color: var(--max-primary);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    /* App Cards */
    .app-card-elegant {
      background: var(--max-card-bg);
      border-radius: 24px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s;
      border: 1px solid var(--max-border);
      height: 100%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .app-card-elegant:hover {
      transform: translateY(-5px);
      border-color: var(--max-primary);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .app-icon-elegant {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .app-card-elegant h6 {
      font-size: 0.9rem;
      margin-bottom: 0.8rem;
      color: var(--max-text-dark);
      font-weight: 600;
    }

    .app-buttons {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-app-elegant {
      background: var(--max-content-bg);
      padding: 0.4rem 1rem;
      border-radius: 30px;
      font-size: 0.75rem;
      color: var(--max-text-dark);
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
      border: 1px solid var(--max-border);
    }

    .btn-app-elegant:hover {
      border-color: var(--max-primary);
      color: var(--max-primary);
    }

    /* Pricing Cards */
    .pricing-card-professional {
      background: var(--max-card-bg);
      border-radius: 32px;
      padding: 2rem;
      border: 1px solid var(--max-border);
      transition: all 0.3s;
      height: 100%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .pricing-card-professional:hover {
      border-color: var(--max-primary);
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .price-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .price-amount {
      font-size: 3rem;
      font-weight: 800;
      color: var(--max-primary);
    }

    .price-period {
      font-size: 0.9rem;
      color: var(--max-text-muted);
    }

    .price-features-elegant {
      margin-bottom: 1.5rem;
    }

    .price-features-elegant li {
      padding: 0.6rem 0;
      color: var(--max-text-muted);
      font-size: 0.9rem;
    }

    .price-features-elegant li i {
      color: var(--max-primary);
      margin-right: 0.5rem;
    }

    /* FAQ */
    .faq-item-new {
      background: var(--max-card-bg);
      border-radius: 20px;
      margin-bottom: 1rem;
      overflow: hidden;
      border: 1px solid var(--max-border);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    }

    .faq-question-new {
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--max-text-dark);
    }

    .faq-question-new i:last-child {
      transition: transform 0.3s;
      color: var(--max-primary);
    }

    .faq-item-new.active .faq-question-new i:last-child {
      transform: rotate(180deg);
    }

    .faq-answer-new {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      color: var(--max-text-muted);
    }

    .faq-item-new.active .faq-answer-new {
      padding: 0 1.5rem 1.2rem 1.5rem;
      max-height: 200px;
    }

    /* Feature Icons */
    .feature-item-elegant {
      padding: 0.5rem;
      transition: all 0.3s;
      background: var(--max-card-bg);
      border-radius: 20px;
      border: 1px solid var(--max-border);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    }

    .feature-item-elegant img {
      width: 100px;
      height: 100px;
    }

    .feature-item-elegant:hover {
      transform: translateY(-5px);
      border-color: var(--max-primary);
    }

    /* Footer - EXACT SAME SOLID COLOR AS NAVBAR */
    .footer-elegant {
      background: var(--max-nav-footer-bg);
      padding: 4rem 0 2rem;
      border-top: 1px solid #1e293b;
      margin-top: 2rem;
    }

    .footer-heading-elegant {
      color: var(--max-primary);
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .footer-links-elegant {
      list-style: none;
      padding: 0;
    }

    .footer-links-elegant li {
      margin-bottom: 0.5rem;
    }

    .footer-links-elegant li a {
      color: var(--max-nav-footer-text-muted);
      text-decoration: none;
      transition: 0.3s;
      font-size: 0.9rem;
    }

    .footer-links-elegant li a:hover {
      color: var(--max-primary);
      padding-left: 4px;
    }

    .footer-links-elegant li a i {
      margin-right: 6px;
      font-size: 0.7rem;
    }

    .footer-links-elegant li i {
      color: var(--max-nav-footer-text-muted);
    }

    .footer-copyright {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid #1e293b;
    }

    .footer-copyright p {
      color: var(--max-nav-footer-text-muted);
      font-size: 0.85rem;
    }

    /* Floating Buttons */
    .whatsapp-float-elegant {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #25D366;
      padding: 12px 20px;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      z-index: 100;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }

    .whatsapp-float-elegant:hover {
      background: #128C7E;
      color: white;
    }

    .back-to-top-elegant {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background: var(--max-primary);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 100;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    }

    .back-to-top-elegant.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top-elegant:hover {
      background: var(--max-primary-dark);
      color: white;
    }

    /* Utility Classes */
    .text-muted-custom {
      color: var(--max-text-muted);
    }

    .img-fluid {
      max-width: 100%;
      height: auto;
    }

    .rounded-4 {
      border-radius: 1rem;
    }

    .w-100 {
      width: 100%;
    }

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

    /* Responsive - adjust for mobile (container will be centered on small screens) */
    @media (max-width: 992px) {
      .hero-elegant {
        justify-content: center;
      }
      .hero-content {
        justify-content: center;
      }
      .hero-text-box {
        margin: 0 auto;
        max-width: 90%;
      }
      .main-title-elegant { font-size: 3rem; }
      .title-sub-elegant { font-size: 1.2rem; }
    }

    @media (max-width: 768px) {
      .main-title-elegant { font-size: 2.5rem; }
      .title-sub-elegant { font-size: 1.1rem; }
      .stats-modern { border-radius: 30px; }
      .stats-grid { gap: 0.5rem; }
      .stat-divider { display: none; }
      .hero-elegant { min-height: 60vh; }
      .navbar-elegant { padding: 0.5rem 1rem; }
      .glass-card-elegant { padding: 1.5rem; }
      .price-amount { font-size: 2.2rem; }
      .hero-text-box { padding: 1.5rem 1rem; }
    }

    @media (max-width: 576px) {
      .main-title-elegant { font-size: 2rem; }
      .hero-desc-elegant { font-size: 0.85rem; }
      .app-icon-elegant { width: 50px; height: 50px; }
      .feature-item-elegant img { width: 50px; height: 50px; }
      .hero-text-box { padding: 1.2rem 1rem; }
    }
