body {
    background-color: #111111;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px 20px;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #FFCC00;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #A0A0A5;
    line-height: 1.6;
    margin-bottom: 40px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.button {
    display: inline-block;
    background-color: #FFCC00;
    color: #111111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 30px;
    width: 80%;
    max-width: 300px;
    transition: transform 0.2s, opacity 0.2s;
}

.button:hover {
    transform: scale(1.02);
}

.button.secondary {
    background-color: #1C1C1E;
    color: #FFFFFF;
}

.content-page {
    text-align: left;
    max-width: 800px;
    padding: 40px 20px;
    margin: 0 auto;
    display: block;
}

.content-page h1 {
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.content-page h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #FFCC00;
}

.content-page p {
    font-size: 16px;
    color: #D1D1D6;
    line-height: 1.6;
    margin-bottom: 15px;
}

.back-link {
    display: inline-block;
    color: #FFCC00;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
}

footer {
    margin-top: 60px;
    font-size: 12px;
    color: #636366;
}
