@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #000000;
    background-size: 100% 100%;
    color: #000000;
    overscroll-behavior: none;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    scrollbar-width: none;
}

#app {
    font-family: 'Manrope', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    position: relative;
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #b0b0b0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tos-content {
    background: transparent;
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

section {
    margin-bottom: 2.5rem;
}

section:last-of-type {
    margin-bottom: 3rem;
}

h2 {
    font-family: 'Manrope', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.home-button {
    background: #ffffff;
    border: none;
    color: #000000;
    padding: 0.7rem 1.8rem;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.home-button:hover {
    background-color: #afafaf;
}

body::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
    #app {
        padding: 2rem 1.5rem 4rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .tos-content {
        padding: 1.8rem;
        border-radius: 1rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 0.95rem;
    }
}