@font-face {
    font-family: 'Poppins-Bold';
    src: url("https://www.gamercity.net/assets/style/static/fonts/poppins/Poppins-Bold.ttf") format('truetype');
}
@font-face {
    font-family: 'Poppins-Light';
    src: url("https://www.gamercity.net/assets/style/static/fonts/poppins/Poppins-Light.ttf") format('truetype');
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url("https://www.gamercity.net/assets/style/static/fonts/poppins/Poppins-Medium.ttf") format('truetype');
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url("https://www.gamercity.net/assets/style/static/fonts/poppins/Poppins-Regular.ttf") format('truetype');
}
@font-face {
    font-family: 'Poppins-SemiBold';
    src: url("https://www.gamercity.net/assets/style/static/fonts/poppins/Poppins-SemiBold.ttf") format('truetype');
}

*{font-family: Poppins-Regular,system-ui; margin:0; padding:0; list-style: none; text-decoration: none; outline: 0; font-size:14px; box-sizing: border-box;}
.form-control{ height: 50px; }
.dropdown-toggle::after {
    display:none;
}
body{ background-color:rgba(21,20,25,1); overflow-x:hidden }
.page-header{
    border-top:1px solid rgb(61, 61, 60,.5);
    border-bottom:1px solid rgb(61, 61, 60,.5);
    background-color: rgba(35,34,39,.3); 
    padding: 10px;  
    color:#f2f2f2;
    text-indent: 10px;
    box-shadow: 0px 1px 5px 0px #000;
}

/* Kullanım: <div class="gc-scroll"> ... </div> */

.gc-scroll{
  overflow-y: auto;
  overflow-x: hidden;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #403E8F #1f1e24; /* thumb / track */
}

/* Chrome, Edge, Safari */
.gc-scroll::-webkit-scrollbar{
  width: 10px;
}

.gc-scroll::-webkit-scrollbar-track{
  background: #1f1e24;                 /* koyu track */
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
}

.gc-scroll::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(64,62,143,.95), rgba(64,62,143,.55));
  border-radius: 999px;
  border: 2px solid #1f1e24;           /* thumb etrafında boşluk hissi */
  box-shadow: 0 8px 18px rgba(64,62,143,.20);
}

.gc-scroll::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(64,62,143,1), rgba(120,70,255,.65));
}

.gc-scroll::-webkit-scrollbar-thumb:active{
  background: rgba(64,62,143,1);
}

.gc-scroll::-webkit-scrollbar-corner{
  background: transparent;
}

