body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #111;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.center-box {
    padding: 20px;
    text-align: center;
}

.tor-info {
    text-align: center;
    margin-top: 100px;
    font-size: 12px;
    color: #aaa;
}
.tor-info a {
    color: #aaa;
    margin-top: 100px;
    text-decoration: underline;
}

.profile-container {
    padding: 25px;
    border-radius: 16px;
    max-width: 500px;
    width: 500px;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: none;
    margin-top: 5px;
    backdrop-filter: none;
}


.avatar {
    box-shadow: none;
    filter: none;
}

.logo-button {
    box-shadow: none;
    filter: none;
}

.profile-container h1,
.profile-container p {
    text-shadow: none;
    text-decoration: none;
    line-height: normal;
}

.profile-container a {
    text-shadow: none;
    text-decoration: none;
}

.profile-container p {
    margin: 5px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}

.logo-button {
    width: 40px;
    vertical-align: initial;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    border: none;
    height: 40px;
    cursor: pointer;
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    line-height: 0;
}

.form-box {
    background-color: rgba(30, 30, 30, 0.95);
    padding: 25px;
    border-radius: 12px;
    /* box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15); */
    margin-top: 40px;
    width: 90%;
    max-width: 500px;
    color: white;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #777;
    background-color: #2c2c2c;
    color: white;
}

button {
    margin-top: 15px;
    width: 100%;
    background: #777;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #555;
}

        .about-container {
            max-width: 600px;
            text-align: center;
            padding: 20px;
            line-height: 1.6;
        }

        .about-slide {
            display: none;
        }

        .about-slide.active {
            display: block;
        }

        .about-container ul {
            list-style: none;
            padding: 0;
            margin: 10px 0 20px;
        }

        .about-container li {
            font-weight: bold;
            margin: 4px 0;
        }

        .about-container a {
            color: #87cefa;
            text-decoration: underline;
        }

        .about-container img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            margin-top: 20px;
        }

        #nextBtn {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #777;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        #nextBtn:hover {
            background-color: #555;
        }

a {
    color: #87cefa;
}

.tos-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.tos-check input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}

small {
    color: #bbb;
}

select {
    background-color: #2c2c2c;
    color: white;
    border: 1px solid #777;
}

.input-wrapper {
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
  font-family: sans-serif;
}

.prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  font-size: 16px;
}

.input-wrapper input {
  padding-left: 150px;
  font-size: 16px;
  height: 30px;
  box-sizing: border-box;
}

.cf-turnstile {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin: 0 5px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.social-text {
    margin: 0 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    .center-box h1 {
        font-size: 2.5rem;
    }

    .center-box {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .profile-container {
        width: 90%;
        padding: 15px;
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    .logo-button {
        width: 35px;
        height: 35px;
    }

    .form-box {
        padding: 20px;
    }

    .center-box {
        padding: 15px;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    .center-box h1 {
        font-size: 3rem;
    }

    .center-box {
        font-size: 1.25rem;
    }
}