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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: large;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-weight: 600;
}

.right span {
    padding: 5px 10px;
}

.right a {
    color: #0366d6;
    text-decoration: none;
    font-weight: 400;
}

.right a:hover {
    text-decoration: underline;
}

.content {
    flex: 1;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    margin-bottom: 10px;
    color: #222;
}

/* ---- Plugin list (landing page) ---- */
.plugin-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.plugin-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    background: #fafafa;
    transition: box-shadow 0.2s;
}

.plugin-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.plugin-card p {
    margin-bottom: 14px;
    color: #555;
}

.plugin-links a {
    display: inline-block;
    margin-right: 16px;
    color: #0366d6;
    text-decoration: none;
    font-size: 0.95em;
}

.plugin-links a:hover {
    text-decoration: underline;
}

/* ---- General page content (privacy/terms/support) ---- */
.content h2 {
    margin-top: 28px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.content h3 {
    margin: 16px 0 8px;
    color: #555;
    font-weight: 400;
}

.content p, .content li {
    margin-bottom: 12px;
    color: #444;
}

.content ul {
    margin: 10px 0 20px 24px;
}

.content ul li {
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.footer {
    text-align: left;
    font-size: small;
    color: #888;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    padding-top: 12px;
}

/* ---- Support page ---- */
.support-box {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.support-box h1 {
    margin-bottom: 20px;
}

.support-box .contact {
    font-size: 1.1em;
    margin-top: 16px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 8px;
}

.support-box .contact a {
    color: #0366d6;
    text-decoration: none;
}