.play-container {
    padding: 20px 0;
}

.play-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.play-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.play-breadcrumb a:hover {
    color: #ff4d4d;
}

.breadcrumb-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.breadcrumb-current {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.player-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 400px;
}

.player-container video {
    width: 100%;
    height: 100%;
    display: block;
}

.play-info {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.play-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.play-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.meta-item a {
    color: #ff4d4d;
    text-decoration: none;
}

.meta-item a:hover {
    text-decoration: underline;
}

.meta-divider {
    color: rgba(255, 255, 255, 0.3);
}

.share-section {
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.share-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.share-input-wrap {
    display: flex;
    gap: 10px;
}

.share-input-wrap input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: all 0.2s ease;
}

.share-input-wrap input:focus {
    border-color: #e50914;
}

.copy-btn {
    padding: 10px 20px;
    background: rgba(229, 9, 20, 0.9);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #ff4d4d;
}

.not-found {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.not-found-icon {
    font-size: 72px;
    opacity: 0.5;
}

.not-found h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.not-found p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: linear-gradient(135deg, #e50914 0%, #ff4d4d 100%);
    color: #ffffff;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

@media (max-width: 768px) {
    .play-container {
        padding: 14px 0;
    }

    .player-container {
        aspect-ratio: 16 / 9;
        min-height: 280px;
    }

    .play-title {
        font-size: 20px;
    }

    .share-section {
        padding: 14px;
    }

    .share-input-wrap {
        flex-direction: column;
    }

    .copy-btn {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .play-title {
        font-size: 18px;
    }

    .player-container {
        min-height: 220px;
    }

    .play-meta {
        gap: 8px;
    }

    .meta-item {
        font-size: 12px;
    }
}
