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

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.app-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Main Content */
main {
    margin-bottom: 60px;
}

main h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.last-updated,
.subtitle {
    color: #888;
    margin-bottom: 30px;
}

section {
    margin-bottom: 35px;
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

section h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

section p {
    color: #ccc;
    margin-bottom: 12px;
}

section ul {
    color: #ccc;
    margin-left: 25px;
    margin-bottom: 12px;
}

section li {
    margin-bottom: 8px;
}

section a {
    color: #fff;
    text-decoration: underline;
}

section a:hover {
    color: #ccc;
}

/* FAQ Items */
.faq-item {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 0;
}

/* No Collect List */
.no-collect-list {
    list-style: none;
    margin-left: 0;
}

.no-collect-list li {
    padding-left: 0;
}

.red-x {
    color: #ff4444;
    font-weight: bold;
    margin-right: 8px;
}

/* Contact Info */
.contact-info {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

footer nav {
    margin-bottom: 20px;
}

footer nav a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

footer nav a:hover {
    color: #fff;
}

footer p {
    color: #555;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
    }

    .app-name {
        font-size: 1.4rem;
    }

    main h2 {
        font-size: 1.6rem;
    }

    footer nav a {
        display: block;
        margin: 10px 0;
    }
}
