/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', Georgia, serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
}

.container--wide {
    max-width: 800px;
}

/* ===== NAVIGATION ===== */
.back-link {
    display: inline-block;
    color: #0ABAB5;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 32px;
}

.back-link:hover {
    text-decoration: underline;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
}

.subtitle {
    font-size: 18px;
    color: #555555;
    margin-bottom: 12px;
}

.date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 40px;
    font-style: italic;
}

p, li {
    font-size: 17px;
    color: #333333;
    margin-bottom: 16px;
}

ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

strong {
    font-weight: 600;
    color: #000000;
}

a {
    color: #0ABAB5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
    font-size: 15px;
}

/* ===== HOMEPAGE SPECIFIC ===== */
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 32px;
}

.description {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
}

.features {
    list-style: none;
    margin-bottom: 80px;
}

.features li {
    font-size: 17px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0ABAB5 0%, #00CED1 100%);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 64px;
    transition: opacity 0.2s;
}

.cta-button:hover {
    opacity: 0.9;
}

/* ===== TABLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
}

th, td {
    border: 1px solid #e5e5e5;
    padding: 12px;
    text-align: left;
}

th {
    background: #f9f9f9;
    font-weight: 600;
}

@media (max-width: 600px) {
    table {
        font-size: 14px;
    }
    th, td {
        padding: 8px;
    }
}

/* ===== CARDS & BLOCKS ===== */
.notice {
    background: #f9f9f9;
    border-left: 4px solid #0ABAB5;
    padding: 20px;
    margin: 32px 0;
    border-radius: 8px;
}

.notice p {
    font-size: 17px;
    color: #000000;
    margin: 0;
}

.free-plan {
    background: #f9f9f9;
    border-left: 4px solid #0ABAB5;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
}

.free-plan h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.doc-block {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}

.doc-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.doc-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.doc-block p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.doc-link {
    display: inline-block;
    color: #0ABAB5;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.doc-link:hover {
    text-decoration: underline;
}

/* ===== INTRO & NOTES ===== */
.intro {
    font-size: 17px;
    color: #333333;
    margin-bottom: 32px;
}

.note {
    font-size: 15px;
    color: #666666;
    font-style: italic;
    margin-top: 8px;
}

/* ===== LEGAL FOOTER (TERMS PAGE) ===== */
.legal-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.legal-footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-footer p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.legal-footer a {
    color: #0ABAB5;
    text-decoration: none;
}

.legal-footer a:hover {
    text-decoration: underline;
}

.update-date {
    font-size: 14px;
    color: #999999;
    margin-top: 24px;
    font-style: italic;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid #e5e5e5;
    margin-top: 64px;
    padding-top: 32px;
    font-size: 14px;
    color: #999999;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    margin-right: 16px;
}

.footer-support {
    margin-top: 8px;
    display: inline-block;
}

.age-restriction {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}
