@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.tablet-container {
    width: 768px; /* Lebar tablet standar */
    max-width: 100%; /* Agar tidak melebihi layar pada perangkat kecil */
    margin: 0 auto; /* Agar berada di tengah layar */
}

@media only screen and (min-width: 769px) {
    body {
        overflow-x: hidden;
    }
}


:root {
    --primary-color: #009EEC;
    --secondary-color: #0A1F3A;
    --background-color: #0B172E;
    --text-light-color: #F6FFFF;
    --text-blue-color: #30A7E7;
    --pink-color: #eb95df;
    --purple-color: #710BBA;
    --cyan-color: #39C6E2;
    --blue-color: #0B3FBD;
    --cyan-light-color: #6FEEE6;
    --yellow-color: #FFF2AF;
}

body {
    scroll-behavior: smooth;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: black;
    letter-spacing: 1px;
}

.text-size-sub {
    font-size: 12px;
}

.text-size-sub-2 {
    font-size: 10px;
}

.text-light-custom {
    color: var(--cyan-color);
}

.text-dark-custom {
    color: #818181;
}

.round {
    border-radius: 26px;
}



.bg-dark-main {
    /* background-color: var(--background-color); */
    background-color: #161616;
    /* backdrop-filter: blur(2px); */
}

.bg-dark-second {
    background-color: #2A2A2A;

}

.pink {
    color: var(--cyan-light-color);
}

.purple {
    color: var(--pink-color);
}

.green {
    color: var(--text-light-color);
}

.cyan {
    color: var(--cyan-light-color);
}

.yellow {
    color: var(--yellow-color);
}

.dark {
    color: #161616;
}

.mining {
    background-color: var(--primary-color);
    /* border: 1.5px solid #03aae0; */
}

.mining-dashboard {
    background-color: #161616;
}

.mining-button {
    background-color: #03aae0;
}

.fw-custom {
    font-weight: 900;
}

.button-start-mining {
    all: unset;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.button-claim-miner {
    all: unset;
    background-color: #DC96E6;
    font-size: 12px;
    font-weight: bold;
}

.button-add-miner {
    all: unset;
    background-color: var(--purple-color);
    font-size: 12px;
    color: var(--text-light-color);
    font-weight: bold;
}

.button-buy {
    all: unset;
    background-color: #03aae0;
    font-size: 12px;
    font-weight: bold;
}

.button-stop {
    all: unset;
    background-color: #ed5182;
    font-size: 12px;
    font-weight: bold;
    color: #ece2e2;
}

.button-pink {
    all: unset;
    background-color: #e08bd4;
    font-size: 12px;
    font-weight: bold;
    color: #ece2e2;
}

.text-miner {
    font-size: 14px;
}

.orange {
    color: #FF5C16;
}

.light-orange {
    color: #FFA680;
}

.full-screen {
    height: 100svh;
}

.input-name {
    border: 2px solid #818181;
    background-color: #2A2A2A;
    color: #FBFBFB;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.input-name:focus {
    border-color: #03aae0;
    outline: none;
    background-color: #2A2A2A;
}

.input-name::placeholder {
    color: #818181;
    font-weight: normal;
    opacity: 0.5;
}

.font-weight-custom {
    font-weight: 500;
}

.menu-bar {
    position: fixed !important;
    width: 100%;
    bottom: 0px;
    z-index: 999;
    left: 0;
}

.navbar {
    position: fixed !important;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 999;
    background: rgba(11, 23, 46, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gradient {
    --size: 180px;
    --speed: 10s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);

    position: fixed;
    /* Tetap di tempat saat di-scroll */
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 2.3));
    background-image: linear-gradient(hsl(200, 77%, 55%), hsl(311, 74%, 58%));
    animation: rotate var(--speed) var(--easing) infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.8;
}

.gradient-2 {
    --size: 180px;
    --speed: 10s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);

    position: fixed;
    /* Tetap di tempat saat di-scroll */
    bottom: 10%;
    right: -10%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 2.3));
    background-image: linear-gradient(hsl(311, 74%, 58%), hsl(200, 77%, 55%));
    animation: rotate var(--speed) var(--easing) infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.8;
}

/* This is just to transition when you change the viewport size. */
* {
    transition: all 0.5s ease-out;
}

.glassmorphism {
    /* background: rgba(25, 25, 25, 0.6); */
    /* background: rgba(10, 31, 58, 0.6); */
    background: rgba(11, 23, 46, 0.3);
    /* Warna lebih gelap dengan transparansi */
    backdrop-filter: blur(42px);
    /* Efek blur lebih intens */
    -webkit-backdrop-filter: blur(42px);
    border: 1px solid rgba(255, 255, 255, 0.285);
    /* Border halus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih dalam */
}

.glassmorphism-blue {
    background: rgb(19 48 104 / 63%);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    border: 1px solid rgba(255, 255, 255, 0.285);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.glassmorphism-bt-none {
    /* background: rgba(25, 25, 25, 0.6); */
    /* background: rgba(10, 31, 58, 0.6); */
    background: rgba(11, 23, 46, 0.3);
    /* Warna lebih gelap dengan transparansi */
    backdrop-filter: blur(42px);
    /* Efek blur lebih intens */
    -webkit-backdrop-filter: blur(42px);
    border-right: 1px solid rgba(255, 255, 255, 0.285);
    border-bottom: 1px solid rgba(255, 255, 255, 0.285);
    border-left: 1px solid rgba(255, 255, 255, 0.285);
    /* Border halus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih dalam */
}

.glassmorphism-dark {
    /* background: rgba(25, 25, 25, 0.6); */
    /* background: rgba(10, 31, 58, 0.6); */
    background: rgba(8, 18, 35, 0.4);
    /* Warna lebih gelap dengan transparansi */
    backdrop-filter: blur(42px);
    /* Efek blur lebih intens */
    -webkit-backdrop-filter: blur(42px);
    border: 1px solid rgba(255, 255, 255, 0.285);
    /* Border halus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih dalam */
}

.glassmorphism-dark-n-boder {
    /* background: rgba(25, 25, 25, 0.6); */
    /* background: rgba(10, 31, 58, 0.6); */
    background: rgba(8, 18, 35, 0.4);
    /* Warna lebih gelap dengan transparansi */
    backdrop-filter: blur(42px);
    /* Efek blur lebih intens */
    -webkit-backdrop-filter: blur(42px);
    /* Border halus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih dalam */
}

.glassmorphism-light {
    /* background: rgba(25, 25, 25, 0.6); */
    /* background: rgba(10, 31, 58, 0.6); */
    background: rgba(38, 38, 40, 0.3);
    /* Warna lebih gelap dengan transparansi */
    backdrop-filter: blur(42px);
    /* Efek blur lebih intens */
    -webkit-backdrop-filter: blur(42px);
    border: 1px solid rgba(255, 255, 255, 0.285);
    /* Border halus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih dalam */
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.285)!important;
}
