
      @font-face {
          font-family: 'Vazirmatn';
          font-style: normal;
          font-weight: 800;
          src: url('Vazirmatn-ExtraBold.ttf') format('truetype');
      }

      @font-face {
          font-family: 'IRANSansX';
          font-style: normal;
          font-weight: 400;
          src: url('https://cdn.fontcdn.ir/Font/Alias/IRANSans/IRANSansX.ttf') format('truetype');
      }
      @font-face {
          font-family: 'IRANSansX';
          font-style: normal;
          font-weight: 700;
          src: url('https://cdn.fontcdn.ir/Font/Alias/IRANSans/IRANSansX-Bold.ttf') format('truetype');
      }
      
      :root {
        --primary-accent-orange: #F17720; 
        --dark-contrast-blue: #0474BA; 
        --wave-color: #6937a9; 
        --color: #333333; 
        --notification-bg: #e53e3e; 
        --notification-text: #ffffff; 
        --footer-bg-color: #F5F5F7;
        
        --sidebar-width-open: 208px;
        --sidebar-width-collapsed: 56px;
        --page-padding-left: 20px; 
        --icon-size: 16px;

        --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
        --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
      }

      ::selection {
        background-color: var(--primary-accent-orange);
        color: #ffffff;
      }
      ::-moz-selection {
        background-color: var(--primary-accent-orange);
        color: #ffffff;
      }

      .main-content, footer, .bg-text-wrapper, .mobile-header {
        transition: filter 0.5s ease, opacity 0.5s ease;
      }
      
      body.lang-changing .main-content, 
      body.lang-changing footer,
      body.lang-changing .bg-text-wrapper,
      body.lang-changing .mobile-header {
        filter: blur(10px);
        opacity: 0.8;
      }

      body.farsi-mode {
        font-family: 'Vazirmatn', 'IRANSansX', 'Poppins', sans-serif !important;
      }
      
      body.farsi-mode button, 
      body.farsi-mode input, 
      body.farsi-mode .headline, 
      body.farsi-mode .label,
      body.farsi-mode .download-btn,
      body.farsi-mode .glass-tag h2,
      body.farsi-mode .glass-tag p {
        font-family: 'Vazirmatn', 'IRANSansX', 'Poppins', sans-serif !important;
      }

      body.farsi-mode .headline {
        font-size: 55px !important;
        line-height: 1.4 !important;
        direction: rtl !important;
        text-align: right !important;
        letter-spacing: normal !important; 
        word-spacing: normal !important; 
      }

      @media (max-width: 768px) {
        body.farsi-mode .headline {
          font-size: 27px !important;
          line-height: 1.6 !important; 
          text-align: right !important;
          padding-left: 10px; 
          padding-right: 10px;
          display: block !important; 
        }
      }

      ::-webkit-scrollbar {
        width: 12px;
      }
      ::-webkit-scrollbar-track {
        background: var(--footer-bg-color);
      }
      ::-webkit-scrollbar-thumb {
        background-color: var(--wave-color);
        border-radius: 6px;
        border: 3px solid var(--footer-bg-color); 
      }
      ::-webkit-scrollbar-thumb:hover {
        background-color: #552b8a; 
      }
      html {
        scrollbar-color: var(--wave-color) var(--footer-bg-color);
        scrollbar-width: thin;
      }

      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        padding: 0;
        background: var(--footer-bg-color);
        min-height: 100vh;
        overflow-x: hidden;
        font-family: "Poppins", sans-serif;
        display: flex; 
        flex-direction: column;
        color: #333333;
        font-size: 13px; 
        position: relative;
      }

      body.no-scroll {
        overflow: hidden !important;
      }

      button {
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
        text-align: left;
        transition: 0.3s;
      }
      
      .sidebar {
        --color: #ffffff;
        position: fixed;
        top: var(--page-padding-left);
        left: var(--page-padding-left);
        bottom: var(--page-padding-left);
        display: flex;
        flex-direction: column;
        gap: 6px; 
        width: var(--sidebar-width-open); 
        border-radius: 12px; 
        padding: 12px 12px; 
        border: 1px solid rgb(255 255 255 / 8%);
        background: rgb(55 61 68 / 40%);
        backdrop-filter: blur(20px);
        transition: width 0.5s cubic-bezier(0.8, 0, 0.2, 1),
          padding 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        will-change: width, padding;
        z-index: 100;
        height: calc(100vh - (2 * var(--page-padding-left)));
      }
      .sidebar.collapsed {
        width: var(--sidebar-width-collapsed); 
        padding: 12px 8px; 
      }
      .sidebar header {
        display: flex;
        align-items: center;
        height: 45px; 
        padding: 0;
        border-bottom: 1px solid rgb(255 255 255 / 8%);
      }
      .sidebar.collapsed header {
        padding: 0;
      }
      .sidebar header .logo-container {
        flex-grow: 1;
        display: flex;
        align-items: center;
        max-width: 160px; 
        transition: max-width 0.5s cubic-bezier(0.8, 0, 0.2, 1),
          opacity 0.2s 0.2s ease-in-out;
        opacity: 1;
      }
      .sidebar.collapsed header .logo-container {
        max-width: 0;
        opacity: 0;
        transition: max-width 0.5s cubic-bezier(0.8, 0, 0.2, 1),
          opacity 0.2s ease-in-out;
      }
      .sidebar header img {
        height: 25px; 
        width: auto;
        opacity: 1;
      }

      .sidebar header .nav {
        width: 42px; 
        height: 42px; 
        transition: width 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .sidebar.collapsed header .nav {
        width: 40px; 
      }

      .nav {
          --color: #ffffff;
          background: none;
          position: relative;
          pointer-events: all;
          width: 42px; 
          height: 42px; 
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .nav svg {
          fill: none;
          stroke: var(--color);
          stroke-width: 7px;
          stroke-linecap: round;
          stroke-linejoin: round;
          width: 37px; 
          height: 37px; 
          transition: width 0.3s, height 0.3s;
      }

      .nav svg use:nth-of-type(1) {
          opacity: 0;
          stroke-dashoffset: 175;
          stroke-dasharray: 0 295;
          transition: stroke-dashoffset .07s linear .07s, stroke-dasharray .07s linear .07s, opacity 0s linear .14s;
      }

      .nav svg use:nth-of-type(2) {
          animation: stroke-animation 1.2s ease-out forwards;
      }

      .nav input {
          position: absolute;
          height: 100%;
          width: 100%;
          top: 0;
          left: 0;
          z-index: 2;
          cursor: pointer;
          opacity: 0;
      }

      .nav input:checked + svg use:nth-of-type(1) {
          stroke-dashoffset: 221;
          stroke-dasharray: 46 249;
          opacity: 1;
          transition: stroke-dashoffset .12s linear .2s, stroke-dasharray .12s linear .2s, opacity 0s linear .2s;
      }

      .nav input:checked + svg use:nth-of-type(2) {
          animation: stroke-animation-reverse 1.2s ease-out forwards;
      }

      @keyframes stroke-animation {
          0% { stroke-dashoffset: 295; stroke-dasharray: 25 270; }
          50% { stroke-dashoffset: 68; stroke-dasharray: 59 236; }
          65% { stroke-dashoffset: 59; stroke-dasharray: 59 236; }
          100% { stroke-dashoffset: 68; stroke-dasharray: 59 236; }
      }

      @keyframes stroke-animation-reverse {
          0% { stroke-dashoffset: 68; stroke-dasharray: 59 236; }
          50% { stroke-dashoffset: 290; stroke-dasharray: 25 270; }
          65% { stroke-dashoffset: 295; stroke-dasharray: 25 270; }
          100% { stroke-dashoffset: 290; stroke-dasharray: 25 270; }
      }

      .sidebar button {
        position: relative;
        display: flex;
        gap: 18px; 
        align-items: center;
        height: 40px; 
        width: 100%;
        border-radius: 5px; 
        font-family: inherit;
        font-size: 13px; 
        font-weight: 400;
        line-height: 1;
        padding: 0 10px 0 12px; 
        color: rgb(255 255 255 / 95%);
        overflow: hidden;
        transition: background 0.3s, transform 0.3s, padding 0.5s cubic-bezier(0.8, 0, 0.2, 1);
      }
      
      .sidebar button.disabled-btn {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none; 
      }

      .sidebar.collapsed button {
        padding: 0;
      }

      .sidebar button > i:first-child,
      .sidebar button > svg:first-child,
      .sidebar button > img:first-child { 
        position: relative;
        left: 0;
        transition: left 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        font-size: var(--icon-size);  
        width: var(--icon-size);      
        max-width: var(--icon-size);  
        min-width: var(--icon-size);  
        height: var(--icon-size);     
      }
      .sidebar button > img:first-child {
        filter: brightness(0) invert(1); 
        object-fit: contain;
      }
      .sidebar button > svg:first-child {
        fill: currentColor; 
        stroke: none; 
        color: var(--color); 
      }
      .sidebar button > i {
        color: var(--color);
      }

      .sidebar.collapsed button > i:first-child,
      .sidebar.collapsed button > svg:first-child,
      .sidebar.collapsed button > img:first-child { 
        left: 12px; 
      }

      .sidebar button p:nth-child(2) {
        flex: 1 1 auto;
        opacity: 1;
        white-space: nowrap;
        overflow: hidden;
        transition: opacity 0.2s 0.1s ease-out, width 0.5s cubic-bezier(0.8, 0, 0.2, 1), flex 0.5s cubic-bezier(0.8, 0, 0.2, 1);
      }

      .sidebar.collapsed button p:nth-child(2) {
        opacity: 0;
        width: 0;
        flex: 0 0 0;
        transition: opacity 0.05s ease-out, width 0.5s cubic-bezier(0.8, 0, 0.2, 1), flex 0.5s cubic-bezier(0.8, 0, 0.2, 1);
      }

      .sidebar.collapsed button .ai-chevron-down-small {
        opacity: 0;
        transition: opacity 0.1s;
        max-width: 0;
        min-width: 0;
      }
        
      .notification-badge {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 16px; 
        min-width: 16px; 
        padding: 0 5px; 
        border-radius: 8px; 
        background-color: var(--notification-bg);
        color: var(--notification-text);
        font-size: 10px; 
        font-weight: 500;
        line-height: 1;
        opacity: 1;
        transition: opacity 0.2s 0.1s ease-out, transform 0.3s;
      }
        
      .sidebar.collapsed .notification-badge {
        opacity: 0;
        width: 0;
        min-width: 0;
        padding: 0;
        margin-left: 0;
        transition: opacity 0.05s ease-out; 
      }
        
      .sidebar button:not(.disabled-btn):is(.active, :hover) {
        background: rgb(0 0 0 / 30%);
      }
      .sidebar button.active > i:nth-child(3) {
        transform: rotate(-180deg);
      }
      .sidebar button:not(.active):not(.disabled-btn):hover {
        background: rgb(0 0 0 / 10%);
      }

      .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px; 
      }

      .sidebar .main-menu-list {
        flex-grow: 1;
        margin-bottom: 0;
      }

      .sidebar hr {
        border: none;
        height: 1px;
        margin: 3px 0 6px 0; 
        background-color: rgb(255 255 255 / 8%);
        width: 100%;
      }

      .sub-menu {
        position: relative;
        overflow: hidden;
        height: 0;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .sidebar.collapsed .sub-menu {
        height: 0 !important; 
        transition: none; 
      }
      .sub-menu ul {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 6px; 
        width: 100%;
      }
      .sub-menu button {
        padding-left: 48px; 
      }
      .sidebar i {
        font-size: var(--icon-size); 
        width: var(--icon-size);
        max-width: var(--icon-size);
        min-width: var(--icon-size);
        transition: 0.3s;
      }

      .main-content {
        padding: var(--page-padding-left) calc(var(--sidebar-width-collapsed) + var(--page-padding-left) + var(--page-padding-left)); 
        color: #333333;
        width: 100%;
        min-height: 480px; 
        flex-grow: 1; 
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible; 
        position: relative;
        z-index: 2;
      }
      
      @keyframes gentle-wave-like {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
      }
      
      .background {
        position: absolute;
        overflow: hidden;
        z-index: -1;
        left: 0;
        top: 0; 
        width: 100%;
        height: 100%; 
      }
      .footer-svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
      }
      
      .social-group {
        display: flex;
        gap: 8px; 
      }
      
      .social-icon {
        font-size: 16px; 
        background: rgb(0 0 0 / 6%);
        backdrop-filter: blur(10px);
        display: grid;
        place-items: center;
        width: 32px; 
        height: 32px; 
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        transition: background 0.3s;
        
        animation-name: gentle-wave-like;
        animation-duration: 8s;
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1.0);
        animation-iteration-count: infinite;
      }
      
      .social-icon:hover {
        background: rgb(0 0 0 / 15%);
      }
      
      .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 16px; 
        
        animation-name: gentle-wave-like;
        animation-duration: 8s;
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1.0);
        animation-iteration-count: infinite;
        animation-delay: 0.6s;
      }
      
      .social-group:first-child .social-icon:nth-child(1) { animation-delay: 0s; }
      .social-group:first-child .social-icon:nth-child(2) { animation-delay: 0.3s; }
      .social-group:last-child .social-icon:nth-child(1) { animation-delay: 0.9s; }
      .social-group:last-child .social-icon:nth-child(2) { animation-delay: 1.2s; }
      .legal {
        font-size: 10px; 
        margin: 0;
        color: #ffffff;
      }
      
      .contact-info {
        font-size: 11px; 
        color: #ffffff;
        margin-bottom: 4px;
        cursor: pointer;
        white-space: nowrap; 
      }
      .contact-link {
          text-decoration: none;
      }
      footer {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 100%;
        height: 480px; 
        padding-bottom: 16px;
        margin-left: 0 !important; 
        z-index: 2;
      }
      .footer-content-section {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 100%;
        gap: 4px;
        padding: 0 32px; 
        position: absolute;
        bottom: 16px;
        left: 0;
      }
      
      @media (max-width: 857px) {
        .footer-content-section {
            flex-wrap: wrap;
            gap: 12px;
        }
        .text-container {
            order: 2; 
            flex-basis: 100%;
            margin: 0;
            width: 100%;
        }
        .contact-info {
          font-size: 1.7vw;
          white-space: nowrap;
          text-align: center;
        }
        .legal {
          font-size: 8px; 
        }
        .social-group {
            justify-content: center;
        }
        .social-icon {
          width: 28px; 
          height: 28px;
          font-size: 14px;
        }
      }
      
      @media (max-width: 350px) {
          .contact-info {
              font-size: 8px;
          }
      }
      
      @media (max-width: 900px) {
        .sidebar {
          left: var(--page-padding-left);
          width: var(--sidebar-width-open);
          height: calc(100vh - (2 * var(--page-padding-left)));
          transition: width 0.5s cubic-bezier(0.8, 0, 0.2, 1),
            padding 0.5s cubic-bezier(0.8, 0, 0.2, 1);
          z-index: 100;
        }

        .sidebar.collapsed {
          width: var(--sidebar-width-collapsed);
          padding: 12px 8px;
        }

        .main-content {
          padding: var(--page-padding-left) calc(var(--sidebar-width-collapsed) + var(--page-padding-left) + var(--page-padding-left)) var(--page-padding-left) calc(var(--sidebar-width-collapsed) + var(--page-padding-left) + var(--page-padding-left));
        }
      }

      @media (max-width: 480px) {
        :root {
          --page-padding-left: 10px;
          --sidebar-width-collapsed: 48px;
          --sidebar-width-open: 180px;
          --icon-size: 14px;
        }

        .sidebar {
          left: var(--page-padding-left);
          top: var(--page-padding-left);
          padding: 10px 10px;
        }

        .sidebar.collapsed {
          padding: 10px 5px;
        }

        .main-content {
          padding: var(--page-padding-left) calc(var(--sidebar-width-collapsed) + var(--page-padding-left) + var(--page-padding-left)) var(--page-padding-left) calc(var(--sidebar-width-collapsed) + var(--page-padding-left) + var(--page-padding-left));
        }

        .sidebar button {
          height: 36px;
          font-size: 12px;
          gap: 14px; 
          padding: 0 8px 0 10px;
        }

        .notification-badge {
          height: 14px;
          min-width: 14px;
          font-size: 9px;
          padding: 0 4px;
        }
      }

      @media (max-height: 500px) {
        :root {
          --icon-size: 12px;
        }

        .sidebar button {
          height: 32px;
          font-size: 11px;
        }

        .notification-badge {
          height: 12px;
          min-width: 12px;
          font-size: 8px;
        }
      }

      @media (min-width: 901px) {
        .main-content {
          display: flex;
          flex-direction: column;
          align-items: center;
        }
      }

      :root {
        --color-primary: #F17720;
        --transition: 0.4s;
      }
      a {
        color: #fff;
        text-decoration: none;
      }
      img {
        max-width: 100%;
      }
      .mobile-header {
        display: none;
        align-items: center;
        position: fixed;
        top: var(--page-padding-left);
        left: var(--page-padding-left);
        right: var(--page-padding-left);
        border-radius: 12px;
        min-height: 45px;
        background-color: rgb(55 61 68 / 40%);
        backdrop-filter: blur(20px);
        padding: 0 12px;
        z-index: 101;
      }
      .header__logo {
        margin-top: 5px;
        max-width: 160px;
      }
      .header__wrapper {
        width: 100%;
        display: flex;
        align-items: center;
      }
      .header__navigation-wrapper {
        display: flex;
        width: 100%;
        padding-left: 12px;
      }
      .header__list {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0;
        padding: 0;
      }
      .header__list-item {
        display: flex;
        gap: 12px;
        font-size: 13px;
      }
      .header__list-item > button {
        display: flex;
        align-items: center;
        gap: 18px; 
        transition: var(--transition);
      }
      .header__burger {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        width: 24px;
        margin-left: auto;
      }
      .header__burger i {
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 13px;
        transition: var(--transition);
      }
      .header__burger.active i:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
      }
      .header__burger.active i:nth-child(2) {
        opacity: 0;
      }
      .header__burger.active i:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px);
      }

      @media screen and (max-width: 770px) {
        .sidebar {
          display: none;
        }
        .mobile-header {
          display: flex;
        }
        .header__burger {
          display: flex;
        }
        .header__navigation-wrapper {
          flex-direction: column;
          align-items: center;
          position: absolute;
          top: 110%;
          left: 0;
          right: 0;
          padding: 12px;
          background: rgb(55 61 68 / 40%);
          backdrop-filter: blur(20px);
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.35s cubic-bezier(0.32, 0, 0.67, 1),
                      transform 0.35s cubic-bezier(0.32, 0, 0.67, 1),
                      visibility 0.35s;
          transform: translateY(-8px);
          border-radius: 12px;
          overflow: hidden;
          max-height: 80vh; 
          overflow-y: auto; 
        }
        .header__navigation-wrapper.open {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }
        .header__list {
          flex-direction: column;
          gap: 6px;
          width: 100%;
        }
        .header__list-item {
          flex-direction: column;
          width: 100%;
          padding: 0;
          gap: 0;
          margin: 0;
        }
        .header__list-item button {
          width: 100%;
          justify-content: flex-start;
        }
        .header__list-item button > img {
          width: var(--icon-size);
          height: var(--icon-size);
        }
        .header__list button {
          height: 50px;
          font-size: 14px;
          padding: 0 12px;
        }

        .mobile-sub-menu {
          display: flex;
          flex-direction: column;
          gap: 6px;
          padding-left: 42px; 
          max-height: 0;
          overflow: hidden;
          opacity: 0;
          transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                      opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                      padding-top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                      padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mobile-sub-menu.open {
          max-height: 300px;
          opacity: 1;
          padding-top: 8px;
          padding-bottom: 8px;
        }

        .main-content {
          padding-top: 10px !important; 
          padding-left: var(--page-padding-left);
          padding-right: var(--page-padding-left);
        }

        .initial-section {
          height: auto !important;
          min-height: 80vh !important;
          padding-top: 80px !important;
          margin-bottom: 0;
          justify-content: flex-start !important;
        }

        .new-section {
          padding-top: 100px !important;
          margin-top: 0; 
        }
        
        .download-btn {
          margin-top: 20px; 
          margin-bottom: 40px;
        }

        .bg-text-wrapper {
          top: 280px !important; 
        }
      }

      .header__list-item button {
        color: #ffffff;
      }
      .header__list-item button img {
        filter: brightness(0) invert(1);
      }
      .header__list-item button i {
        color: #ffffff;
      }
      
      .mobile-nav-overlay {
        position: fixed;
        inset: 0; 
        background: rgba(0,0,0,0.22); 
        backdrop-filter: blur(8px); 
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 100; 
      }
      
      .mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
      }

      .header__navigation-wrapper {
        z-index: 102; 
      }

      .header__list i {
          transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .header__list button {
          transition: background 0.3s;
          border-radius: 5px;
      }
      .header__list button:hover {
          background: rgb(0 0 0 / 30%);
      }
      .header__list button.disabled-btn {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
      }

      .header__list button.active-mobile > i.ai-chevron-down-small {
        transform: rotate(-180deg);
      }
      
      .header__list button.active, .header__list button.active-mobile {
        background: rgb(0 0 0 / 30%);
      }
      
      .mobile-sub-menu button.active {
        background: rgb(0 0 0 / 30%);
      }

      .language-icon {
        width: 16px !important;
        height: 16px !important;
      }

      .orange-light {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%; 
          height: 400px; 
          background: linear-gradient(to bottom, #F2542D 0%, rgba(242, 84, 45, 0) 100%);
          opacity: 0.15; 
          pointer-events: none;
          z-index: 0; 
          animation: lightFade 3s ease-in-out infinite alternate; 
      }

      @keyframes lightFade {
          from { opacity: 0.1; }
          to { opacity: 0.2; }
      }

      .bg-text-wrapper {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 100%;
          overflow: hidden; 
          z-index: 0;
          white-space: nowrap;
          display: flex;
          pointer-events: none;
          -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
          mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
          opacity: 0;
          animation: cinematicBlur 1.5s var(--ease-smooth) forwards;
      }

      @keyframes cinematicBlur {
          0% {
              opacity: 0;
              filter: blur(20px);
              transform: translateY(-50%) scale(0.9);
              letter-spacing: -0.5em;
          }
          100% {
              opacity: 1;
              filter: blur(0);
              transform: translateY(-50%) scale(1);
              letter-spacing: normal;
          }
      }

      .bg-text-scroll {
          display: flex;
          flex-shrink: 0;
          align-items: center;
          animation: scrollText 40s linear infinite;
      }

      .bg-text {
          font-family: 'Inter', sans-serif;
          font-size: 8vw;
          font-weight: 600;
          color: rgb(0, 0, 0);
          text-transform: uppercase;
          letter-spacing: -2px;
          padding-right: 50px; 
      }

      .bg-text span {
          color: #000;
          margin: 0 30px;
      }

      @keyframes scrollText {
          from { transform: translateX(0); }
          to { transform: translateX(-50%); } 
      }

      .initial-section {
          min-height: 100vh;
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          position: relative;
          overflow: visible; 
      }

      @keyframes cardEntrance {
          0% {
              opacity: 0;
              transform: translateY(100px) rotateX(20deg) scale(0.8);
          }
          60% {
              opacity: 1;
              transform: translateY(-10px) rotateX(0deg) scale(1.05);
          }
          100% {
              opacity: 1;
              transform: translateY(0) rotateX(0deg) scale(1);
          }
      }
      
      @keyframes imageReveal {
          0% { transform: scale(1.4); filter: brightness(0); }
          100% { transform: scale(1); filter: brightness(1); }
      }

      @keyframes tagSlideUp {
          0% {
              opacity: 0;
              transform: translateX(-50%) translateZ(30px) translateY(40px);
          }
          100% {
              opacity: 1;
              transform: translateX(-50%) translateZ(30px) translateY(0);
          }
      }

      @keyframes buttonElastic {
          0% { opacity: 0; transform: translateY(40px) scale(0.5); }
          50% { opacity: 1; transform: translateY(-5px) scale(1.1); }
          100% { opacity: 1; transform: translateY(0) scale(1); }
      }

      .card-container {
          position: relative;
          z-index: 10;
          perspective: 1000px;
          cursor: pointer;
          opacity: 0; 
          animation: cardEntrance 1.2s var(--ease-elastic) forwards; 
          animation-delay: 0.3s; 
      }

      .profile-card {
          width: 300px;
          height: 420px;
          background-color: #F2542D;
          border-radius: 30px;
          position: relative;
          overflow: hidden;
          box-shadow: 0 20px 50px rgba(0,0,0,0.15);
          transition: transform 0.15s ease-out;
          display: flex;
          align-items: center;
          justify-content: center;
          transform-style: preserve-3d;
      }

      .profile-card img {
          width: 100%;
          height: 100%;
          object-fit: cover; 
          object-position: right;
          pointer-events: none;
          animation: imageReveal 1.5s var(--ease-smooth) forwards;
          animation-delay: 0.3s;
      }

      .glass-tag {
          position: absolute;
          bottom: 25px; 
          left: 50%;
          transform: translateX(-50%) translateZ(30px);
          width: 85%;
          height: 80px;
          background: rgba(255, 255, 255, 0.55);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          border: 1px solid rgba(255, 255, 255, 0.4);
          border-radius: 15px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          opacity: 0;
          animation: tagSlideUp 0.8s var(--ease-smooth) forwards;
          animation-delay: 0.8s;
      }

      .glass-tag h2 {
          font-family: 'Poppins', sans-serif;
          font-size: 18px;
          font-weight: 700;
          color: #000;
          line-height: 1.2;
          text-transform: capitalize;
          margin: 0;
      }

      .glass-tag p {
          font-family: 'Poppins', sans-serif;
          font-size: 12px;
          font-weight: 500;
          color: #444;
          margin-top: 2px;
          margin-bottom: 0;
          text-transform: uppercase;
      }

      .download-btn { 
          margin-top: 40px; 
          background-color: #F2542D;
          color: white;
          padding: 12px 32px;
          border-radius: 50px;
          text-decoration: none;
          font-family: 'Inter', sans-serif;
          font-weight: 500;
          font-size: 14px;
          box-shadow: 0 10px 20px rgba(242, 84, 45, 0.3);
          transition: transform 0.2s ease;
          position: relative;
          z-index: 10;
          opacity: 0;
          animation: buttonElastic 1s var(--ease-elastic) forwards;
          animation-delay: 1.1s;
      }

      .download-btn:hover {
          transform: scale(1.05);
      }

      .new-section {
          width: 100%;
          max-width: 1200px;
          padding: 40px 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .top-row {
          width: 100%;
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 20px;
      }

      .small-box {
          width: calc(50% - 10px);
          height: 200px;
          border-radius: 15px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 16px;
          color: #333;
          box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          cursor: pointer;
          overflow: hidden;
          position: relative;
      }

      .small-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
      }

      .small-box:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: 0 20px 40px rgba(0,0,0,0.2);
          filter: brightness(1.05);
      }

      .large-box {
          width: 100%;
          height: 200px;
          border-radius: 15px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 20px;
          color: #333;
          box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          background-color: transparent;
          position: relative;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          cursor: pointer;
          overflow: hidden;
      }

      .large-box > img:first-child {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
      }
      
      .large-box:hover {
          transform: translateY(-10px) scale(1.01);
          box-shadow: 0 20px 40px rgba(0,0,0,0.2);
          filter: brightness(1.05);
      }

      .small-right-image {
          position: absolute;
          right: 0;
          bottom: 0;
          width: 20%;
          min-width: 100px;
          height: auto;
          max-height: 100%;
          object-fit: contain;
      }

      .small-left-image {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 20%;
          min-width: 100px;
          height: auto;
          max-height: 100%;
          object-fit: contain;
      }

      .about-section {
          max-width: 1100px;
          margin: 0 auto;
          padding: 100px 40px;
          opacity: 0;
          transform: translateY(50px);
          transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      }

      .about-section.visible {
          opacity: 1;
          transform: translateY(0);
      }

      .label {
          color: #F2542D;
          text-transform: uppercase;
          font-weight: 700;
          font-size: 14px;
          letter-spacing: 1px;
          margin-bottom: 20px;
          display: block;
          font-family: 'Inter', sans-serif;
      }

      .headline {
          font-family: 'Inter', sans-serif;
          font-size: 58px;
          font-weight: 700;
          line-height: 1.1;
          letter-spacing: -1.5px;
          word-spacing: -2px;
          color: #000; 
      }

      .word {
          opacity: 1; 
          transition: opacity 0.5s ease;
      }

      .highlight {
          color: #F2542D;
      }

      @media (max-width: 768px) {
          .bg-text { font-size: 15vw; }
          .headline { font-size: 32px; }
          .about-section { padding: 60px 20px; }
          .new-section { padding: 20px 10px; max-width: 800px; }
          .small-box { height: 100px; }
          .large-box { height: 200px; }
      }
    