      @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Bruno+Ace+SC&family=Audiowide&family=Bokor&display=swap");

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

      html {
        scroll-behavior: smooth;
      }

      body {
        background: #f5f7fa;
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
        min-height: 100vh;
        transition: background 0.3s, color 0.3s;
      }
      button a{
        color: #fff;
      }
      body.dark-theme {
        background: #1a1a1a;
        color: #fff;
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, #ff5ef7, #02f5ff);
        box-shadow: 0 4px 10px_RGBA (0, 0, 0, 0.2);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 20px;
        z-index: 1000;
      }

      .nav-container img {
        width: 60px;
        height: 60px;
      }

      nav ul {
        display: flex;
        gap: 30px;
        list-style: none;
      }

      nav ul li a {
        text-decoration: none;
        color: #fff;
        font-family: "Bruno Ace SC", sans-serif;
        font-size: 18px;
        transition: color 0.3s;
      }

      nav ul li a:hover,
      .active {
        color: #ffd700;
        border-bottom: 2px solid #ffd700;
      }

      .search {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .search-input {
        padding: 10px;
        width: 200px;
        border-radius: 25px;
        border: none;
        outline: none;
        font-size: 14px;
        transition: border 0.3s;
      }

      .search-input:focus {
        border: 2px solid #ffd700;
      }

      .dark-theme .search-input {
        background: #333;
        color: #fff;
      }

      .btn {
        padding: 8px 15px;
        border-radius: 25px;
        border: 2px solid #fff;
        background: transparent;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #ffd700;
      }

      .dark-mode {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.3s;
      }

      .dark-mode:hover {
        color: #ffd700;
      }

      #menuIcon {
        display: none;
        background: none;
        border: none;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
      }

      header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
        padding: 40px 20px;
        gap: 50px;
        background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.1),
          #f5f7fa
        );
      }

      .dark-theme header {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), #1a1a1a);
      }

      .letter {
        width: 50%;
        text-align: center;
      }

      .letter h1 {
        font-family: "Audiowide", sans-serif;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 20px;
      }

      .dark-theme .letter h1 {
        color: #fff;
      }

      .letter p {
        font-family: "Poppins", sans-serif;
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
      }

      .dark-theme .letter p {
        color: #ddd;
      }

      .letter span {
        color: #ff5ef7;
        font-weight: 600;
      }

      .head-galla img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        animation: spinEarth 12s linear infinite;
        transform-origin: center center;
      }

      /* Ensure responsiveness for smaller screens */
      @media (max-width: 768px) {
        .head-galla img {
          width: 100%;
          max-width: 300px;
          height: 350px;
        }
      }

      @media (max-width: 428px) {
        .head-galla img {
          max-width: 250px;
          height: 300px;
        }
        
      }

      .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .card {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
      }

      .dark-theme .card {
        background: #333;
      }

      .card.hidden {
        display: none;
      }

      .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .card p {
        font-family: "Bruno Ace SC", sans-serif;
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 10px;
      }

      .dark-theme .card p {
        color: #fff;
      }

      .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
      }

      .free,
      .premium {
        margin-top: 10px;
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .free {
        background: linear-gradient(90deg, #08ff08, #0ff0fc);
        color: #fff;
      }

      .free:hover {
        background: linear-gradient(90deg, #0ff0fc, #08ff08);
      }

      .premium {
        background: linear-gradient(90deg, #f83600, #f9d423);
        color: #fff;
      }

      .premium:hover {
        background: linear-gradient(90deg, #f9d423, #f83600);
      }

      .main-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 50px 20px;
        padding: 40px;
        background: linear-gradient(135deg, #ff5ef7, #02f5ff);
        border-radius: 20px;
        gap: 40px;
      }

      .dark-theme .main-container {
        background: linear-gradient(to right, #333, #555);
      }

      .my-pic img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }

      .script {
        width: 50%;
      }

      .title-me {
        font-family: "Audiowide", sans-serif;
        font-size: 2rem;
        color: #fff;
        margin-bottom: 20px;
      }

      .about-me {
        font-size: 1.2rem;
        color: #fff;
        line-height: 1.6;
      }

      .about-me span {
        color: #ffd700;
      }

      .hold {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        background: #fff;
        margin: 40px 0;
      }

      .dark-theme .hold {
        background: #1a1a1a;
      }

      .collect {
        text-align: center;
      }

     

      .pchum {
        font-size: 1rem;
        color: #333;
        margin-top: 20px;
      }

      .dark-theme .pchum {
        color: #fff;
      }

      .happy {
        font-size: 2rem;
        font-weight: 600;
      }

      .border {
        border: 2px solid #333;
        display: inline-block;
        padding: 5px 15px;
        margin: 10px 0;
      }

      .dark-theme .border {
        border-color: #fff;
      }

       section .link-con {
        display: block;
        margin: 20px auto;
        padding: 15px 30px;
        background: linear-gradient(90deg, #ff5ef7, #02f5ff);
        border: none;
        border-radius: 25px;
        text-align: center;
        text-decoration: none;
        font-family: "Bruno Ace SC", sans-serif;
        font-size: 1.2rem;
        color: #fff;
        transition: transform 0.3s;
        width: 300px;
      }

      .link-con:hover {
        transform: scale(1.1);
      }

      footer {
        background: linear-gradient(135deg, #ff5ef7, #02f5ff);
        padding: 40px 20px;
        border-radius: 20px 20px 0 0;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
      }

      footer ul {
        list-style: none;
      }

      footer ul li {
        margin: 10px 0;
      }

      footer ul li a {
        text-decoration: none;
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        transition: color 0.3s;
      }

      footer ul li a:hover {
        color: #ffd700;
      }

      .first-ul {
        display: flex;
        gap: 15px;
      }

      .first-ul li a i {
        font-size: 24px;
      }

      #social {
        font-family: "Bruno Ace SC", sans-serif;
        font-size: 1.2rem;
        color: #fff;
        border-bottom: 2px solid #ffd700;
        margin-bottom: 10px;
      }

      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        justify-content: center;
        align-items: center;
        z-index: 2000;
      }

      .modal-content {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
      }

      .dark-theme .modal-content {
        background: #333;
        color: #fff;
      }

      .modal-content h2 {
        font-family: "Bruno Ace SC", sans-serif;
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 20px;
      }

      .dark-theme .modal-content h2 {
        color: #fff;
      }

      .modal-content p {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        color: #555;
        margin-bottom: 20px;
      }

      .dark-theme .modal-content p {
        color: #ddd;
      }

      .modal-content button {
        padding: 10px 20px;
        background: linear-gradient(90deg, #08ff08, #0ff0fc);
        border: none;
        border-radius: 25px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
      }

      .modal-content button:hover {
        background: linear-gradient(90deg, #0ff0fc, #08ff08);
      }

      .close-modal {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        color: #333;
        cursor: pointer;
      }

      .dark-theme .close-modal {
        color: #fff;
      }

      @media (max-width: 768px) {
        nav {
          display: none;
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: rgba(0, 0, 0, 0.8);
          padding: 20px;
          text-align: center;
        }

        nav.active {
          display: block;
        }

        nav ul {
          flex-direction: column;
          gap: 20px;
        }

        #menuIcon {
          display: block;
        }

        .search-input {
          width: 150px;
        }

        header {
          flex-direction: column;
          text-align: center;
        }

        .letter {
          width: 90%;
        }

        .head-galla img {
          width: 100%;
          max-width: 300px;
        }

        .main-container {
          flex-direction: column;
          text-align: center;
        }

        .script {
          width: 90%;
        }

        .my-pic img {
          width: 200px;
          height: 200px;
        }
      }

      @media (max-width: 428px) {
        .btn {
          font-size: 0;
        }

        .btn i {
          font-size: 18px;
        }

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

    

        .first-ul {
          justify-content: center;
        }

        .second-ul,
        .third-ul,
        .fourth-ul {
          display: none;
        }
      }