/* ========== VIDEO CARD BUTTONS ========== */
.video-card-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    margin-top: 0.75rem;
    background: #3b82f6;
    color: white;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    text-decoration: none;
}

.video-card-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ========== LIBRARY VIEW ALL ========== */
.library-view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.library-view-all .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ========== HOME PRICING SECTION ========== */
.home-pricing-section {
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

/* ========== FILTER DROPDOWN ========== */
.filter-dropdown {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.filter-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
    background: #3b82f6;
    color: white;
}

/* ========== AUTH PAGE CENTERING ========== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

/* ========== LOCKED DOWNLOAD BUTTON ========== */
.locked-button {
    background: #3b82f6 !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.locked-button:hover {
    background: #2563eb !important;
    transform: translateY(-1px);
}
