@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');


body {

    height: 100%;
    margin: 0;
    background: 
    linear-gradient(180deg, rgba(6,8,12,1) 0%, rgba(12,10,18,1) 100%), 
    radial-gradient(600px 400px at 10% 10%, rgba(126,58,255,0.08), transparent 20%), 
    radial-gradient(500px 300px at 90% 90%, rgba(0,255,200,0.04), transparent 25%);
    background-blend-mode: screen, overlay;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.head {
    font:  2.3rem "Unbounded" ;
    color: white;
}

.box {
    background: rgba(31, 29, 36, 0.445);
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 6px 30px rgba(2,6,12,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
    backdrop-filter: blur(6px) saturate(120%);
    margin: 0 50px;
    border-radius: 24px;
    width: 500px;
    height: 250px;
    padding-bottom: 1.2rem;
    padding-right: 1rem;
    padding-left: 1rem;

}

.info{
    font: 1rem "system-ui";
    line-height: 1.5;
    color:rgba(203, 213, 225, 0.8);
}

.wrapper {
    display: flex;
    align-items: center;
    gap: 3rem
}

.credits {
    font: 1rem "Roboto Mono";
    color: #94a3b8;
}

.author {
    font: 1rem "Roboto Mono";
    color: white;
    text-decoration: underline;
}


.discord {
    width: 200px;
    align-items: center;
    background: linear-gradient(to right, rgb(0, 132, 209), rgba(255, 255, 255, 0));
    font: bold 1rem "Roboto Mono";
    color: white;
    text-decoration: none;
    padding: 0.4rem; 
    border-radius: 10px;
    transition: all 0.5s ease;
}

.store {
    width: 200px;
    align-items: center;
    background: linear-gradient(to right, rgb(209, 0, 0), rgba(255, 255, 255, 0));
    font: bold 1rem "Roboto Mono";
    color: white;
    text-decoration: none;
    padding: 0.4rem; 
    border-radius: 10px;
    transition: all 0.5s ease;
}

.store a {
    text-decoration: none;
    color: white;
}

.store:hover {
    transform: scale(1.1);
}

.store a:hover {
    transform: scale(1.1);
}

.discord a {
    text-decoration: none;
    color: white;
}

.discord a:hover {
    transform: scale(1.1);
}

.discord:hover {
    transform: scale(1.1);
}

.maintenance {
    background: linear-gradient(180deg,   rgba(255, 255, 255, 0.05),  rgba(255, 255, 255, 0.01)  );
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(8px) saturate(150%);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    padding: 2rem;
    width: 500px;
}

.terminal {
    font: 400 14px "system-ui";
    color:#94a3b8; 
}

.prefix {
    font:  14px "Roboto Mono";
    color: rgb(255, 255, 255);
}

.link {
    color: white;
}

.root {
    font: 400 14px "Roboto Mono";
    color: #b9f6ca;
}

.mode {
    margin-left: auto;
    color: #94a3b8;
    font: 14px "Roboto Mono";
}

.duration {
    font: 400 14px "Roboto Mono";
    color: white;
}

.icons {
    margin-bottom: 25px;
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.red {
    background: rgb(255, 78, 78);
}

.yellow {
    background: rgb(255, 208, 0);
}

.green {
    background: rgb(0, 233, 0);
}

.term-progress {
  height: 10px;
  width: 100%;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.03);
}

.cursor {
  display:inline-block;
  width:8px;
  height:18px;
  background: #b9f6ca;
  margin-left:6px;
  border-radius: 2px;
  animation: blink 1s steps(2,end) infinite;
  vertical-align: text-bottom;
}

@keyframes blink { 50% { opacity: 0 } }



