﻿html {
      scroll-behavior: smooth
    }

    html,
    body {
      height: 100%;
      margin: 0;
      background: #000;
      color: #fff;
      font-family: 'Tajawal', 'Cairo', 'Inter', 'Poppins', system-ui, Segoe UI, Helvetica, Arial, sans-serif;
      font-weight: 400;
      letter-spacing: .01em;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale
    }

    [dir="rtl"] body {
      font-family: 'Tajawal', 'Cairo', 'Inter', system-ui, Segoe UI, Helvetica, Arial, sans-serif
    }

    [dir="ltr"] body {
      font-family: 'Inter', 'Poppins', 'Tajawal', 'Cairo', system-ui, Segoe UI, Helvetica, Arial, sans-serif
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(135deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .75));
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
      transition: all .3s ease;
      position: relative;
      overflow: visible
    }

    header:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .03), rgba(45, 212, 191, .02), transparent);
      pointer-events: none;
      z-index: 0
    }

    header:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(16, 185, 129, .4), transparent);
      opacity: .6;
      opacity: 0.5
    }

    @keyframes headerGlow {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: .8
      }
    }

    .nav {
      display: flex;
      flex-direction: row !important;
      direction: ltr !important;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      position: relative;
      z-index: 1;
      overflow: visible;
      gap: 24px
    }

    header .container {
      padding-right: 0;
      padding-left: 16px
    }

    .brand {
      display: flex;
      gap: 12px;
      align-items: center;
      transition: transform .3s ease;
      position: relative;
      flex-wrap: nowrap
    }

    .brand:hover {
      transform: scale(1.02)
    }

    .brand span:not(.dot),
    .brand a {
      font-weight: 800;
      font-size: 18px;
      background: linear-gradient(135deg, #fff, #34d399);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: all .3s ease;
      position: relative;
      font-family: 'Tajawal', 'Cairo', 'Inter', 'Poppins', system-ui, sans-serif;
      letter-spacing: -.01em;
      color: #fff;
      text-decoration: none;
      white-space: nowrap;
      display: inline-block;
      line-height: 1.2
    }

    [dir="rtl"] .brand span:not(.dot),
    [dir="rtl"] .brand a {
      font-family: 'Tajawal', 'Cairo', 'Inter', system-ui, sans-serif
    }

    [dir="ltr"] .brand span:not(.dot),
    [dir="ltr"] .brand a {
      font-family: 'Inter', 'Poppins', 'Tajawal', 'Cairo', system-ui, sans-serif
    }

    .brand:hover span:not(.dot),
    .brand:hover a {
      background: linear-gradient(135deg, #34d399, #22d3ee);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(52, 211, 153, .3)
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 9999px;
      background: linear-gradient(135deg, #10b981, #34d399);
      display: inline-block;
      position: relative;
      box-shadow: 0 0 10px rgba(16, 185, 129, .5), 0 0 20px rgba(16, 185, 129, .3);
      opacity: 0.8
    }

    .dot:before {
      content: "";
      position: absolute;
      inset: -4px;
      border-radius: 9999px;
      background: radial-gradient(circle, #10b981, transparent);
      opacity: .4;
      opacity: 0.6
    }

    @keyframes dotPulse {

      0%,
      100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(16, 185, 129, .5), 0 0 20px rgba(16, 185, 129, .3)
      }

      50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(16, 185, 129, .7), 0 0 30px rgba(16, 185, 129, .5)
      }
    }

    @keyframes dotRipple {
      0% {
        transform: scale(.8);
        opacity: .4
      }

      100% {
        transform: scale(1.5);
        opacity: 0
      }
    }

    .links {
      display: flex;
      flex-direction: row !important;
      direction: ltr !important;
      gap: 12px;
      color: rgba(255, 255, 255, .8);
      font-size: 15px;
      align-items: center !important;
      position: relative;
      flex-wrap: nowrap;
      justify-content: center
    }

    .links a i {
      transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
      margin-right: 8px;
      font-size: 16px !important;
      color: inherit !important;
      opacity: 1 !important;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 18px;
      text-align: center;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
      visibility: visible !important
    }

    .links a:hover i {
      opacity: 1;
      transform: scale(1.15) translateY(-1px);
      filter: drop-shadow(0 2px 4px rgba(52, 211, 153, .4))
    }

    .links a[href*="download"] i {
      color: #34d399 !important;
      transition: all 0.3s ease
    }

    .links a[href*="download"]:hover i {
      color: #22d3ee !important;
      transition: all 0.3s ease;
      filter: drop-shadow(0 0 8px rgba(52, 211, 153, .6))
    }

    .links a[href*="features"] i {
      color: #34d399 !important;
      transition: all 0.3s ease
    }

    .links a[href*="features"]:hover i {
      color: #22d3ee !important;
      transition: all 0.3s ease;
      filter: drop-shadow(0 0 8px rgba(52, 211, 153, .6))
    }

    .links a[href*="about"] i {
      color: #34d399 !important;
      transition: all 0.3s ease
    }

    .links a[href*="about"]:hover i {
      color: #22d3ee !important;
      transition: all 0.3s ease;
      filter: drop-shadow(0 0 8px rgba(52, 211, 153, .6))
    }

    .links a[href*="contact"] i {
      color: #34d399 !important;
      transition: all 0.3s ease
    }

    .links a[href*="contact"]:hover i {
      color: #22d3ee !important;
      transition: all 0.3s ease;
      filter: drop-shadow(0 0 8px rgba(52, 211, 153, .6))
    }

    @keyframes iconBounce {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-2px) scale(1.05)
      }
    }

    @keyframes iconPulse {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.1)
      }
    }

    @keyframes iconRotate {

      0%,
      100% {
        transform: rotate(0deg)
      }

      25% {
        transform: rotate(-5deg)
      }

      75% {
        transform: rotate(5deg)
      }
    }

    @keyframes iconFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-3px)
      }
    }

    .links a,
    .links button,
    .links>div {
      position: relative;
      transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
      padding: 12px 22px;
      border-radius: 14px;
      font-weight: 600;
      overflow: visible;
      white-space: nowrap;
      min-width: fit-content;
      flex-shrink: 0;
      direction: ltr !important;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: auto;
      line-height: 1.4;
      margin: 0;
      font-size: 15px
    }

    .links a,
    .links button {
      background: linear-gradient(135deg, rgba(16, 185, 129, .08), rgba(45, 212, 191, .05));
      backdrop-filter: blur(10px) saturate(180%);
      border: 1.5px solid rgba(52, 211, 153, .2);
      color: rgba(255, 255, 255, .95);
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 20px rgba(16, 185, 129, .1), inset 0 1px 0 rgba(255, 255, 255, .1);
      text-shadow: 0 1px 2px rgba(0, 0, 0, .3)
    }

    .links a:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .25), rgba(45, 212, 191, .2), rgba(52, 211, 153, .15));
      opacity: 0;
      transition: opacity .4s cubic-bezier(.34, 1.56, .64, 1);
      z-index: -1;
      border-radius: 14px;
      filter: blur(8px)
    }

    .links a:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 70%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #34d399, #22d3ee, transparent);
      transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
      border-radius: 2px;
      box-shadow: 0 0 10px rgba(52, 211, 153, .6), 0 0 20px rgba(52, 211, 153, .4)
    }

    .links a:hover {
      color: #34d399;
      transform: translateY(-4px) scale(1.05);
      background: linear-gradient(135deg, rgba(16, 185, 129, .2), rgba(45, 212, 191, .15));
      border-color: rgba(52, 211, 153, .5);
      box-shadow: 0 8px 24px rgba(16, 185, 129, .4), 0 0 40px rgba(16, 185, 129, .3), 0 0 60px rgba(16, 185, 129, .15), inset 0 1px 0 rgba(255, 255, 255, .2);
      text-shadow: 0 0 10px rgba(52, 211, 153, .5), 0 2px 4px rgba(0, 0, 0, .4)
    }

    .links a:hover:before {
      opacity: 1
    }

    .links a:hover:after {
      transform: translateX(-50%) scaleX(1);
      box-shadow: 0 0 15px rgba(52, 211, 153, .8), 0 0 30px rgba(52, 211, 153, .6)
    }

    .links a:active {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 4px 16px rgba(16, 185, 129, .3), 0 0 30px rgba(16, 185, 129, .2)
    }

    .user-info {
      display: flex !important;
      align-items: center;
      gap: 12px;
      margin-left: auto !important;
      margin-right: 0 !important;
      position: relative;
      z-index: 99999 !important;
      isolation: isolate;
      padding-right: 0
    }

    .user-profile {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer !important;
      padding: 8px 12px;
      border-radius: 12px;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      overflow: visible;
      pointer-events: auto !important;
      z-index: 99999 !important;
      background: transparent;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      touch-action: manipulation
    }

    .user-profile:hover {
      background: rgba(255, 255, 255, .05)
    }

    .user-profile:active {
      transform: scale(.98)
    }

    .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10b981, #34d399);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: #000;
      box-shadow: 0 4px 12px rgba(16, 185, 129, .4), 0 0 20px rgba(16, 185, 129, .2);
      border: 2px solid rgba(52, 211, 153, .5);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      pointer-events: none
    }

    .user-avatar:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
      opacity: 0;
      transition: opacity .3s ease
    }

    .user-profile:hover .user-avatar:before {
      opacity: 1
    }

    .user-name {
      font-weight: 600;
      color: rgba(255, 255, 255, .9);
      font-size: 15px;
      max-width: 150px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      pointer-events: none
    }

    .user-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      max-width: 250px;
      background: rgba(0, 0, 0, .98) !important;
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 14px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(.95);
      transition: all .2s cubic-bezier(.4, 0, .2, 1);
      z-index: 999999 !important;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .8), 0 0 40px rgba(16, 185, 129, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
      overflow: visible;
      pointer-events: none !important;
      display: none
    }

    .user-profile.open .user-dropdown {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) scale(1) !important;
      pointer-events: auto !important;
      display: block !important
    }

    [dir="ltr"] .user-dropdown {
      right: auto;
      left: 0
    }

    .user-dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer !important;
      transition: all .25s cubic-bezier(.4, 0, .2, 1);
      color: rgba(255, 255, 255, .8);
      border-radius: 10px;
      position: relative;
      z-index: 1;
      margin: 2px 0;
      pointer-events: auto !important;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      touch-action: manipulation;
      text-decoration: none
    }

    .user-dropdown-item:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(45, 212, 191, .1));
      opacity: 0;
      transition: opacity .25s ease;
      border-radius: 10px;
      z-index: -1;
      pointer-events: none
    }

    .user-dropdown-item:hover:before {
      opacity: 1
    }

    .user-dropdown-item:hover {
      background: rgba(52, 211, 153, .1);
      color: #34d399;
      transform: translateX(-4px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, .2)
    }

    .user-dropdown-item:active {
      transform: translateX(-2px) scale(.98)
    }

    .user-dropdown-item i {
      font-size: 16px;
      width: 20px;
      text-align: center;
      color: rgba(255, 255, 255, .7);
      pointer-events: none
    }

    .user-dropdown-item:hover i {
      color: #34d399
    }

    .user-dropdown-item.shop-item:hover {
      background: linear-gradient(135deg, rgba(251, 191, 36, .18), rgba(245, 158, 11, .12)) !important;
      border-color: rgba(251, 191, 36, .4) !important;
      box-shadow: 0 4px 16px rgba(251, 191, 36, .3), 0 0 20px rgba(251, 191, 36, .15)
    }

    .user-dropdown-item.shop-item:hover i {
      color: #fbbf24 !important;
      transform: scale(1.1);
      transition: all .3s ease
    }

    .user-dropdown-item.shop-item:hover span {
      color: #fcd34d !important;
      text-shadow: 0 0 10px rgba(251, 191, 36, .5)
    }

    .auth-link {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .login-dropdown {
      position: relative;
      z-index: 10001;
      margin-right: 0;
      margin-left: auto;
      isolation: isolate
    }

    .login-link {
      background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(45, 212, 191, .1));
      border: 1px solid rgba(52, 211, 153, .3);
      padding: 10px 20px;
      border-radius: 12px;
      font-weight: 600;
      position: relative;
      overflow: visible;
      transition: all .4s cubic-bezier(.4, 0, .2, 1);
      box-shadow: 0 4px 16px rgba(16, 185, 129, .2), 0 0 30px rgba(16, 185, 129, .1);
      cursor: pointer !important;
      pointer-events: auto !important;
      z-index: 10001;
      display: flex;
      align-items: center;
      gap: 8px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent
    }

    .login-link:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(52, 211, 153, .2), rgba(45, 212, 191, .15));
      opacity: 0;
      transition: opacity .4s ease;
      z-index: -1;
      border-radius: 12px;
      pointer-events: none
    }

    .login-link:hover:before {
      opacity: 1
    }

    .login-link:hover {
      background: linear-gradient(135deg, rgba(16, 185, 129, .25), rgba(45, 212, 191, .2));
      border-color: rgba(52, 211, 153, .5);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 6px 24px rgba(16, 185, 129, .4), 0 0 40px rgba(16, 185, 129, .2), inset 0 1px 0 rgba(255, 255, 255, .1)
    }

    .login-link:active {
      transform: translateY(0) scale(1)
    }

    .login-link i {
      color: #34d399;
      transition: transform .3s ease;
      font-size: 16px;
      pointer-events: none
    }

    .login-link:hover i {
      transform: rotate(-10deg) scale(1.1);
      color: #22d3ee
    }

    .login-link span {
      color: #34d399;
      transition: color .3s ease;
      font-weight: 600;
      pointer-events: none
    }

    .login-link:hover span {
      color: #22d3ee;
      text-shadow: 0 0 10px rgba(52, 211, 153, .5)
    }

    .login-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      max-width: 250px;
      background: rgba(0, 0, 0, .98) !important;
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 14px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(.95);
      transition: all .2s cubic-bezier(.4, 0, .2, 1);
      z-index: 999999 !important;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .8), 0 0 40px rgba(16, 185, 129, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
      overflow: visible;
      pointer-events: none !important;
      display: none;
      margin-top: 4px
    }

    .login-dropdown.open .login-menu {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) scale(1) !important;
      pointer-events: auto !important;
      display: block !important
    }

    .login-menu-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all .25s cubic-bezier(.4, 0, .2, 1);
      color: rgba(255, 255, 255, .8);
      border-radius: 10px;
      position: relative;
      z-index: 1;
      margin: 2px 0;
      text-decoration: none;
      pointer-events: auto !important
    }

    .login-menu-item:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(45, 212, 191, .1));
      opacity: 0;
      transition: opacity .25s ease;
      border-radius: 10px;
      z-index: -1;
      pointer-events: none
    }

    .login-menu-item:hover:before {
      opacity: 1
    }

    .login-menu-item:hover {
      background: rgba(52, 211, 153, .1);
      color: #34d399;
      transform: translateX(-4px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, .2)
    }

    .login-menu-item i {
      font-size: 16px;
      width: 20px;
      text-align: center;
      color: rgba(255, 255, 255, .7)
    }

    .login-menu-item:hover i {
      color: #34d399
    }

    [dir="rtl"] .user-info {
      margin-right: auto;
      margin-left: 0
    }

    [dir="rtl"] .login-dropdown {
      margin-right: auto;
      margin-left: 0
    }

    [dir="ltr"] .login-menu {
      right: auto;
      left: 0
    }

    .logout-link {
      cursor: pointer
    }

    .ai-support-button {
      flex-direction: row !important;
      direction: ltr !important;
      background: linear-gradient(135deg, rgba(16, 185, 129, .08), rgba(45, 212, 191, .05)) !important;
      backdrop-filter: blur(10px) saturate(180%) !important;
      border: 1.5px solid rgba(52, 211, 153, .2) !important;
      color: rgba(255, 255, 255, .95) !important;
      padding: 12px 22px !important;
      border-radius: 14px !important;
      font-size: 15px !important;
      font-weight: 600 !important;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 20px rgba(16, 185, 129, .1), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, .3) !important;
      transition: all .4s cubic-bezier(.34, 1.56, .64, 1) !important;
      position: relative;
      overflow: visible
    }

    .ai-support-button:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .25), rgba(45, 212, 191, .2), rgba(52, 211, 153, .15));
      opacity: 0;
      transition: opacity .4s cubic-bezier(.34, 1.56, .64, 1);
      z-index: -1;
      border-radius: 14px;
      filter: blur(8px)
    }

    .ai-support-button:hover:before {
      opacity: 1
    }

    .ai-support-button:hover {
      background: linear-gradient(135deg, rgba(16, 185, 129, .2), rgba(45, 212, 191, .15)) !important;
      border-color: rgba(52, 211, 153, .5) !important;
      color: #34d399 !important;
      transform: translateY(-4px) scale(1.05) !important;
      box-shadow: 0 8px 24px rgba(16, 185, 129, .4), 0 0 40px rgba(16, 185, 129, .3), 0 0 60px rgba(16, 185, 129, .15), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
      text-shadow: 0 0 10px rgba(52, 211, 153, .5), 0 2px 4px rgba(0, 0, 0, .4) !important
    }

    .ai-support-button:active {
      transform: translateY(-2px) scale(1.02) !important;
      box-shadow: 0 4px 16px rgba(16, 185, 129, .3), 0 0 30px rgba(16, 185, 129, .2) !important
    }

    .lang-dropdown {
      position: relative;
      margin-right: 12px;
      z-index: 1002;
      isolation: isolate;
      direction: ltr !important
    }

    .lang-toggle {
      display: flex;
      flex-direction: row !important;
      direction: ltr !important;
      align-items: center;
      gap: 8px;
      padding: 12px 22px !important;
      border-radius: 14px !important;
      background: linear-gradient(135deg, rgba(16, 185, 129, .08), rgba(45, 212, 191, .05)) !important;
      backdrop-filter: blur(10px) saturate(180%) !important;
      border: 1.5px solid rgba(52, 211, 153, .2) !important;
      cursor: pointer;
      transition: all .4s cubic-bezier(.34, 1.56, .64, 1) !important;
      position: relative;
      overflow: visible;
      z-index: 1;
      white-space: nowrap;
      min-width: fit-content;
      flex-shrink: 0;
      font-size: 15px !important;
      font-weight: 600 !important;
      color: rgba(255, 255, 255, .95) !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 20px rgba(16, 185, 129, .1), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
      justify-content: center;
      text-shadow: 0 1px 2px rgba(0, 0, 0, .3) !important
    }

    .lang-toggle:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .25), rgba(45, 212, 191, .2), rgba(52, 211, 153, .15));
      opacity: 0;
      transition: opacity .4s cubic-bezier(.34, 1.56, .64, 1);
      z-index: 0;
      border-radius: 14px;
      filter: blur(8px)
    }

    .lang-toggle:hover:before {
      opacity: 1
    }

    .lang-toggle:hover {
      background: linear-gradient(135deg, rgba(16, 185, 129, .2), rgba(45, 212, 191, .15)) !important;
      border-color: rgba(52, 211, 153, .5) !important;
      color: #34d399 !important;
      transform: translateY(-4px) scale(1.05) !important;
      box-shadow: 0 8px 24px rgba(16, 185, 129, .4), 0 0 40px rgba(16, 185, 129, .3), 0 0 60px rgba(16, 185, 129, .15), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
      text-shadow: 0 0 10px rgba(52, 211, 153, .5), 0 2px 4px rgba(0, 0, 0, .4) !important
    }

    .lang-toggle:active {
      transform: translateY(-2px) scale(1.02) !important;
      box-shadow: 0 4px 16px rgba(16, 185, 129, .3), 0 0 30px rgba(16, 185, 129, .2) !important
    }

    .lang-toggle span {
      font-size: 15px !important;
      font-weight: 600 !important;
      color: inherit;
      transition: color .3s;
      position: relative;
      z-index: 1
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 160px;
      background: rgba(0, 0, 0, .98);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 14px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(.95);
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      z-index: 9999;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .8), 0 0 40px rgba(16, 185, 129, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
      overflow: visible;
      pointer-events: none
    }

    .lang-menu:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .05), transparent);
      pointer-events: none;
      z-index: 0;
      border-radius: 14px
    }

    .lang-dropdown.open .lang-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all .25s cubic-bezier(.4, 0, .2, 1);
      color: rgba(255, 255, 255, .8);
      border-radius: 10px;
      position: relative;
      z-index: 1;
      margin: 2px 0
    }

    .lang-option:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(45, 212, 191, .1));
      opacity: 0;
      transition: opacity .25s ease;
      border-radius: 10px;
      z-index: -1
    }

    .lang-option:hover:before {
      opacity: 1
    }

    .lang-option:hover {
      background: rgba(52, 211, 153, .1);
      color: #34d399;
      transform: translateX(-4px);
      box-shadow: 0 4px 12px rgba(16, 185, 129, .2)
    }

    .lang-option.active {
      color: #34d399;
      background: linear-gradient(135deg, rgba(52, 211, 153, .15), rgba(52, 211, 153, .08));
      border: 1px solid rgba(52, 211, 153, .2);
      box-shadow: 0 2px 8px rgba(16, 185, 129, .15)
    }

    .lang-option .flag-icon {
      font-size: 20px;
      transition: all .3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2))
    }

    .lang-option:hover .flag-icon {
      transform: scale(1.15) rotate(3deg);
      filter: drop-shadow(0 4px 8px rgba(52, 211, 153, .4))
    }

    .lang-option.active .flag-icon {
      transform: scale(1.1);
      filter: drop-shadow(0 0 10px rgba(52, 211, 153, .6))
    }

    .lang-toggle i {
      transition: transform .3s ease;
      color: rgba(255, 255, 255, .7)
    }

    .lang-toggle:hover i {
      transform: rotate(15deg);
      color: #34d399
    }

    body {
      position: relative;
      overflow-x: hidden
    }

    body:before {
      content: "";
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse at top, rgba(16, 185, 129, .05), transparent 50%), radial-gradient(ellipse at bottom, rgba(45, 212, 191, .05), transparent 50%);
      z-index: -1;
      pointer-events: none
    }

    .blob {
      position: absolute;
      filter: blur(80px);
      border-radius: 9999px;
      z-index: -1
    }

    .blob-1 {
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: rgba(16, 185, 129, .15);
      transition: transform 0.3s ease
    }

    .blob-2 {
      top: 30%;
      right: -80px;
      width: 350px;
      height: 350px;
      background: rgba(45, 212, 191, .12);
      transition: transform 0.3s ease
    }

    .blob-3 {
      bottom: -100px;
      left: 40%;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, rgba(16, 185, 129, .1), rgba(45, 212, 191, .08));
      transition: transform 0.3s ease
    }

    @keyframes floatSlow {

      0%,
      100% {
        transform: translate(0, 0) scale(1)
      }

      33% {
        transform: translate(30px, -30px) scale(1.1)
      }

      66% {
        transform: translate(-30px, 30px) scale(.9)
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translate(0, 0)
      }

      50% {
        transform: translate(20px, -20px)
      }
    }

    section {
      border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .section {
      padding: 56px 0
    }

    h2 {
      font-size: 26px;
      margin: 0 0 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp .6s ease-out forwards
    }

    @media(min-width:640px) {
      h2 {
        font-size: 30px
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .about p {
      color: rgba(255, 255, 255, .75);
      line-height: 1.9;
      margin: 14px 0 0;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp .6s ease-out .2s both
    }

    .list {
      display: grid;
      gap: 12px;
      margin-top: 18px
    }

    @media(min-width:768px) {
      .list {
        grid-template-columns: 1fr 1fr
      }
    }

    .li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(255, 255, 255, .85);
      opacity: 0;
      transform: translateX(-20px);
      animation: fadeInLeft .5s ease-out forwards;
      transition: all .3s
    }

    .li:nth-child(1) {
      animation-delay: .1s
    }

    .li:nth-child(2) {
      animation-delay: .2s
    }

    .li:nth-child(3) {
      animation-delay: .3s
    }

    .li:nth-child(4) {
      animation-delay: .4s
    }

    .li:nth-child(5) {
      animation-delay: .5s
    }

    .li:nth-child(6) {
      animation-delay: .6s
    }

    .li:nth-child(7) {
      animation-delay: .7s
    }

    .li:nth-child(8) {
      animation-delay: .8s
    }

    @keyframes fadeInLeft {
      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .li:hover {
      color: #34d399;
      transform: translateX(10px)
    }

    .bullet {
      margin-top: 7px;
      width: 8px;
      height: 8px;
      border-radius: 9999px;
      background: #10b981;
      display: inline-block;
      flex-shrink: 0;
      opacity: 0.7
    }

    @keyframes bulletPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1
      }

      50% {
        transform: scale(1.3);
        opacity: .8
      }
    }

    .feature-group {
      margin-top: 40px;
      background: rgba(0, 0, 0, .4);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 20px;
      padding: 35px;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateX(-30px);
      animation: fadeInLeft .7s ease-out forwards
    }

    .feature-group:nth-child(1) {
      animation-delay: .1s
    }

    .feature-group:nth-child(2) {
      animation-delay: .2s
    }

    .feature-group:nth-child(3) {
      animation-delay: .3s
    }

    .feature-group:nth-child(4) {
      animation-delay: .4s
    }

    .feature-group:nth-child(5) {
      animation-delay: .5s
    }

    .feature-group:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #34d399, transparent);
      opacity: .6;
      transition: opacity .3s
    }

    .feature-group:hover:before {
      opacity: 1;
      width: 6px
    }

    .feature-group:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, .05), transparent);
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
      z-index: -1
    }

    .feature-group:hover {
      transform: translateX(10px);
      border-color: rgba(16, 185, 129, .3);
      box-shadow: 0 10px 40px rgba(0, 0, 0, .4)
    }

    .feature-group:hover:after {
      opacity: 1
    }

    .feature-group h3 {
      font-size: 22px;
      color: #34d399;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(16, 185, 129, .2);
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative
    }

    .feature-group h3:after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #34d399, transparent);
      transition: width .5s ease
    }

    .feature-group:hover h3:after {
      width: 100px
    }

    .feature-group h3 i {
      font-size: 24px;
      transition: all 0.3s ease
    }

    @keyframes iconFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg)
      }

      50% {
        transform: translateY(-5px) rotate(5deg)
      }
    }

    .themes-grid {
      display: grid;
      gap: 14px;
      margin-top: 24px;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr))
    }

    .theme-item {
      padding: 18px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, .15);
      background: rgba(0, 0, 0, .4);
      backdrop-filter: blur(3px);
      text-align: center;
      transition: all .3s;
      opacity: 0;
      transform: scale(.9);
      animation: fadeInScale .5s ease-out forwards
    }

    .theme-item:nth-child(1) {
      animation-delay: .1s
    }

    .theme-item:nth-child(2) {
      animation-delay: .2s
    }

    .theme-item:nth-child(3) {
      animation-delay: .3s
    }

    .theme-item:nth-child(4) {
      animation-delay: .4s
    }

    .theme-item:nth-child(5) {
      animation-delay: .5s
    }

    .theme-item:nth-child(6) {
      animation-delay: .6s
    }

    .theme-item:nth-child(7) {
      animation-delay: .7s
    }

    .theme-item:nth-child(8) {
      animation-delay: .8s
    }

    .theme-item:nth-child(9) {
      animation-delay: .9s
    }

    @keyframes fadeInScale {
      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    .theme-item:hover {
      background: rgba(0, 0, 0, .6);
      border-color: rgba(16, 185, 129, .4);
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 30px rgba(16, 185, 129, .2)
    }

    .btn {
      display: inline-block;
      padding: 12px 20px;
      border-radius: 12px;
      font-weight: 700;
      transition: all .3s;
      position: relative;
      overflow: hidden
    }

    .btn-primary {
      background: #10b981;
      color: #000;
      box-shadow: 0 10px 30px rgba(16, 185, 129, .25)
    }

    .btn-primary:hover {
      background: #34d399;
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(16, 185, 129, .4)
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 10px 30px rgba(16, 185, 129, .3)
    }

    .shimmer {
      position: relative;
      overflow: hidden
    }

    .shimmer:after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-100%);
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
      opacity: 0.5
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-100%)
      }

      100% {
        transform: translateX(100%)
      }
    }

    footer {
      background: rgba(0, 0, 0, .7);
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 25px 0;
      margin-top: 60px
    }

    .foot {
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      text-align: center
    }

    .page-header {
      text-align: center;
      padding: 80px 0 60px;
      background: linear-gradient(135deg, rgba(16, 185, 129, .1), transparent);
      position: relative;
      overflow: hidden
    }

    .page-header:before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(16, 185, 129, .1), transparent 70%);
      z-index: -1
    }

    .page-header h1 {
      font-size: 52px;
      margin: 0 0 24px;
      color: #34d399;
      background: linear-gradient(135deg, #34d399, #22d3ee);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0;
      transform: translateY(30px);
      background-size: 200% 200%;
      animation: fadeInUp .8s ease-out forwards, gradientShift 3s ease-in-out infinite
    }

    @keyframes gradientShift {

      0%,
      100% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }
    }

    .page-header p {
      font-size: 21px;
      color: rgba(255, 255, 255, .8);
      max-width: 700px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp .8s ease-out .2s both
    }

    /* Edit Account Modal Styles - Same as index.html */
    .edit-account-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999999;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
      padding: 20px
    }

    .edit-account-modal[style*="display: flex"] {
      opacity: 1;
      visibility: visible
    }

    .edit-account-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .85);
      backdrop-filter: blur(10px);
      z-index: 1
    }

    .edit-account-modal-content {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, .95);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 20px;
      max-width: 550px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .8), 0 0 60px rgba(16, 185, 129, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
      animation: modalSlideIn .3s ease-out
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-20px) scale(.95)
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1)
      }
    }

    .edit-account-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .edit-account-modal-header h2 {
      margin: 0;
      font-size: 24px;
      font-weight: 700;
      color: #34d399;
      font-family: 'Tajawal', 'Cairo', 'Inter', 'Poppins', system-ui, sans-serif
    }

    [dir="rtl"] .edit-account-modal-header h2 {
      font-family: 'Tajawal', 'Cairo', 'Inter', system-ui, sans-serif
    }

    [dir="ltr"] .edit-account-modal-header h2 {
      font-family: 'Inter', 'Poppins', 'Tajawal', 'Cairo', system-ui, sans-serif
    }

    .edit-account-modal-close {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .7);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all .3s ease;
      padding: 0
    }

    .edit-account-modal-close:hover {
      background: rgba(239, 68, 68, .2);
      border-color: rgba(239, 68, 68, .4);
      color: #ef4444;
      transform: rotate(90deg) scale(1.1)
    }

    .edit-account-modal-body {
      padding: 28px
    }

    .form-group {
      margin-bottom: 24px
    }

    .form-group label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-weight: 600;
      color: rgba(255, 255, 255, .9);
      font-size: 15px
    }

    .form-group label i {
      color: #34d399;
      width: 20px;
      text-align: center
    }

    .form-group input {
      width: 100%;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 12px;
      color: #fff;
      font-size: 15px;
      transition: all .3s ease;
      font-family: inherit;
      box-sizing: border-box
    }

    .form-group input:focus {
      outline: none;
      border-color: #34d399;
      background: rgba(52, 211, 153, .05);
      box-shadow: 0 0 0 3px rgba(52, 211, 153, .1), 0 4px 12px rgba(16, 185, 129, .15)
    }

    .form-group input::placeholder {
      color: rgba(255, 255, 255, .4)
    }

    .form-help {
      display: block;
      margin-top: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.5
    }

    .error-message {
      background: rgba(239, 68, 68, .15);
      border: 1px solid rgba(239, 68, 68, .3);
      color: #ef4444;
      padding: 14px 16px;
      border-radius: 12px;
      margin-bottom: 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .error-message:before {
      content: "\f071";
      font-family: "Font Awesome 6 Free";
      font-weight: 900
    }

    .success-message {
      background: rgba(16, 185, 129, .15);
      border: 1px solid rgba(16, 185, 129, .3);
      color: #34d399;
      padding: 14px 16px;
      border-radius: 12px;
      margin-bottom: 20px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .success-message:before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900
    }

    .form-actions {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .8);
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all .3s ease;
      font-size: 15px
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .2);
      color: #fff;
      transform: translateY(-2px)
    }

    .btn-secondary:active {
      transform: translateY(0)
    }

    @media(max-width:640px) {
      .edit-account-modal-content {
        max-width: 100%;
        border-radius: 16px
      }

      .edit-account-modal-header {
        padding: 20px
      }

      .edit-account-modal-body {
        padding: 20px
      }

      .form-actions {
        flex-direction: column-reverse
      }

      .form-actions .btn {
        width: 100%
      }
    }

    /* Premium star */
    .user-star {
      color: #FFD700;
      margin-left: 6px;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      text-shadow: 0 0 10px rgba(255, 215, 0, .8), 0 0 20px rgba(255, 215, 0, .5);
      opacity: 0.8;
      filter: drop-shadow(0 0 3px rgba(255, 215, 0, .7));
    }

    @keyframes starGlow {
      0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, .8), 0 0 20px rgba(255, 215, 0, .5)
      }

      100% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 25px rgba(255, 215, 0, .7)
      }
    }

    /* Developer Cards Animations */
    .dev-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .dev-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .dev-card:hover {
      transform: translateY(-10px) scale(1.02);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .dev-card:hover::before {
      opacity: 1;
    }

    /* DKSTR Card Specifics */
    .dev-card.dkstr:hover {
      border-color: #10b981;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.2), inset 0 0 20px rgba(16, 185, 129, 0.05);
    }

    .dev-card.dkstr .dev-avatar {
      transition: all 0.5s ease;
      border: 2px solid rgba(16, 185, 129, 0.3);
    }

    .dev-card.dkstr:hover .dev-avatar {
      transform: scale(1.1) rotate(5deg);
      border-color: #10b981;
      box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    }

    /* X1V Card Specifics */
    .dev-card.x1v:hover {
      border-color: #22d3ee;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.2), inset 0 0 20px rgba(34, 211, 238, 0.05);
    }

    .dev-card.x1v .dev-avatar {
      transition: all 0.5s ease;
      border: 2px solid rgba(34, 211, 238, 0.3);
    }

    .dev-card.x1v:hover .dev-avatar {
      transform: scale(1.1) rotate(-5deg);
      border-color: #22d3ee;
      box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    }

    .dev-name {
      font-size: 24px;
      font-weight: 700;
      margin: 15px 0 5px;
      color: #fff;
      transition: color 0.3s;
    }

    .dev-role {
      font-size: 14px;
      margin: 0;
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .dev-card:hover .dev-name {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .dev-card {
      cursor: pointer;
    }

    /* Developer Modal Styles */
    .dev-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(15px);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dev-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .dev-modal-content {
      background: rgba(10, 10, 10, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      padding: 40px;
      max-width: 500px;
      width: 90%;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
      overflow: hidden;
    }

    .dev-modal-overlay.active .dev-modal-content {
      transform: scale(1) translateY(0);
    }

    /* Animated Background for Modal */
    .dev-modal-content::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
      /* removed */;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes rotateBg {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .dev-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: none;
      color: rgba(255, 255, 255, 0.6);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      z-index: 10;
    }

    .dev-modal-close:hover {
      background: rgba(239, 68, 68, 0.2);
      color: #ef4444;
      transform: rotate(90deg);
    }

    .dev-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .dev-header {
      position: relative;
      margin-bottom: 25px;
      display: inline-block;
    }

    .dev-modal-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .dkstr-glow {
      box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
      border-color: #10b981;
    }

    .x1v-glow {
      box-shadow: 0 0 40px rgba(34, 211, 238, 0.4);
      border-color: #22d3ee;
    }

    .flag-badge {
      position: absolute;
      bottom: 5px;
      right: 5px;
      font-size: 32px;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
      animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s backwards;
    }

    @keyframes popIn {
      from {
        transform: scale(0);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .dev-real-name {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      margin: 0 0 5px;
    }

    .dev-username {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.5);
      margin: 0 0 20px;
      font-family: monospace;
      letter-spacing: 2px;
    }

    .dev-tags {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .tag {
      padding: 6px 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 600;
      backdrop-filter: blur(5px);
    }

    .tag.dkstr {
      background: rgba(16, 185, 129, 0.15);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .tag.x1v {
      background: rgba(34, 211, 238, 0.15);
      color: #22d3ee;
      border: 1px solid rgba(34, 211, 238, 0.3);
    }

    .tag.country {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dev-bio {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.03);
      padding: 20px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

#updatePasswordBtn:hover div {
      transform: translateX(100%);
    }

    /* Close Button Hover */
    #closeAccountInfoModal:hover {
      background: rgba(239, 68, 68, 0.25);
      border-color: rgba(239, 68, 68, 0.5);
      transform: rotate(90deg) scale(1.1);
    }

    /* Input Focus Effects */
    #verificationCodeInput:focus,
    #newPasswordInput:focus,
    #confirmPasswordInput:focus {
      border-color: #8b5cf6;
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), inset 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    /* RTL Support */
    [dir="rtl"] #accountInfoModal {
      direction: rtl;
    }

    [dir="rtl"] #closeAccountInfoModal {
      left: 20px;
      right: auto;
    }

    [dir="rtl"] #verificationCodeInput {
      direction: ltr;
      text-align: center;
    }

    /* Success/Error Message Styles */
    #accountInfoMessage.success {
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: #22c55e;
      box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    }

    #accountInfoMessage.error {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: #ef4444;
      box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    }

    /* RTL Support for Account Info Modal */
    [dir="rtl"] #accountInfoModalContent {
      direction: rtl !important;
    }

    [dir="ltr"] #accountInfoModalContent {
      direction: ltr !important;
    }

    [dir="rtl"] .modal-header,
    [dir="rtl"] .modal-body {
      text-align: right;
    }

    [dir="ltr"] .modal-header,
    [dir="ltr"] .modal-body {
      text-align: left;
    }

    [dir="rtl"] #accountInfoModalContent h2 {
      direction: rtl !important;
      text-align: center;
    }

    [dir="rtl"] #accountInfoModalContent label {
      text-align: right !important;
    }

    [dir="ltr"] #accountInfoModalContent label {
      text-align: left !important;
    }

    [dir="rtl"] #accountInfoModalContent input[type="password"],
    [dir="rtl"] #accountInfoModalContent input[type="text"] {
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      #accountInfoModal>div {
        margin: 20px;
        padding: 30px;
        max-height: 95vh;
      }

      .button-group {
        flex-direction: column;
      }

      #verificationCodeInput {
        font-size: 20px;
        letter-spacing: 8px;
      }
    }


