.m-channel-wall {
    padding: 40px 32px 60px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.m-channel-wall__label {
    font-size: 11px;
    font-family: ui-monospace, monospace;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.m-channel-wall__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin: 0 0 8px;
}
.m-channel-wall__meta {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 28px;
}
.m-channel-wall__controls {
    margin-bottom: 32px;
}
.m-channel-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(118, 62, 229, 0.06);
    border: 1px solid rgba(123, 62, 229, 0.3);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    margin-bottom: 14px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(143, 62, 229, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(229, 62, 62, 0); }
}
.m-channel-live__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #763ee5;
    flex-shrink: 0;
    animation: live-pulse 1.5s ease-in-out infinite;
}
.m-channel-live__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #7b3ee5;
    font-family: ui-monospace, monospace;
}
.m-channel-live__title {
    color: var(--text);
    font-size: 13px;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.m-channel-live__game {
    color: var(--text-muted);
    font-size: 12px;
}
.m-channel-live__viewers {
    color: var(--text-muted);
    font-size: 12px;
    font-family: ui-monospace, monospace;
}
.m-channel-live__link {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 2px;
    white-space: nowrap;
}
.m-channel-live__link:hover { text-decoration: underline; }
.polaroid-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
}
.polaroid-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 12px 16px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text);
}
.polaroid-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-accent);
}
.polaroid-card:nth-child(3n+1):hover { transform: translateY(-4px) rotate(-1.5deg); }
.polaroid-card:nth-child(3n+2):hover { transform: translateY(-4px) rotate(1deg); }
.polaroid-card:nth-child(3n):hover   { transform: translateY(-4px) rotate(-0.5deg); }
.polaroid-photo {
    background: var(--bg);
    border-radius: var(--radius-sm);
    height: 110px;
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 2px;
}
.polaroid-photo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    image-rendering: pixelated;
}
.polaroid-photo-empty {
    font-size: 28px;
    color: var(--text-muted);
}
.polaroid-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.polaroid-stats {
    font-size: 11px;
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
}
.polaroid-shiny {
    font-size: 11px;
    color: var(--color-rarity-mythical);
}
.polaroid-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2px 0;
}
.polaroid-catch-label {
    font-size: 10px;
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.polaroid-latest {
    font-size: 11px;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
