/**
 * AWC Production Process - Frontend Styles
 * Dark, immersive studio aesthetic
 */

:root {
    --awcpp-primary: #00d937;
    --awcpp-primary-glow: rgba(0, 255, 65, 0.3);
    --awcpp-bg-dark: #0a0a0a;
    --awcpp-bg-card: #141414;
    --awcpp-bg-elevated: #1a1a1a;
    --awcpp-border: #2a2a2a;
    --awcpp-text: #ffffff;
    --awcpp-text-muted: #888888;
    --awcpp-accent: #ff6b00;
    --awcpp-danger: #ff4444;
}

/* Process Container */
.awcpp-process {
    max-width: var(--aw-content-width, 1300px);
    margin-left: auto;
    margin-right: auto;
    background: var(--awcpp-bg-dark);
    color: var(--awcpp-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header */
.awcpp-process__header {
    position: relative;
    height: 300px;
    max-height: 300px;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.awcpp-process__cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.awcpp-process__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awcpp-process__cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 40%, transparent 70%);
}

.awcpp-process__header-content {
    position: relative;
    z-index: 1;
    padding: 30px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awcpp-process__meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.awcpp-process__status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.awcpp-process__status--in_progress {
    background: var(--awcpp-primary);
    color: var(--awcpp-bg-dark);
}

.awcpp-process__status--completed {
    background: var(--awcpp-accent);
    color: var(--awcpp-bg-dark);
}

.awcpp-process__status--on_hold {
    background: var(--awcpp-text-muted);
    color: var(--awcpp-bg-dark);
}

.awcpp-process__type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    background: var(--awcpp-bg-elevated);
    border: 1px solid var(--awcpp-border);
}

.awcpp-process__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.awcpp-process__song-title {
    font-size: 1.2rem;
    color: var(--awcpp-primary);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.awcpp-process__song-title .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.awcpp-process__description {
    max-width: 600px;
    color: var(--awcpp-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.awcpp-process__author {
    display: none;
}

.awcpp-process__author-avatar {
    border-radius: 50%;
    border: 2px solid var(--awcpp-primary);
}

.awcpp-process__author-name {
    font-weight: 500;
}

.awcpp-process__stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.awcpp-process__stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--awcpp-text-muted);
    font-size: 14px;
}

.awcpp-process__stat .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Follow Button */
.awcpp-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--awcpp-primary);
    color: var(--awcpp-primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awcpp-follow-btn:hover {
    background: var(--awcpp-primary);
    color: var(--awcpp-bg-dark);
    box-shadow: 0 0 20px var(--awcpp-primary-glow);
}

.awcpp-follow-btn--following {
    background: var(--awcpp-primary);
    color: var(--awcpp-bg-dark);
}

.awcpp-follow-btn--following:hover {
    background: transparent;
    color: var(--awcpp-danger);
    border-color: var(--awcpp-danger);
}

.awcpp-follow-btn--following:hover .awcpp-follow-btn__text::after {
    content: ' (Unfollow)';
}

/* Progress Bar - Positioned below milestones */
.awcpp-process__progress {
    padding: 15px 40px 30px;
    background: var(--awcpp-bg-dark);
    border-radius: 0 0 12px 12px;
    order: 1;
}

.awcpp-process__progress-bar {
    height: 3px;
    background: var(--awcpp-border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.awcpp-process__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--awcpp-primary), var(--awcpp-accent));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.awcpp-process__progress-dots {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.awcpp-process__progress-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: var(--awcpp-bg-elevated);
    border: 2px solid var(--awcpp-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.awcpp-process__progress-dot:hover {
    border-color: var(--awcpp-primary);
    transform: scale(1.3);
}

.awcpp-process__progress-dot.active {
    border-color: var(--awcpp-primary);
    background: var(--awcpp-primary);
}

.awcpp-dot-inner {
    display: none;
}

/* Milestones Container */
.awcpp-process__milestones-wrapper {
    display: flex;
    align-items: stretch;
    overflow: visible;
    padding-bottom: 10px;
}

/* Nav Arrows - Glowing Oval Style */
.awcpp-nav-arrow {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 200px;
    align-self: center;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--awcpp-primary);
    background: radial-gradient(ellipse at center, rgba(0, 217, 55, 0.15) 0%, rgba(0, 217, 55, 0.05) 50%, transparent 70%);
    margin: 0 10px;
    transition: transform 0.1s ease;
}

.awcpp-nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 22px;
    background: radial-gradient(ellipse at center, rgba(0, 217, 55, 0.4) 0%, rgba(0, 217, 55, 0.15) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.awcpp-nav-arrow:hover::before {
    opacity: 1;
}

.awcpp-nav-arrow:active {
    transform: scale(0.95);
}

.awcpp-nav-arrow:active::before {
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 217, 55, 0.6) 0%, rgba(0, 217, 55, 0.25) 50%, transparent 70%);
}

.awcpp-nav-arrow--prev {
    margin-left: 0;
}

.awcpp-nav-arrow--next {
    margin-right: 0;
}

.awcpp-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.awcpp-nav-arrow:disabled::before {
    display: none;
}

.awcpp-nav-arrow .dashicons {
    position: relative;
    z-index: 1;
    font-size: 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 4px var(--awcpp-primary-glow));
    transition: filter 0.3s ease;
}

.awcpp-nav-arrow:hover .dashicons {
    filter: drop-shadow(0 0 8px var(--awcpp-primary)) drop-shadow(0 0 15px var(--awcpp-primary-glow));
}

.awcpp-nav-arrow:disabled .dashicons {
    filter: none;
}

.awcpp-process__milestones {
    flex: 1;
    min-width: 0;
    width: 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 40px 20px 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.awcpp-process__milestones::after {
    content: '';
    flex-shrink: 0;
    width: calc(100% - 400px);
    min-width: 100px;
}

.awcpp-process__milestones::-webkit-scrollbar {
    display: none;
}

/* Bookend - Styled like milestone card */
.awcpp-process__bookend {
    flex: 0 0 320px;
    min-width: 260px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 30px;
    background: var(--awcpp-bg-card);
    border: 1px dashed var(--awcpp-border);
    border-radius: 12px;
    scroll-snap-align: start;
    text-align: center;
}

.awcpp-process__bookend-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--awcpp-bg-elevated);
    border: 2px solid var(--awcpp-border);
    border-radius: 50%;
    color: var(--awcpp-text-muted);
}

.awcpp-process__bookend-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.awcpp-process__bookend-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--awcpp-text-muted);
}

/* Complete Bookend - Celebratory style */
.awcpp-process__bookend--complete {
    border: 1px solid var(--awcpp-primary);
    background: linear-gradient(135deg, var(--awcpp-bg-card) 0%, rgba(0, 217, 55, 0.05) 100%);
}

.awcpp-process__bookend--complete .awcpp-process__bookend-icon {
    border-color: var(--awcpp-primary);
    color: var(--awcpp-primary);
    box-shadow: 0 0 20px var(--awcpp-primary-glow);
}

.awcpp-process__bookend--complete .awcpp-process__bookend-text {
    color: var(--awcpp-primary);
    font-weight: 600;
}

.awcpp-process__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--awcpp-text-muted);
    width: 100%;
}

.awcpp-process__empty .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Milestone - Card Style */
.awcpp-milestone {
    flex: 0 0 320px;
    min-width: 260px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin-right: 23px;
    background: var(--awcpp-bg-card);
    border: 1px solid var(--awcpp-border);
    border-radius: 12px;
    scroll-snap-align: start;
    transition: border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.awcpp-milestone:last-child {
    border-bottom: 1px solid var(--awcpp-border);
}

/* Milestone Header - Number + Title/Date inline */
.awcpp-milestone__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Milestone Marker */
.awcpp-milestone__marker {
    flex-shrink: 0;
}

.awcpp-milestone__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--awcpp-bg-elevated);
    border: 2px solid var(--awcpp-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    color: var(--awcpp-primary);
    box-shadow: 0 0 12px var(--awcpp-primary-glow);
}

/* Title/Date group next to number */
.awcpp-milestone__title-group {
    flex: 1;
    min-width: 0;
}

/* Date and Title in title-group */
.awcpp-milestone__date {
    display: block;
    font-size: 10px;
    color: var(--awcpp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.awcpp-milestone__title {
    font-size: 1.13rem;
    font-weight: 600;
    margin: 0;
    color: var(--awcpp-text);
    line-height: 1;
}

/* Milestone Content */
.awcpp-milestone__content {
    flex: 1;
    min-width: 0;
}

.awcpp-milestone__description {
    color: var(--awcpp-text-muted);
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.awcpp-milestone__description p {
    margin: 0 0 10px;
}

/* Milestone Media */
.awcpp-milestone__media {
    margin-bottom: 20px;
}

.awcpp-milestone__image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 16 / 9;
}

.awcpp-milestone__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Audio Player */
.awcpp-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--awcpp-bg-elevated);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid var(--awcpp-border);
}

.awcpp-audio-player__play {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--awcpp-primary);
    border: none;
    border-radius: 50%;
    color: var(--awcpp-bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.awcpp-audio-player__play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--awcpp-primary-glow);
}

.awcpp-audio-player__play .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.awcpp-audio-player__waveform {
    flex: 1;
    height: 30px;
    background: var(--awcpp-border);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.awcpp-audio-player__progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--awcpp-primary), var(--awcpp-accent));
    transition: width 0.1s linear;
}

.awcpp-audio-player__time {
    font-size: 14px;
    color: var(--awcpp-text-muted);
    font-family: monospace;
    min-width: 45px;
}

.awcpp-audio-player audio {
    display: none;
}

/* Video */
.awcpp-milestone__video {
    margin-bottom: 15px;
}

.awcpp-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.awcpp-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Native video - letterbox vertical videos */
.awcpp-video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Legacy standalone video - now handled by .awcpp-video-wrap video */

/* Interactive Section */
.awcpp-milestone__interactive {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--awcpp-border);
}

/* Poll */
.awcpp-poll {
    background: var(--awcpp-bg-elevated);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.awcpp-poll__question {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px;
    color: var(--awcpp-text);
}

.awcpp-poll__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.awcpp-poll__option {
    position: relative;
    background: var(--awcpp-bg-card);
    border: 1px solid var(--awcpp-border);
    border-radius: 6px;
    padding: 12px 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    color: var(--awcpp-text);
}

.awcpp-poll__option:not(:disabled):hover {
    border-color: var(--awcpp-primary);
}

.awcpp-poll__option--selected {
    border-color: var(--awcpp-primary);
    background: rgba(0, 255, 65, 0.1);
}

.awcpp-poll__option-text {
    position: relative;
    z-index: 1;
}

.awcpp-poll__option-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--awcpp-primary-glow), transparent);
    transition: width 0.5s ease;
}

.awcpp-poll__option-percent {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--awcpp-primary);
    z-index: 1;
}

.awcpp-poll__total {
    margin: 15px 0 0;
    font-size: 13px;
    color: var(--awcpp-text-muted);
}

.awcpp-poll__login {
    margin: 10px 0 0;
    font-size: 13px;
}

.awcpp-poll__login a {
    color: var(--awcpp-primary);
}

/* Poll Toggle - Collapsible Summary */
.awcpp-poll__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    background: var(--awcpp-bg-card);
    border: 1px solid var(--awcpp-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--awcpp-text);
    text-align: left;
    font-family: inherit;
    font-size: 14px;
}

.awcpp-poll__toggle:hover {
    border-color: var(--awcpp-primary);
    background: var(--awcpp-bg-elevated);
}

.awcpp-poll__toggle-icon {
    color: var(--awcpp-primary);
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.awcpp-poll__toggle-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

.awcpp-poll__toggle-text strong {
    color: var(--awcpp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.awcpp-poll__toggle-stats {
    color: var(--awcpp-text-muted);
    font-size: 12px;
    white-space: nowrap;
}

.awcpp-poll__toggle-arrow {
    color: var(--awcpp-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.awcpp-poll__toggle.open .awcpp-poll__toggle-arrow {
    transform: rotate(180deg);
}

/* Poll Content - Expandable Area */
.awcpp-poll__content {
    margin-top: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--awcpp-border);
}

/* Comments */
.awcpp-milestone__comments-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--awcpp-text-muted);
    cursor: pointer;
    padding: 10px 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.awcpp-milestone__comments-toggle:hover {
    color: var(--awcpp-primary);
}

.awcpp-comments {
    margin-top: 15px;
}

.awcpp-comments__list {
    max-height: 400px;
    overflow-y: auto;
}

.awcpp-comment {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--awcpp-border);
}

.awcpp-comment:last-child {
    border-bottom: none;
}

.awcpp-comment__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.awcpp-comment__content {
    flex: 1;
    min-width: 0;
}

.awcpp-comment__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.awcpp-comment__author {
    font-weight: 600;
    color: var(--awcpp-text);
}

.awcpp-comment__time {
    font-size: 12px;
    color: var(--awcpp-text-muted);
}

.awcpp-comment__text {
    color: var(--awcpp-text-muted);
    line-height: 1.5;
}

/* Comment Form */
.awcpp-comments__form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.awcpp-comments__form textarea {
    flex: 1;
    background: var(--awcpp-bg-card);
    border: 1px solid var(--awcpp-border);
    border-radius: 6px;
    padding: 10px 15px;
    color: var(--awcpp-text);
    resize: none;
    font-family: inherit;
    min-height: 50px;
}

.awcpp-comments__form textarea:focus {
    outline: none;
    border-color: var(--awcpp-primary);
}

.awcpp-comments__form textarea::placeholder {
    color: var(--awcpp-text-muted);
}

.awcpp-comments__login {
    font-size: 13px;
    color: var(--awcpp-text-muted);
}

.awcpp-comments__login a {
    color: var(--awcpp-primary);
}

/* Button */
.awcpp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--awcpp-primary);
    color: var(--awcpp-bg-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awcpp-btn:hover {
    box-shadow: 0 0 20px var(--awcpp-primary-glow);
}

.awcpp-btn--small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Navigation (Slideshow Mode) */
.awcpp-process__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    border-top: 1px solid var(--awcpp-border);
}

.awcpp-process__nav-btn {
    width: 50px;
    height: 50px;
    background: var(--awcpp-bg-elevated);
    border: 2px solid var(--awcpp-border);
    border-radius: 50%;
    color: var(--awcpp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.awcpp-process__nav-btn:hover:not(:disabled) {
    border-color: var(--awcpp-primary);
    color: var(--awcpp-primary);
}

.awcpp-process__nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.awcpp-process__nav-counter {
    font-size: 14px;
    color: var(--awcpp-text-muted);
}

.awcpp-process__nav-counter .awcpp-current {
    color: var(--awcpp-primary);
    font-weight: 600;
}

/* Process Card (List) */
.awcpp-process-list {
    max-width: var(--aw-content-width, 1300px);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 20px;
}

.awcpp-process-list--cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.awcpp-process-list--cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.awcpp-process-list--cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.awcpp-process-card {
    display: block;
    background: var(--awcpp-bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid var(--awcpp-border);
}

.awcpp-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--awcpp-primary);
}

.awcpp-process-card__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.awcpp-process-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awcpp-process-card__status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.awcpp-process-card__status--in_progress {
    background: var(--awcpp-primary);
    color: var(--awcpp-bg-dark);
}

.awcpp-process-card__content {
    padding: 20px;
}

.awcpp-process-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--awcpp-text);
}

.awcpp-process-card__song {
    font-size: 14px;
    color: var(--awcpp-primary);
    margin: 0 0 15px;
}

.awcpp-process-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--awcpp-text-muted);
}

.awcpp-process-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.awcpp-process-card__author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Animation classes removed - milestones always visible for peek effect */

/* Error */
.awcpp-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--awcpp-danger);
    color: var(--awcpp-danger);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Loading */
.awcpp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--awcpp-text-muted);
}

.awcpp-loading::after {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--awcpp-border);
    border-top-color: var(--awcpp-primary);
    border-radius: 50%;
    animation: awcpp-spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes awcpp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Slideshow Mode */
.awcpp-process--slideshow .awcpp-milestone {
    display: none;
}

.awcpp-process--slideshow .awcpp-milestone.active {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .awcpp-process__header-content {
        padding: 25px;
    }

    .awcpp-process__title {
        font-size: 1.8rem;
    }

    .awcpp-process__progress {
        padding: 15px 20px 25px;
    }

    .awcpp-process__milestones {
        padding: 20px 15px 50px;
        padding-right: calc(100vw - 280px);
    }

    .awcpp-milestone {
        flex: 0 0 240px;
        min-width: 224px;
        padding: 16px;
        margin-right: 18px;
    }

    .awcpp-milestone__marker {
        gap: 12px;
    }

    .awcpp-process__bookend {
        flex: 0 0 224px;
        min-width: 208px;
        padding: 24px 16px;
    }

    .awcpp-process-list--cols-2,
    .awcpp-process-list--cols-3,
    .awcpp-process-list--cols-4 {
        grid-template-columns: 1fr;
    }

    .awcpp-poll__options {
        gap: 8px;
    }

    /* Hide nav arrows on mobile - touch scroll instead */
    .awcpp-nav-arrow {
        display: none;
    }
}
