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

      :root {
        --border: 240 10% 20%;
      }

body {
  font-family: "Cairo", sans-serif;
  background: hsl(220 25% 8% / 1);
  color: #fff;
  overflow-x: hidden;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
      }

      .mobile-menu-btn.active .hamburger {
        background: transparent;
      }

      .mobile-menu-btn.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
      }

      .mobile-menu-btn.active .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
      }

      .hamburger {
        width: 25px;
        height: 3px;
        background: white;
        position: relative;
        transition: all 0.3s;
      }

      .hamburger::before,
      .hamburger::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3s;
      }

      .hamburger::before {
        top: -8px;
      }

      .hamburger::after {
        top: 8px;
      }

      .nav-btn {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        color: white;
        border: none;
        padding: 0.7rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: transform 0.3s;
      }

      .nav-btn:hover {
        transform: translateY(-2px);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        margin-top: 0;
        padding: 0 10%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
        background: linear-gradient(to right,
            hsl(220 20% 18%) 1px,
            transparent 1px),
          linear-gradient(to bottom, hsl(220 20% 18%) 1px, transparent 1px);
        background-size: 50px 50px, 50px 50px, 100% 100%;
        background-position: 0 0, 0 0, 0 0;
        position: relative;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 50%,
            rgba(124, 58, 237, 0.1) 0%,
            transparent 50%);
        pointer-events: none;
      }

      .hero-content {
        flex: 1;
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .badge {
        display: inline-block;
        background: rgba(124, 58, 237, 0.2);
        color: #a855f7;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
      }

      h1 {
        font-size: 3.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
      }

      .highlight {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      #changing-word::after {
        content: "|";
        animation: blink 0.8s infinite;
        margin-left: 4px;
        color: #60a5fa;
      }

      @keyframes blink {
        50% {
          opacity: 0;
        }
      }

      .hero-description {
        color: #94a3b8;
        margin-bottom: 2rem;
        line-height: 1.8;
        font-size: 20px;
      }

      .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .primary-btn {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: transform 0.3s;
        direction: ltr;
      }

      .primary-btn:hover {
        transform: translateY(-2px);
      }

      .secondary-btn {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem 2rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
      }

      .secondary-btn:hover {
        border-color: #7c3aed;
        background: rgba(124, 58, 237, 0.1);
      }

      .stats {
        display: flex;
        gap: 3rem;
      }

      .stat {
        display: flex;
        flex-direction: column;
      }

      .stat-number {
        font-size: 2rem;
        font-weight: bold;
        color: white;
        direction: ltr;
      }

      .stat-label {
        color: #94a3b8;
        font-size: 0.9rem;
      }

      /* Code Preview */
      .code-preview {
        flex: 0.5;
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(124, 58, 237, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        font-family: "Courier New", monospace;
        box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
        position: relative;
        z-index: 1;
        direction: ltr;
      }

      .code-header {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
      }

      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
      }

      .dot.red {
        background: #ef4444;
      }

      .dot.yellow {
        background: #eab308;
      }

      .dot.green {
        background: #22c55e;
      }

      .code-line {
        margin: 0.3rem 0;
      }

      .keyword {
        color: #c084fc;
      }

      .function {
        color: #60a5fa;
      }

      .string {
        color: #34d399;
      }

      /* Featured Game Section */
      .featured {
        padding: 4rem 5%;
        text-align: center;
      }

      .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .section-subtitle {
        color: #94a3b8;
        margin-bottom: 3rem;
      }

      .playable-games {
        --border: 240 10% 20%;
        font-family: "Cairo", sans-serif;
        color: #fff;
        text-align: center;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: grid;
        gap: 13px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .game-card {
        display: flex;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.2);
        border-radius: 16px;
        padding: 2rem;
        text-align: right;
        flex-direction: column;
        /* let content grow, pin meta+button to bottom via margin auto */
        justify-content: flex-start;
      }

      .game-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        direction: ltr;
      }

      .game-title {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .difficulty-badge {
        background: rgba(34, 197, 94, 0.2);
        color: #22c55e;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.8rem;
      }

      .game-description {
        color: #94a3b8;
        margin-bottom: 1.5rem;
        line-height: 1.8;
      }

      .game-meta {
        display: flex;
        gap: 2rem;
        justify-content: center;
        margin-top: auto;
        margin-bottom: 1.5rem;
      }

      .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #94a3b8;
      }

      .play-btn {
        width: 100%;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        direction: ltr;
      }

      /* Leaderboard Section */
      .leaderboard {
        padding: 4rem 5%;
        text-align: center;
      }

      .leaderboard-container {
        gap: 2rem;
        margin-top: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      .leaderboard-card {
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.2);
        border-radius: 16px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        direction: ltr;
      }

      .leaderboard-header {
        display: grid;
        grid-template-columns: 0fr 1fr 2fr 88px;
        padding: 1.5rem 2rem;
        background: rgba(124, 58, 237, 0.1);
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        text-align: right;
      }

      .header-item {
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      .header-player {
        padding-right: 1rem;
      }

      .header-label {
        color: #94a3b8;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .leaderboard-body {
        padding: 0.5rem 0;
      }

      .leaderboard-row {
        display: grid;
        grid-template-columns: 0fr 1fr 2fr 88px;
        padding: 1.25rem 2rem;
        align-items: center;
        text-align: right;
        transition: all 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
      }

      .leaderboard-row::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        opacity: 0;
        transition: opacity 0.3s;
      }

      .leaderboard-row:hover {
        background: rgba(124, 58, 237, 0.05);
        transform: translateX(-5px);
        border-color: rgba(124, 58, 237, 0.3);
      }

      .leaderboard-row:hover::before {
        opacity: 1;
      }

      .leaderboard-row:last-child {
        border-bottom: none;
      }

      .rank-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: bold;
        font-size: 1.1rem;
        justify-content: flex-end;
      }

      .rank-icon {
        font-size: 1.5rem;
      }

      .rank-number {
        color: #94a3b8;
      }

      .rank-1 .rank-number {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .rank-2 .rank-number {
        background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .rank-3 .rank-number {
        background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .player-info {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-right: 1rem;
        flex-direction: row-reverse;
      }

      .player-avatar {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.9rem;
        color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .player-details {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
      }

      .player-name {
        font-weight: 600;
        font-size: 1rem;
        color: #fff;
      }

      .player-country {
        color: #94a3b8;
        font-size: 0.85rem;
      }

      .player-score {
        font-weight: bold;
        font-size: 1.1rem;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .player-level {
        display: flex;
        justify-content: flex-end;
      }

      .level-badge {
        padding: 0.4rem 0.8rem;
        border-radius: 8px;
        font-size: 0.75rem;
        font-weight: 600;
      }

      .level-badge.beginner {
        background: rgba(34, 197, 94, 0.2);
        color: #22c55e;
        border: 1px solid rgba(34, 197, 94, 0.3);
      }

      .level-badge.intermediate {
        background: rgba(234, 179, 8, 0.2);
        color: #eab308;
        border: 1px solid rgba(234, 179, 8, 0.3);
      }

      .level-badge.advanced {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.3);
      }

      .leaderboard-footer {
        padding: 1.5rem 2rem;
        border-top: 1px solid rgba(124, 58, 237, 0.2);
        background: rgba(124, 58, 237, 0.05);
      }

      .view-full-btn {
        background: transparent;
        border: 1px solid rgba(124, 58, 237, 0.5);
        color: #7c3aed;
        padding: 0.8rem 2rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
        width: 100%;
        font-size: 0.95rem;
      }

      .view-full-btn:hover {
        background: rgba(124, 58, 237, 0.1);
        border-color: #7c3aed;
        transform: translateY(-2px);
      }

      /* Coming Soon Section */
      .coming-soon {
        padding: 4rem 5%;
        text-align: center;
      }

      .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .mini-game-card {
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.2);
        border-radius: 16px;
        padding: 2rem;
        text-align: right;
        transition: transform 0.3s, border-color 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .mini-game-card:hover {
        transform: translateY(-5px);
        border-color: rgba(124, 58, 237, 0.5);
      }

      .mini-game-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
       /* direction: ltr; */
      }

      .mini-game-title {
        font-size: 1.3rem;
      }

      .tag {
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.75rem;
      }

      .tag.intermediate {
        background: rgba(234, 179, 8, 0.2);
        color: #eab308;
      }

      .tag.advanced {
        background: rgba(239, 68, 68, 0.2);
        color: #ef4444;
      }

      .tag.expert {
        background: rgba(168, 85, 247, 0.2);
        color: #a855f7;
      }

      .mini-game-desc {
        color: #94a3b8;
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 0.95rem;
      }

      .notify-btn {
        background: transparent;
        border: 1px solid rgba(124, 58, 237, 0.5);
        color: #7c3aed;
        padding: 0.7rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        font-weight: 600;
        transition: all 0.3s;
      }

      .notify-btn:hover {
        background: rgba(124, 58, 237, 0.1);
      }

      /* Why Learn Section */
      .why-learn {
        padding: 4rem 5%;
        text-align: center;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .benefit-card {
        padding: 2rem;
      }

      .benefit-icon {
        width: 60px;
        height: 60px;
        background: rgba(124, 58, 237, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
      }

      .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }

      .benefit-desc {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.8;
      }

      /* Learning Path */
      .learning-path {
        padding: 4rem 5%;
      }

      .path-content {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
        margin-top: 3rem;
      }

      .path-levels {
        flex: 1;
      }

      .level-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .level-number {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }

      .level-info {
        text-align: right;
      }

      .level-info h3 {
        margin-bottom: 0.3rem;
      }

      .level-info p {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.6;
      }

      .path-stats {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .path-stat-card {
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(124, 58, 237, 0.2);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
      }

      .path-stat-number {
        font-size: 3rem;
        font-weight: bold;
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .path-stat-label {
        color: #94a3b8;
        margin-top: 0.5rem;
      }

      /* CTA Section */
      .cta {
        padding: 6rem 5%;
        text-align: center;
      }

      .cta h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
      }

      .cta-description {
        color: #94a3b8;
        margin-bottom: 2rem;
        line-height: 1.8;
      }

      .cta-form {
        display: flex;
        gap: 1rem;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto 1rem;
        flex-direction: row-reverse;
      }

      .cta-input {
        flex: 1;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(15, 23, 42, 0.6);
        color: white;
        text-align: right;
        direction: ltr;
      }

      .cta-input::placeholder {
        color: #94a3b8;
      }

      .cta-note {
        color: #94a3b8;
        font-size: 0.85rem;
      }

      /* Footer */
      footer {
        padding: 3rem 5%;
        border-top: 1px solid rgba(124, 58, 237, 0.1);
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
      }

      .footer-section {
        text-align: right;
      }

      .footer-section h4 {
        margin-bottom: 1rem;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section a {
        color: #94a3b8;
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s;
      }

      .footer-section a:hover {
        color: #7c3aed;
      }

      .social-links {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
        direction: ltr;
      }

      .social-icon {
        width: 40px;
        height: 40px;
        background: rgba(124, 58, 237, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s;
      }

      .social-icon:hover {
        background: rgba(124, 58, 237, 0.4);
      }

      .nav-links a.active {
        color: #7c3aed;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(124, 58, 237, 0.1);
        color: #94a3b8;
        font-size: 0.9rem;
      }

      @media (max-width: 768px) {
        .hero-content {
          align-content: center;
        }

        .mobile-menu-btn {
          display: block;
        }

        .logo img {
          height: 32px;
          max-width: 120px;
        }

        .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          height: 100vh;
          width: 70%;
          max-width: 300px;
          background: rgba(10, 14, 39, 0.98);
          backdrop-filter: blur(20px);
          flex-direction: column;
          padding: 5rem 2rem 2rem;
          gap: 1.5rem;
          transition: left 0.3s ease;
          border-right: 1px solid rgba(124, 58, 237, 0.2);
          z-index: 999;
        }

        .nav-links.active {
          left: 0;
        }

        .nav-links a {
          font-size: 1.2rem;
          padding: 0.5rem 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-btn {
          display: none;
        }

        .hero {
          flex-direction: column-reverse;
          padding: 6rem 5% 3rem;
          min-height: 100vh;
          justify-content: center;
        }

        .hero-buttons {
          flex-direction: column;
        }

        .code-preview {
          display: none;
        }

        .stats {
          justify-content: center;
          flex-wrap: wrap;
        }

        .path-content {
          flex-direction: column;
        }

        .games-grid {
          grid-template-columns: 1fr;
        }

        .benefits-grid {
          grid-template-columns: 1fr;
        }

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

        .hero-main-title {
          font-size: 2.5rem !important;
          text-align: right;
        }

        .hero-description {
          text-align: right;
          font-size: 18px;
        }

        .leaderboard-header,
        .leaderboard-row {
          grid-template-columns: 60px 1fr 80px;
        }

        .player-level {
          display: none;
        }

        .leaderboard-header .header-item:last-child {
          display: none;
        }

        .player-info {
          gap: 0.75rem;
        }

        .player-avatar {
          width: 40px;
          height: 40px;
          font-size: 0.85rem;
        }

        .player-name {
          font-size: 0.95rem;
        }

        .player-country {
          font-size: 0.8rem;
        }

        .player-score {
          font-size: 1rem;
        }

        .leaderboard-header,
        .leaderboard-row {
          padding: 1rem 1.5rem;
        }
      }

      @media (max-width: 480px) {
        .hero-main-title {
          font-size: 4rem !important;
          text-align: right;
        }

        .code-preview {
          display: none;
        }

        .hero-description {
          text-align: right;
        }

        .section-title {
          font-size: 2rem;
        }

        .hero {
          padding: 0rem 5% 2rem;
        }

        .stats {
          gap: 1.5rem;
        }
      }

      .hero-main-title {
        font-size: 6rem;
      }

      @media (max-width: 820px) {
        .code-preview {
          display: none;
        }

        .badge {
          font-size: 1.2rem;
        }
      }

      .lang-btn {
        background: rgba(124, 58, 237, 0.8);
        border: 1px solid rgba(124, 58, 237, 0.3);
        color: white;
        padding: 0.7rem 1.2rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
      }

      .lang-btn:hover {
        background: rgba(124, 58, 237, 1);
        transform: translateY(-2px);
      }

      .nav-start-lang {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      /* Button */

      .nav-btn:hover {
        background: linear-gradient(135deg, #8b5cf6, #c084fc);
        transform: translateY(-2px);
      }

      /* Language Switcher */
      .lang-switcher {
        background: hsl(240, 20%, 15%);
        color: #fff;
        border: 1px solid hsl(260, 50%, 50%);
        border-radius: 8px;
        padding: 0.3rem 0.5rem;
        font-weight: 500;
        font-family: "Cairo", sans-serif;
        cursor: pointer;
        transition: 0.3s ease;
        direction: ltr;
        -webkit-appearance: none;
      }

      .lang-switcher:hover {
        background: hsl(260, 30%, 25%);
        border-color: hsl(280, 70%, 60%);
      }

      .lang-switcher:focus {
        outline: none;
        border-color: #a855f7;
        box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
      }

      /* Option text color */
      .lang-switcher option {
        background: #1e1e2e;
        color: white;
      }

      /* Option text color */
      .lang-switcher option {
        background: #1e1e2e;
        color: white;
      }