/* Common styles for pages */
.page-header {
    background: linear-gradient(135deg, #ff0066 0%, #ff69b4 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.content-card {
    background: white;
    border-radius: 1.5rem;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255,0,102,0.1);
}

.search-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.badge-pink {
    background: #ff0066;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.btn-pink {
    background: linear-gradient(45deg, #ff0066, #ff69b4);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,102,0.2);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding-top: calc(76px + 2rem);
        padding-bottom: 2rem;
    }
    
    .content-card {
        margin-bottom: 1rem;
    }
}
