/* empty for now bcuz, I dont need */
:where([class^="ri-"])::before { content: "\f3c2"; }
      body {
      font-family: 'Inter', sans-serif;
      background-color: #000000;
      color: #E2E8F0;
      overflow-x: hidden;
      }
      .gradient-text {
      background: linear-gradient(90deg, #b635f1, #7c05bd);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      }
      .gradient-bg {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
      }
      .card-hover {
      transition: all 0.3s ease;
      }
      .card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3);
      }
      .custom-cursor {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: rgba(165, 129, 250, 0.5);
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
      transition: transform 0.1s ease;
      }
      .custom-cursor-follower {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(159, 119, 253, 0.3);
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
      }
      input[type="range"] {
      width: 100%;
      height: 6px;
      background: #1E293B;
      border-radius: 5px;
      outline: none;
      }
      input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      background: #070016;
      border-radius: 50%;
      cursor: pointer;
      }
      input[type="range"]::-moz-range-thumb {
      width: 18px;
      height: 18px;
      background: #060015;
      border-radius: 50%;
      cursor: pointer;
      border: none;
      }
      .custom-checkbox {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 4px;
      background-color: #1E293B;
      cursor: pointer;
      }
      .custom-checkbox.checked {
      background-color: #8B5CF6;
      }
      .custom-checkbox.checked::after {
      content: '';
      position: absolute;
      top: 5px;
      left: 7px;
      width: 6px;
      height: 10px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      }
      .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 26px;
      }
      .switch input {
      opacity: 0;
      width: 0;
      height: 0;
      }
      .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #1E293B;
      transition: .4s;
      border-radius: 34px;
      }
      .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
      }
      input:checked + .slider {
      background-color: #8B5CF6;
      }
      input:checked + .slider:before {
      transform: translateX(24px);
      }
      .custom-radio {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: #1E293B;
      cursor: pointer;
      }
      .custom-radio.checked {
      background-color: #8B5CF6;
      }
      .custom-radio.checked::after {
      content: '';
      position: absolute;
      top: 6px;
      left: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: white;
      }
      .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/astronout.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      z-index: -1;
      }
      .particle {
      position: absolute;
      background: linear-gradient(135deg, #8B5CF6, #EC4899);
      border-radius: 50%;
      opacity: 0.3;
      }
      .masonry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      grid-auto-rows: 10px;
      grid-gap: 20px;
      }
      .masonry-item {
      grid-row-end: span var(--span);
      }
      /* .code-clean{
        position: absolute;
        top: 10px;
        
        text-align: end;
        font-family: 'Courier New', Courier, monospace;
        font-size: 1.875rem;
        background-color: rgba(138, 92, 246, 0);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
      } */
       .blur-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 999;
        }
      input[type="number"]::-webkit-inner-spin-button,
      input[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
      }
      /* input[type="number"] {
      -moz-appearance: textfield;
      } */
      @keyframes headerEffect {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      .header-effect {
        animation: headerEffect 1s ease-out;
      }