@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:wght@600;900&family=Raleway:wght@700;800;900&display=swap');

:root {
    /* 戦略新カラーパレット：セージ × クリーム × ゴールド（温かみとプロ感の両立） */
    --cream:        #FAF8F4;
    --soft-white:   #FFFFFF;
    --sage:         #7FAF80;
    --sage-light:   #A8CCA9;
    --sage-dark:    #4E7D50;
    --gold:         #C8964A;
    --gold-light:   #E8C47A;
    --warm-brown:   #6B5B45;
    --text-main:    #3A3228;
    --text-sub:     #7A6B5A;
    --line-green:   #06C755;

    --font-jp:    'Noto Sans JP', sans-serif;
    --font-en:    'Poppins', sans-serif;

    --radius-btn: 18px;
    --shadow-sm:  0 4px 16px rgba(79, 95, 64, 0.10);
    --shadow-md:  0 8px 28px rgba(79, 95, 64, 0.14);
    --shadow-lg:  0 16px 40px rgba(200, 150, 74, 0.20);
}

/* ─── Reset ─── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Body ─── */
body {
    background-color: var(--cream);
    color: var(--text-main);
    font-family: var(--font-jp);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
    position: relative;
}

/* ─── Floating Orbs (背景アクセント) ─── */
.orb {
    position: fixed;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.orb-1 {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    top: -20vw;
    right: -15vw;
    opacity: 0.35;
    animation: orb-drift 22s ease-in-out infinite alternate;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: -10vw;
    left: -10vw;
    opacity: 0.30;
    animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #D4E8D4 0%, transparent 70%);
    top: 40vh;
    left: -5vw;
    opacity: 0.25;
    animation: orb-drift 25s ease-in-out infinite alternate;
}

@keyframes orb-drift {
    0%   { transform: translate(0%,   0%)   scale(1); }
    50%  { transform: translate(3%,   5%)   scale(1.05); }
    100% { transform: translate(-3%,  3%)   scale(0.97); }
}

/* ─── Container ─── */
.app-container {
    width: 100%;
    max-width: 480px;
    padding: 56px 20px 48px;
    z-index: 10;
    position: relative;
}

/* ─── Profile ─── */
.profile {
    text-align: center;
    margin-bottom: 44px;
}

/* プロフィール画像リング */
.profile-img-container {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--sage), var(--gold));
    box-shadow: var(--shadow-md);
    position: relative;
}



.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--soft-white);
}

/* バッジ */
.profile-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--sage-dark), var(--sage));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(78, 125, 80, 0.25);
}

/* 名前: LynxBase | ゆかり 2段スタイル */
.profile-name {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-sub);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.name-brand {
    font-family: 'Raleway', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--sage-dark);
    letter-spacing: 0.06em;
    display: block;
    width: 100%;
    line-height: 1.1;
}

.name-sep {
    display: none; /* 区切り文字は非表示、改行で代用 */
}

.name-person {
    font-family: var(--font-jp);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-sub);
    display: block;
    width: 100%;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* キャッチコピー */
.profile-bio {
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--sage-dark);
    margin-bottom: 4px;
    text-wrap: balance;     /* 行の長さを均等化してセンターずれを防ぐ */
    -webkit-text-wrap: balance;
}

.bio-line2 {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--warm-brown);
    line-height: 1.7;
    margin-top: 6px;
}

.bio-sub {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-sub);
    display: block;
    margin-top: 16px;
    line-height: 1.9;
}

/* チェックリスト */
.check-list {
    list-style: none;
    margin-top: 24px;
    display: inline-block;
    text-align: left;
}

.check-list li {
    font-size: 0.82rem;
    color: var(--warm-brown);
    line-height: 2;
    font-weight: 500;
}

.check {
    margin-right: 4px;
}

/* ─── LINE Banner (CTA) ─── */
.line-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #06C755, #04A844);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 36px;
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.line-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.line-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(6, 199, 85, 0.45);
}

.line-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.line-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.line-banner-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.line-banner-sub {
    font-size: 0.78rem;
    opacity: 0.92;
    font-weight: 500;
}

.line-banner-arrow {
    font-size: 0.9rem;
    opacity: 0.85;
    flex-shrink: 0;
}

/* ─── Section Label ─── */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-sub);
    letter-spacing: 0.06em;
    padding: 0 4px 8px;
    margin-top: 16px;
}

/* ─── Links ─── */
.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 60px;
}

.link-btn {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--soft-white);
    text-decoration: none;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* ボタンの左カラー帯 */
.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: var(--radius-btn) 0 0 var(--radius-btn);
    background: linear-gradient(to bottom, var(--sage), var(--gold));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.link-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 150, 74, 0.3);
}

.link-btn:hover::before {
    opacity: 1;
}

.link-btn .icon {
    grid-row: span 2;
    font-size: 1.45rem;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--sage);
    transition: color 0.25s ease, transform 0.25s ease;
}

.link-btn:hover .icon {
    color: var(--gold);
    transform: scale(1.1);
}

.link-btn .text {
    font-family: var(--font-jp);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.link-btn .link-sub {
    font-size: 0.72rem;
    color: var(--text-sub);
    font-weight: 400;
    line-height: 1.4;
}

/* Instagram固有カラー */
.link-instagram:hover .icon { color: #E1306C; }

/* Threads固有カラー */
.link-threads:hover .icon { color: #1A1A1A; }

/* Spotify固有カラー */
.link-spotify:hover .icon { color: #1DB954; }

/* note固有カラー */
.link-note:hover .icon { color: #41C9B4; }

/* プレゼントLINEボタン（フィーチャーされた特別枠） */
.link-gift {
    background: linear-gradient(135deg, #F0FAF0, #E8F5E9);
    border-color: rgba(6, 199, 85, 0.3);
}

.link-gift .icon {
    color: var(--line-green);
    font-size: 1.6rem;
}

.link-gift .text {
    color: #2E7D32;
}

.link-gift:hover {
    border-color: rgba(6, 199, 85, 0.6);
    box-shadow: 0 12px 32px rgba(6, 199, 85, 0.18);
}

/* ─── Footer ─── */
footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-sub);
    font-family: var(--font-en);
    margin-bottom: 20px;
    opacity: 0.7;
}
