:root {
      --primary: #F44336;
      --primary-dark: #d32f2f;
      --secondary: #6c5ce7;
      --accent: #ff8a00;
      --dark: #1a1a1a;
      --darker: #0d0d0d;
      --light: #ffffff;
      --light-gray: #f5f7fa;
      --gray: #7e7e7e;
      --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
      --radius: 12px;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      color: var(--light);
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      background-attachment: fixed;
      line-height: 1.6;
      overflow-x: hidden;
      font-size: 16px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    .center {
      text-align: center;
    }

    section {
      padding: 5rem 0;
      position: relative;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      color: var(--light);
    }

    h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      margin-bottom: 1.25rem;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: 3.5rem;
      position: relative;
    }

    h2:after {
      content: '';
      position: absolute;
      bottom: -1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    h3 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }

    p {
      margin-bottom: 1.25rem;
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
    }

    /* Particles Background */
    #particles-js {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
    }

    /* Floating Navigation Button with Label */
    .floating-nav {
      position: fixed;
      top: 2rem;
      left: 2rem;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      transition: transform 0.3s ease;
    }

    .floating-nav.hidden {
      transform: translateY(-100px);
    }

    .nav-button {
      display: flex;
      align-items: center;
      background: transparent;
      color: var(--light);
      border-radius: 50px;
      padding: 0.5rem;
      box-shadow: 0 8px 25px rgba(255, 62, 77, 0.5);
      transition: all 0.4s ease;
      z-index: 1001;
      cursor: pointer;
      text-decoration: none;
      width: 60px;
      height: 60px;
      justify-content: center;
      animation: pulse 2s infinite;
    }

    .nav-button:hover {
      background: var(--accent);
      transform: scale(1.05);
      animation: none;
    }

    .logo-icon {
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: rotate 8s linear infinite;
      overflow: hidden;
    }

    .logo-icon img {
      width: 100%; /* Full size of container */
      height: auto;
      padding: 0.3rem;
    }

    .nav-menu {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(26, 26, 26, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 80px 30px 30px 30px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transform: translateX(-100%);
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 1000;
    }

    .nav-menu.active {
      transform: translateX(0);
      opacity: 1;
    }

    .nav-menu a {
      display: block;
      padding: 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      min-width: 200px;
      text-align: center;
      font-size: 0.95rem;
    }

    .nav-menu a i {
      margin-right: 0.65rem;
      width: 18px;
      text-align: center;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .nav-menu a:hover {
      background: var(--primary);
      transform: translateX(10px);
    }

    /* Hero Section */
    .hero {
      padding: 10rem 0 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      color: var(--light);
    }

    .hero p {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
    }

    /* Animated Store Buttons */
    .buttons {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .btn-store {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.7rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all var(--transition);
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      background: linear-gradient(45deg, var(--primary), var(--accent));
      color: var(--light);
      box-shadow: 0 5px 15px rgba(255, 62, 77, 0.4);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn-store:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--accent), var(--primary));
      opacity: 0;
      transition: opacity var(--transition);
      z-index: -1;
    }

    .btn-store:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(255, 62, 77, 0.6);
    }

    .btn-store:hover:before {
      opacity: 1;
    }

    .btn-store i {
      font-size: 1.3rem;
      margin-right: 0.6rem;
      line-height: 1;
      vertical-align: middle;
    }

     #appleStore i {
      font-size: 1.7rem;
    }

    .btn-disabled {
      opacity: 0.7;
      pointer-events: none;
      background: linear-gradient(45deg, #7e7e7e, #a0a0a0);
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: rgba(255, 255, 255, 0.08);
      padding: 2rem 1.7rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: all var(--transition);
      text-align: center;
      position: relative;
      overflow: hidden;
      z-index: 1;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
      z-index: -1;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      background: rgba(255, 255, 255, 0.12);
    }

    .card:hover:before {
      transform: scaleX(1);
    }

    .card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.25rem;
      transition: all var(--transition);
    }

    .card:hover i {
      transform: scale(1.15);
      color: var(--accent);
    }

    /* Countries - Larger Flags */
    .countries {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
    }

    .country-card {
      width: 140px;
      text-align: center;
      transition: all var(--transition);
      position: relative;
    }

    .country-card:hover {
      transform: translateY(-6px);
    }

    .flag {
      width: 90px;
      height: 60px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      margin: 0 auto;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: float 6s ease-in-out infinite;
    }

    .flag:nth-child(2n) {
      animation-delay: 1s;
    }

    .flag:nth-child(3n) {
      animation-delay: 2s;
    }

    .flag:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom right, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    }

    .flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .country-card h4 {
      margin-top: 1.2rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--light);
    }

    /* Updated Sales & Revenue Section */
    .sales-section {
      background: rgba(0, 0, 0, 0.2);
      border-radius: var(--radius);
      padding: 3rem; /* Updated to have same padding on all sides */
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .sales-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(244, 67, 54, 0.1) 0%, transparent 70%);
      z-index: -1;
    }

    .sales-header {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 0 1rem;
    }

    .sales-header h2:after {
      background: var(--accent);
    }

    .sales-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Larger stat cards */
    .stat-card {
      background: rgba(255, 255, 255, 0.08);
      padding: 2rem; /* Increased padding */
      border-radius: var(--radius);
      min-width: 220px; /* Increased min width */
      max-width: 240px; /* Increased max width */
      text-align: center;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--shadow);
      flex: 1;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    /* Larger icons */
    .stat-icon {
      font-size: 2.5rem; /* Increased icon size */
      color: var(--accent);
      margin-bottom: 0.8rem;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(45deg, var(--accent), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.3rem;
      transition: all 0.5s ease;
    }

    .stat-label {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.3;
    }

    /* Social */
    .social {
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    .social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--light);
      text-decoration: none;
      transition: all var(--transition);
      font-size: 1.4rem;
      animation: pulse 2s infinite;
      animation-delay: calc(0.2s * var(--i));
    }

    .social a:hover {
      transform: translateY(-4px) scale(1.1);
      animation: none;
    }

    .social a.facebook:hover {
      background: #1877f2;
    }

    .social a.tiktok:hover {
      background: #000;
    }

    .social a.instagram:hover {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    /* Updated CTA Section with same background as Sales */
    .cta {
      background: rgba(0, 0, 0, 0.2); /* Same as sales-section */
      color: var(--light);
      text-align: center;
      padding: 6rem 0;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
      margin: 0 2rem;
    }

    .cta:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(244, 67, 54, 0.1) 0%, transparent 70%); /* Same as sales-section */
      z-index: 0;
      animation: none; /* Remove animation */
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta h2:after {
      background: var(--accent);
    }

    .cta p {
      max-width: 650px;
      margin: 0 auto 2.5rem;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Footer - Redesigned */
    footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: var(--light);
      padding: 4rem 0 1.5rem;
      position: relative;
      margin-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.02)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
      background-size: cover;
      z-index: -1;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(3, 1fr);  /* Creates 3 equal columns */
      gap: 5rem;  /* This sets the gap between all columns */
      margin-bottom: 3rem;
      justify-content: space-between;
    }

    .footer-column h3 {
      color: var(--light);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
      font-size: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 600;
    }

    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--accent));
      border-radius: 3px;
    }

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

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

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .footer-links a i {
      margin-right: 0.5rem;
      width: 18px;
      text-align: center;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
      padding-left: 0.5rem;
    }

    .footer-links a:hover i {
      transform: rotate(90deg);
      color: var(--accent);
    }

    .footer-column .footer-links li a i.fas.fa-chevron-right {
      color: var(--primary);
      margin-right: 0.5rem;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.5rem; /* Reduced gap between contact items */
    }

    .contact-item {
      display: flex;
      align-items: center;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 0.3rem 0; /* Reduced padding */
    }

    .contact-item:hover {
      color: var(--light);
      transform: translateX(5px);
    }

    .contact-item i {
      margin-right: 1rem;
      color: var(--primary);
      font-size: 1.1rem;
      min-width: 20px;
      text-align: center;
    }

    .phone-link {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .phone-link:hover {
      color: var(--primary);
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 0.8rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 0;
    }

    .copyright, .footer-bottom-content .footer-links a {
      font-size: 0.85rem; /* Same font size for copyright and links */
      margin: 0;
      padding: 0;
      line-height: 1;
    }

    .footer-bottom-content .footer-links {
      display: flex;
      gap: 0.5rem;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .footer-bottom-content .footer-links a {
      transition: color 0.3s ease;
    }

    .footer-bottom-content p {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom-content .footer-links a:hover {
      color: var(--primary);
      text-decoration: none;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: var(--light);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .footer-logo img {
      width: 180px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .footer-logo:hover img {
      transform: scale(1.05);
    }

    /* Animations */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes growBar {
      0% { height: 0; }
      100% { height: var(--target-height); }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      section {
        padding: 4.5rem 0;
      }

      .hero {
        padding: 8rem 0 5rem;
      }

      .sales-stats {
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .floating-nav {
        top: 1.5rem;
        left: 1.5rem;
      }

      .nav-button {
        padding: 0.3rem;
        width: 45px;
        height: 45px;
      }

      .logo-icon {
        width: 35px;
        height: 35px;
      }

      .features {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
      }

      .countries {
        gap: 1.5rem;
      }

      .country-card {
        width: 120px;
      }

      .flag {
        width: 85px;
        height: 55px;
      }

      .social a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .cta {
        padding: 4rem 0;
      }

      h2 {
        margin-bottom: 3rem;
      }

      .nav-menu a {
        min-width: 180px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
      }

      .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .footer-logo img {
        width: 160px;
      }

      .sales-stats {
        gap: 1rem;
      }

      .stat-card {
        width: 100%;
        padding: 1.2rem;
      }
    }

    @media (max-width: 576px) {
      .buttons {
        flex-direction: column;
        gap: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto 0;
      }

      .btn-store {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
        font-size: 0.9rem;
      }

      .btn-store span {
        font-size: 0.9rem;
      }

      .country-card {
        width: 110px;
      }

      section {
        padding: 4rem 0;
      }

      h2:after {
        width: 60px;
        height: 3px;
        bottom: -1rem;
      }

      .hero {
        padding: 7rem 0 3rem;
      }

      .cta {
        padding: 3.5rem 1.5rem;
      }

      .cta .btn-store {
        width: auto;
        padding: 0.9rem 1.8rem;
      }

      .nav-menu {
        padding: 80px 15px 20px 15px;
      }

      .nav-menu a {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
      }

      .footer-logo span {
        display: none;
      }
      .footer-logo img {
        margin-right: 0;
      }

      .stat-number {
        font-size: 1.8rem;
      }

      .stat-label {
        font-size: 0.85rem;
      }

      /* Remove hover effects for touch devices */
      @media (hover: none) {
        .nav-button:hover {
          background: transparent;
          transform: none;
          animation: pulse 2s infinite;
        }

        .nav-menu a:hover {
          background: rgba(255, 255, 255, 0.1);
          transform: none;
        }

        .btn-store:hover {
          transform: none;
          box-shadow: 0 5px 15px rgba(255, 62, 77, 0.4);
        }

        .btn-store:hover:before {
          opacity: 0;
        }

        .card:hover {
          transform: none;
          box-shadow: var(--shadow);
          background: rgba(255, 255, 255, 0.08);
        }

        .card:hover:before {
          transform: scaleX(0);
        }

        .card:hover i {
          transform: none;
          color: var(--primary);
        }

        .country-card:hover {
          transform: none;
        }

        .social a:hover {
          transform: none;
          background: rgba(255, 255, 255, 0.1);
          animation: pulse 2s infinite;
          animation-delay: calc(0.2s * var(--i));
        }

        .social a.facebook:hover {
          background: rgba(255, 255, 255, 0.1);
        }

        .social a.tiktok:hover {
          background: rgba(255, 255, 255, 0.1);
        }

        .social a.instagram:hover {
          background: rgba(255, 255, 255, 0.1);
        }

        /* Remove hover effects for phone links */
        .phone-link:hover {
          color: rgba(255, 255, 255, 0.8) !important;
        }

        /* Remove hover effects for footer links */
        .footer-links a:hover {
          color: rgba(255, 255, 255, 0.8) !important;
          padding-left: 0 !important;
        }

        .footer-links a:hover i {
          transform: none !important;
          color: var(--primary) !important;
        }

        /* Remove hover effects for footer bottom links */
        .footer-bottom-content .footer-links a:hover {
          color: rgba(255, 255, 255, 0.6) !important;
        }

        /* Remove hover effects for contact items */
        .contact-item:hover {
          color: rgba(255, 255, 255, 0.8) !important;
          transform: none !important;
        }

        /* Remove hover effects for stat cards */
        .stat-card:hover {
          transform: none;
          box-shadow: var(--shadow);
        }
      }
    }