@property --k {
	syntax: '<number>';
	initial-value: 0;
	inherits: false
}

@font-face {
    font-family: "smallest-p7";
    src: url("../../assets/font/smallest_pixel-7.ttf")
}

html { overflow: hidden; }

body {
    background: rgb(0,0,0);
    background-repeat: no-repeat;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: "smallest-p7", sans-serif;
}

.enter-btn {
    color: white;
    font-family: smallest-p7;
    font-size: 30px;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.disc-btn {
    color: #5865f2;
    font-family: smallest-p7;
    font-size: 30px;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.tele-btn {
    color: #0088cc;
    font-family: smallest-p7;
    font-size: 30px;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.terms-btn {
    color: #AB47BC;
    font-family: smallest-p7;
    font-size: 30px;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 60%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.home {
    display: none;
}

svg[height='0'] 
{ 
    position: absolute;
}

.title {
	--k: 0;
	place-self: center;
	background: linear-gradient(90deg, hsl(calc(var(--k)*1turn), 95%, 65%), hsl(calc(var(--k)*1turn + 90deg), 95%, 65%)) text;
	color: transparent;
    font-family: smallest-p7;
    font-size: 100px;
	filter: url(#f);
    left: 0;
    line-height: 200px;
    margin-top: -200px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
	animation: k 4s linear infinite;
    z-index: 1;
}

.txt-type {
    color: white;
    font-family: smallest-p7;
    font-size: 20px;
    line-height: 200px;
    margin-top: -130px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 99%;
    user-select: none;
    z-index: 1;
}

.random-text {
    position: absolute;
    font-size: 24px;
    font-family: Arial, sans-serif;
    color: rgb(50, 50, 50);
    user-select: none;
    font-family: smallest-p7;
    font-size: 20px;
}

.txt-type > .txt {
    border-right: 0.1rem solid #ffffff;
 }

.typewriter-cycle 
{
    display: inline-block;
    position: relative;
    list-style: none;
    padding: 0;
    width: 20ch;
    margin: 0;
}
  
.typewriter-cycle li:not(:first-child) 
{
    position: absolute;
    top: 0; left: 0;
}
  
typewritten-text {
    font-weight: bold;
}
  
typewritten-text:not(.active) .cursor.current::after {
    visibility: hidden;
}

@keyframes k { to { --k: 1 } }

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
/* Button Styles */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    text-decoration: none;
    font-family: "smallest-p7";
    font-size: 20px;
    color: white;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.button.discord {
    background-color: #5865f2;
}

.button.discord:hover {
    background-color: #4a5bd3;
}

.button.telegram {
    background-color: #0088cc;
}

.button.telegram:hover {
    background-color: #0077aa;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: white;
    font-family: "smallest-p7", sans-serif;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.terms-content h2 {
    color: #a97aff;
    font-size: 22px;
    margin-top: 20px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.back-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "smallest-p7", sans-serif;
    background-color: #5865f2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #a97aff;
}

.back-link {
    text-align: center;
    display: block;
    margin-top: 20px;
}


