:root {
    --bck-pink: #ff69b4;
    --bck-gold: #ffdd78;
    --bck-blue: #5aa9ff;
    --bck-green: #5cd1a6;
    --bck-text: #1f2937;
    --bck-muted: #6b7280;
    --bck-paper: #fffdf6;
}

.bck-characters-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 2rem);
    color: var(--bck-text);
}

.character-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    background: linear-gradient(135deg, #fff0f8, #f2fbff);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.hero-copy .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bck-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.hero-copy p {
    color: var(--bck-muted);
    font-size: 1.05rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn.primary {
    background: var(--bck-pink);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.hero-btn.secondary {
    background: white;
    color: var(--bck-text);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-illustration img {
    width: 100%;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.character-lines {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.character-banner-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.banner-with-characters {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.character-banner-stack figure {
    margin: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    background: white;
}

.character-banner-stack img {
    width: 100%;
    height: auto;
    display: block;
}

.character-line {
    position: relative;
    padding: 1rem 0 0;
}

.line-rope {
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #f5c06b,
        #f5c06b 16px,
        #f5d68a 16px,
        #f5d68a 28px
    );
    border-radius: 999px;
}

.line-polaroids {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: -12px;
}

.polaroid-card {
    background: var(--bck-paper);
    padding: 0.75rem;
    border-radius: 14px;
    width: 130px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(31, 41, 55, 0.08);
    position: relative;
}

.polaroid-pin {
    width: 12px;
    height: 12px;
    background: var(--bck-pink);
    border-radius: 50%;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.polaroid-photo {
    background: white;
    border-radius: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.polaroid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.polaroid-card p {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bck-text);
}

.character-profiles h2,
.extra-friends h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.character-card {
    background: white;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.character-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}

.character-card h3 {
    margin-bottom: 0.5rem;
}

.character-card p {
    color: var(--bck-muted);
    font-size: 0.95rem;
}

.extra-friends {
    margin-top: 3rem;
}

.extra-header p {
    color: var(--bck-muted);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.friend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.friend-card {
    display: flex;
    gap: 1rem;
    background: var(--bck-paper);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: inset 0 0 0 1px rgba(255, 105, 180, 0.1);
}

.friend-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.friend-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.friend-body h3 {
    margin: 0;
    font-size: 1.1rem;
}

.friend-body p {
    margin: 0.35rem 0 0;
    color: var(--bck-muted);
    font-size: 0.95rem;
}

@media (max-width: 640px) {
    .line-polaroids {
        justify-content: center;
    }
    
    .friend-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

