      /* Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --primary-color: #f15e22;
        --primary-color-light: rgba(241, 94, 34, 0.8);
        --primary-color-dark: #0a0a0a;
        --secondary-color: #f4e3d7;
        --secondary-dark: #242625;

        --primary-bg: linear-gradient(
          135deg,
          var(--primary-color-dark) 0%,
          var(--secondary-dark) 100%
        );
        --secondary-bg: rgba(10, 10, 10, 0.8);
        --accent-gradient: linear-gradient(
          45deg,
          var(--primary-color),
          var(--secondary-color)
        );
        --text-primary: white;
        --text-secondary: rgba(255, 255, 255, 0.8);
        --border-color: rgba(255, 255, 255, 0.1);
        --card-bg: rgba(255, 255, 255, 0.05);
        --highlight: var(--primary-color);
        --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }

      body {
        font-family: "Tajawal", "Poppins", sans-serif;
        background: var(--primary-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        line-height: 1.6;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      /* Language toggle */
      .lang-toggle {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 1000;
        background: var(--secondary-bg);
        border-radius: 50px;
        padding: 8px;
        display: flex;
        gap: 5px;
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
      }
      
      .lang-btn {
        background: transparent;
        border: none;
        color: var(--text-primary);
        padding: 5px 10px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
      }
      
      .lang-btn.active {
        background: var(--accent-gradient);
        color: var(--primary-color-dark);
        font-weight: bold;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header */
      header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        backdrop-filter: blur(20px);
        background: var(--secondary-bg);
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: bold;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: transform 0.3s ease;
      }

      .logo:hover {
        transform: scale(1.05);
      }

      /* Logo image style */
      .logo-img {
        height: 40px;
        transition: transform 0.3s ease;
      }

      .logo-img:hover {
        transform: scale(1.05);
      }

      /* Screenshot image style */
      .screenshot-img {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .screenshot-img:hover {
        transform: scale(1.02);
      }

      /* App interface images */
      .perfume-item-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
      }

      /* Remove the placeholder styles */
      .screenshot-placeholder {
        display: none;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-links a {
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 500;
      }

      .nav-links a:hover {
        color: var(--highlight);
        transform: translateY(-2px);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--accent-gradient);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      /* Main Content */
      #page-container {
        flex: 1;
        padding-top: 80px;
        position: relative;
      }

      .page-content {
        display: none;
        min-height: calc(100vh - 80px);
        padding: 20px 0 50px;
      }

      .page-content.active {
        display: block;
      }

      /* Loading Spinner */
      .loading-spinner {
        display: none;
        width: 50px;
        height: 50px;
        border: 5px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: var(--highlight);
        animation: spin 1s ease-in-out infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      /* Buttons */
      .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: var(--accent-gradient);
        border: none;
        border-radius: 12px;
        color: var(--primary-color-dark);
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
      }

      .download-btn::before {
        content: "";
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: right 0.5s;
      }

      .download-btn:hover::before {
        right: 100%;
      }

      /* Cards */
      .feature-card,
      .screenshot-item,
      .content-section {
        background: var(--card-bg);
        padding: 2rem;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .feature-card:hover,
      .screenshot-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
      }

      /* Footer */
      footer {
        background: rgba(0, 0, 0, 0.3);
        padding: 3rem 0;
        margin-top: auto;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h4 {
        color: var(--highlight);
        margin-bottom: 1rem;
        font-size: 1.2rem;
      }

      .footer-section a {
        color: var(--text-primary);
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
      }

      .footer-section a:hover {
        color: var(--highlight);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
        margin-top: 2rem;
      }

      .app-version {
        font-size: 0.8rem;
        opacity: 0.6;
        margin-top: 0.5rem;
      }

      /* Mobile Menu Toggle */
      .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
      }

      /* Animations */
      @keyframes gradient-shift {
        0%,
        100% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(2deg);
        }
      }

      @keyframes drift {
        0% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-50px) rotate(180deg);
        }
        100% {
          transform: translateY(0px) rotate(360deg);
        }
      }

      @keyframes spin {
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }

      @keyframes sparkle {
        0% {
          opacity: 1;
          transform: scale(0);
        }
        50% {
          opacity: 1;
          transform: scale(1);
        }
        100% {
          opacity: 0;
          transform: scale(0) translateY(-20px);
        }
      }

      /* Fade-in Animation */
      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Gradient Text */
      .gradient-text {
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradient-shift 3s ease-in-out infinite;
        background-size: 200% 200%;
      }

      /* Floating Elements */
      .float-animation {
        animation: float 6s ease-in-out infinite;
      }

      /* Drifting Shapes */
      .shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        animation: drift 20s infinite linear;
      }

      /* Hero Section */
      .hero {
        position: relative;
        padding: 6rem 0;
        overflow: hidden;
      }

      .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
      }

      .hero-text {
        flex: 1;
        max-width: 600px;
      }

      .hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }

      .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: var(--text-secondary);
      }

      .download-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
      }

      .phone-mockup {
        position: relative;
        z-index: 2;
        perspective: 1000px;
      }

      .phone {
        width: 280px;
        height: 580px;
        background: #111;
        border-radius: 40px;
        padding: 12px;
        position: relative;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
          0 0 0 12px #1a1a1a,
          0 0 0 13px #333;
        transform-style: preserve-3d;
        transform: rotateY(-5deg);
        transition: transform 0.5s ease;
      }

      .phone-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          var(--secondary-dark),
          var(--primary-color-dark)
        );
        border-radius: 28px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
      }
      .screen-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 15px;
      }

      .app-interface {
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .app-header {
        text-align: center;
        margin-bottom: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .app-logo {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 0.3rem;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .app-subtitle {
        font-size: 0.7rem;
        opacity: 0.8;
        margin-bottom: 0.5rem;
      }

      .perfume-grid-container {
        flex: 1;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
        padding-left: 5px;
      }

      .perfume-grid-container::-webkit-scrollbar {
        width: 4px;
      }

      .perfume-grid-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
      }

      .perfume-grid-container::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 10px;
      }

      .perfume-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
      }

      .perfume-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        text-align: center;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        cursor: pointer;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .perfume-item {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.7rem;
        padding: 0.6rem;
        min-height: 60px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }

      .perfume-item::before {
        content: '';
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: 0.5s;
      }

      /* .perfume-item:hover::before {
        right: 100%;
      }

      .perfume-item:hover {
        background: rgba(241, 94, 34, 0.15);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      } */

      .status-bar {
        display: flex;
        justify-content: space-between;
        padding: 5px 15px;
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(0, 0, 0, 0.2);
      }

      .notch {
        position: absolute;
        top: 12px;
        right: 50%;
        transform: translateX(50%);
        width: 40%;
        height: 20px;
        background: #111;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        z-index: 10;
      }

      .home-indicator {
        width: 30%;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 2px;
        margin: 5px auto;
      }

        /* Responsive adjustments */
        @media (max-width: 992px) {
        .phone {
          width: 250px;
          height: 550px;
        }
        
        .perfume-item {
          min-height: 50px;
          font-size: 0.65rem;
        }
      }

      @media (max-width: 768px) {
        .phone-mockup {
          margin: 2rem auto;
        }
        
        .phone {
          width: 220px;
          height: 500px;
          transform: rotateY(0);
        }
        
        .perfume-grid {
          gap: 0.6rem;
        }
        
        .perfume-item {
          min-height: 45px;
          padding: 0.5rem;
        }
        
        .app-logo {
          font-size: 1.1rem;
        }
      }

      @media (max-width: 480px) {
        .phone {
          width: 200px;
          height: 500px;
          border-radius: 30px;
        }
        
        .phone-screen {
          border-radius: 22px;
        }
        
        .perfume-item {
          min-height: 40px;
          font-size: 0.6rem;
        }
        
        .app-logo {
          font-size: 1rem;
        }
      }

      /* Animation for phone mockup */
      @keyframes float-phone {
        0%, 100% {
          transform: rotateY(-5deg) translateY(0);
        }
        50% {
          transform: rotateY(-5deg) translateY(-15px);
        }
      }

      .phone-mockup:hover .phone {
        animation: float-phone 3s ease-in-out infinite;
      }


      /* Features Section */
      .features {
        padding: 5rem 0;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .section-subtitle {
        text-align: center;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        font-size: 1.2rem;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .feature-card {
        display: flex;
        flex-direction: column;
      }

      .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }

      /* Screenshots Section */
      .screenshots {
        padding: 5rem 0;
      }

      .screenshot-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
      }

      .screenshot-placeholder {
        font-size: 4rem;
        text-align: center;
        margin-bottom: 1rem;
      }

      .screenshot-item {
        text-align: center;
      }

      .screenshot-item h3 {
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
      }

      .screenshot-item p {
        color: var(--text-secondary);
        font-size: 0.95rem;
      }

      /* Content Pages */
      .page-header {
        text-align: center;
        padding: 4rem 0 2rem;
      }

      .page-title {
        font-size: 3rem;
        margin-bottom: 1rem;
      }

      .content-section {
        margin-bottom: 3rem;
      }

      .content-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--highlight);
      }

      .content-section p,
      .content-section li {
        margin-bottom: 1rem;
      }

      .content-section ul,
      .content-section ol {
        margin-right: 2rem;
        margin-bottom: 1.5rem;
      }

      /* Error Message */
      .error-message {
        text-align: center;
        padding: 5rem 0;
      }

      .error-message h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--highlight);
      }

      .error-message p {
        margin-bottom: 2rem;
      }

      /* Language-specific styles */
      [lang="en"] {
        direction: ltr;
        font-family: "Poppins", sans-serif;
      }
      
      [lang="en"] .nav-links a::after {
        left: 0;
        right: auto;
      }
      
      [lang="en"] .download-btn::before {
        left: -100%;
        right: auto;
      }
      
      [lang="en"] .download-btn:hover::before {
        left: 100%;
        right: auto;
      }
      
      [lang="en"] .perfume-item::before {
        left: -100%;
        right: auto;
      }
      
      [lang="en"] .perfume-item:hover::before {
        left: 100%;
        right: auto;
      }
      
      [lang="en"] .notch {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
      }
      
      [lang="en"] .perfume-grid-container {
        padding-right: 5px;
        padding-left: 0;
      }
      
      [lang="en"] .content-section ul,
      [lang="en"] .content-section ol {
        margin-left: 2rem;
        margin-right: 0;
      }
      
      [lang="en"] .lang-toggle {
        right: 20px;
        left: auto;
      }

      /* Mobile Responsiveness */
      @media (max-width: 992px) {
        .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          width: 80%;
          max-width: 300px;
          height: 100vh;
          background: var(--secondary-bg);
          backdrop-filter: blur(20px);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 2rem;
          transition: left 0.3s ease;
          z-index: 1000;
        }
        
        [lang="en"] .nav-links {
          right: -100%;
          left: auto;
        }

        .nav-links.active {
          left: 0;
        }
        
        [lang="en"] .nav-links.active {
          right: 0;
          left: auto;
        }

        .mobile-menu-toggle {
          display: block;
        }

        .logo {
          font-size: 1.5rem;
        }

        .download-buttons {
          flex-direction: column;
          align-items: center;
        }

        .download-btn {
          width: 100%;
          justify-content: center;
        }
      }

      @media (max-width: 768px) {
        .hero-content {
          flex-direction: column;
          text-align: center;
        }

        .hero-text h1 {
          font-size: 2.5rem;
        }

        .phone {
          width: 220px;
          height: 440px;
          margin: 0 auto;
        }

        .perfume-item {
          font-size: 0.8rem;
          padding: 0.5rem;
        }

        .features-grid,
        .screenshot-grid {
          grid-template-columns: 1fr;
        }

        .page-title {
          font-size: 2rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .footer-section {
          margin-bottom: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        nav {
          padding: 1rem;
        }

        .logo-img {
          height: 30px;
        }

        .logo {
          font-size: 1.3rem;
        }

        .hero-text h1 {
          font-size: 2rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .feature-card,
        .screenshot-item,
        .content-section {
          padding: 1.5rem;
        }
      }