body {
    background-color: #000000;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    display: flex;
    min-height: 100vh;
    overflow-x: auto;
}

.container {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    width: 100%;
    max-width: 42rem;
    background-color: #2a2a2a;
    border: 1px solid #4a4a4a;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.terms-content {
    font-size: 1.125rem;
    line-height: 1.75;
}

.terms-content ul {
    list-style-position: inside;
    list-style-type: decimal;
    padding-left: 0;
}

.terms-content li {
    margin-bottom: 0.75rem;
}

.terms-content strong {
    font-weight: 600;
}

.link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.link:hover {
    color: #0056b3;
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .terms-content {
        font-size: 1rem;
    }
}