/* invite.css - Linktree Style (ライトテーマ) */
:root {
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #1f2937;
    --subtext: #64748b;
    --border: #e2e8f0;
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

/* プロフィール */
.profile {
    margin-bottom: 40px;
}

.avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.bio {
    color: var(--subtext);
    font-size: 16px;
}

/* セクションタイトル */
.section-title {
    font-size: 19px;
    font-weight: 700;
    text-align: left;
    margin: 32px 0 16px;
    color: #334155;
}

/* リンクボタン */
.link-button {
    display: block;
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 14px;
    background-color: var(--card);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.link-button:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
}

.benefit {
    display: block;
    background: #ecfdf5;
    color: #166534;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-top: 8px;
    font-weight: 500;
}

/* 特殊ボタン（Bing、SeaArtなど） */
.special {
    padding: 20px;
    cursor: default;
}

.description {
    font-size: 15px;
    color: var(--subtext);
    margin: 10px 0 12px;
    line-height: 1.5;
}

.inner-link {
    color: var(--accent);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 10px;
}

.sub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 12px 0;
}

.sub-link {
    padding: 8px 18px;
    background: #f1f5f9;
    color: var(--accent);
    text-decoration: none;
    font-size: 14.5px;
    border-radius: 9999px;
    white-space: nowrap;
}

/* コピーボタン */
.copy-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--accent);
    color: white;
}

/* Ko-fi */
.kofi-button {
    padding: 24px 20px;
}

/* 広告 */
.ad-section {
    margin: 40px 0;
    text-align: center;
}

.ad-section img {
    max-width: 100%;
    height: auto;
}

/* フッター */
nav, footer {
    margin-top: 40px;
}

.back-link, .non-ssl-link {
    color: var(--accent);
    text-decoration: none;
}

.back-link:hover, .non-ssl-link:hover {
    text-decoration: underline;
}

/* レスポンシブ */
@media (max-width: 480px) {
    body { padding: 32px 16px; }
    h1 { font-size: 24px; }
    .link-button { font-size: 16px; padding: 16px 18px; }
}