html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    
    display: flex;
    justify-content: center; /* Yatay ortalama */
    align-items: center; /* Dikey ortalama */
    background-image: url(media/png/02.png);
    background-size: cover;
    
    
  }
body {
  animation: fadeInPage 1s ease-in-out forwards;
  opacity: 0; /* başlangıçta görünmez */
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}
  
  .inner-box {
    width: 96%;
    height: 93%;
    background-color: white;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: "Chakra Petch", sans-serif;
  }

  .corner {
    width: 10vw;
    height: 5vw;
    position: absolute;
    
  }

  .top-left {
    top: 0;
    left: 0;
    background-image: url(media/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7vw auto;
  }

  .top-right {
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: "Chakra Petch", sans-serif;
    font-size: 0.6vw;
    padding-left: 4.5vw;
    padding-bottom: 1.5vw;
    padding-right: 8.6vw;
    gap: 0.8vw;
  }

  .bottom-left {
    bottom: 0;
    left: 0;
    width: auto;
    
    text-align: center;
    justify-content: center;
    display: flex;
    padding-left: 1.8vw;
    
    padding-right: 20px;
    height: 80px;
    margin-bottom: 1vw;
    border: 0px dashed black;
      border-top-right-radius: 100px;
      border-bottom-right-radius: 100px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      background-color: rgba(255, 255, 255, 0.5); /* %50 şeffaf beyaz */
      box-shadow: 20px 0px 25px rgba(0, 0, 0, 0.13);

      
    
    
    
  }

  .bottom-right {
    width: 32vw;
    height: 2vw;
    bottom: 0;
    right: 0;
    
    
  }


  .bt-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.bt-visible {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.5s ease;
  

} 



.button-active {
  background-color: #22c55e !important; /* Tailwind'in yeşil tonu */
  color: white !important;
  border-color: #22c55e !important;
}





.log {
  
 position: absolute;
  top: 10px; /* isteğe göre yukarıdan mesafe */
  left: 46%;
  transform: translateX(-50%); /* yatay ortalama */
  
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.7vw;
  font-weight: 300;
  
  
  padding: 0.5vw 1vw;
  border-radius: 5px;
  margin-top: 1vw;

  color: #000;
  opacity: 0.8;
  transition: opacity 0.1s;

  display: none; /* JS tarafından kontrol edilecek */
  z-index: 1000;
  background-color: rgba(128, 128, 128, 0.1);
}


.money_btn:hover {
  opacity: 1;
  cursor: context-menu;
}

.opacity {
  cursor: pointer;
  opacity: 0.3; !important
  
}

.opacity:hover {

  opacity: 1;
  
}

.active-opacity {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
  }

.has-tooltip {
  position: relative;
  cursor: pointer;
}



i {
      font-size: 48px;
      color: #333;
      cursor: pointer;
    }

    /* Tooltip kutusu */
    #tooltip {
      position: fixed;
      background-color: #222;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 14px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease;
      z-index: 9999;
    }


    .disable-click {
    pointer-events: none;
    cursor: not-allowed;
  }

  .button {
      font-size: 1rem;
      font-weight: bold;
      padding: 8px 25px;
      border-radius: 50px;
      border: 2px solid black;
      
      color: black;
      cursor: pointer;
      transition: all 0.3s ease;
      
    }

    

    .button_onay {
      font-size: 1rem;
      font-weight: bold;
      padding: 8px 25px;
      border-radius: 50px;
      border: 2px solid black;
      
      color: black;
      cursor: pointer;
      transition: all 0.05s ease;
    }


    /* Hover state */
    .button:hover {
      border: 2px dashed black;
      color: black;
      /* Renk değişmiyor */
    }

    .button_onay:hover {
      border: 2px solid black;
      color: black;
      scale: 1.05;
      /* Renk değişmiyor */
    }

    .button_onay:active {
      border: 2px solid black;
      background-color: black;
      color: white;
      /* Renk değişmiyor */
    }

    /* Active state */
    .button:active {
      background-color: black;
      color: white;
      border: none;
      border: 2px solid black;
         }


         .icon_go{
          
         }

         .icon_go:hover {
          
          scale: 1.2;
         }

         .icon_go:active {
          scale: 1;
          color: #22c55e;
          
         }

      .button_renk {
      width: 1.5vw;
      height: 1.5vw;
      border-radius: 50%;
      background-size: cover;   /* Tüm div'i kaplasın */
      background-position: center;  /* Ortalansın */
      background-repeat: no-repeat; /* Tekrar etmesin */
      border: none;
      outline: none;
      cursor: pointer;
      
      transition: transform 0.1s ease;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
      
      
      
      
      
    }


    .button_renk:hover {

      
      transform: scale(1.15); /* %10 büyütür */
    }

    .button_renk.active {

      outline: 2px solid black;
    }

    .cizgi {

      
      height: 66px;
      bottom: 15px;
      width: 270px;
      border: 2px dashed black;
      border-top-right-radius: 100px;
      border-bottom-right-radius: 100px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0


    }


      

    .noise-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none; /* Tıklamaları engellemesin */
      z-index: 9999; /* En üstte */
      background-image: url('media/07p-40col.png');
      background-size: cover;
      opacity: 0.01; /* Yoğunluk ayarı */
      mix-blend-mode: overlay; /* Blending modu */
    }

    .gg {
      position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  text-align: center;
 z-index: 1000; /* Gerekirse öne çıkarır */
 opacity: 0.7;
    }

    .version {
      position: absolute;
      top: 3vw;
      left: 1.6vw;
      font-weight: 100;
      font-size: 0.6vw;
      opacity: 0.5;

    }


    .mrg_btn {

      margin-bottom: 0.15vw;
    }

    

    #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      color: #333;
      font-family: "Chakra Petch", sans-serif;
    }

    #progress-bar {
      width: 300px;
      height: 20px;
      background: #333;
      border-radius: 10px;
      overflow: hidden;
      margin-top: 20px;
      box-shadow: 0 0 5px rgba(0,0,0,0.4);
      font-family: "Chakra Petch", sans-serif;
    }

    #progress-fill {
      height: 100%;
      width: 0%;
      background-color: #333;
      border-radius: 10px;
      transition: width 0.3s ease;
      font-family: "Chakra Petch", sans-serif;
    }

    #progress-text {
      margin-top: 10px;
      font-size: 18px;
      font-family: "Chakra Petch", sans-serif;
    }

    #main-content {
      display: none;
      padding: 40px;
      font-family: "Chakra Petch", sans-serif;
    }