.type-badge{
        background: #c71786;
        color: white;
}
.like-dislike {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.like-btn,
.dislike-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #2a2f3a;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.liked {
    background: rgba(199, 23, 134, 0.9);
}

.like-btn:hover,
.dislike-btn:hover {
    background: #a90f6b;
    transform: scale(1.1);
}

.like-btn.active,
.dislike-btn.active {
    background: #c469a2;
    transform: scale(1.1);
}

.like-count,
.dislike-count {
    font-weight: bold;
}

.card-title:hover a{
    color:#c71786 !important;
}
.card-title a:hover{
    color:#c71786 !important;
}

/* Variables */
:root {
    --primary-color: #c71786;
    --secondary-color: #c71786;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-card: linear-gradient(145deg, #1e293b, #334155);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(199, 23, 134, 0.1), rgba(199, 23, 134, 0.1));
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 0.8em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* View Toggle */
.view-toggle {
    display: none;
    gap: 8px;
    background: var(--dark-bg);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.view-btn {
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Lists Grid */
.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* List Card */
.list-card {
    background: var(--gradient-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

.list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.list-card:hover::before {
    opacity: 0.05;
}

.list-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
}

.type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.type-badge.movie {
    background: rgba(199, 23, 134, 0.2);
    color: #ff80bf;
    border-color: rgba(199, 23, 134, 0.3);
}

.type-badge.series {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.type-badge.anime {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Image Section */
.image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dark-bg);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-card:hover .main-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-card:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.list-card:hover .play-button {
    transform: scale(1);
}

.items-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card Content */
.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.list-card:hover .author-avatar {
    border-color: var(--primary-color);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.real-username {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.user-id {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.publish-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Pagination */
.modern-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pagination-controls .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 4px;
    padding: 12px 16px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-controls .page-numbers:hover,
.pagination-controls .page-numbers.current {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.create-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.create-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lists-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .lists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .modern-pagination {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lists-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .image-wrapper {
        height: 180px;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--dark-bg);
        color: var(--text-primary);
    }
}

/* Performance optimizations */
.list-card {
    contain: layout style paint;
    will-change: transform;
}

.main-image {
    will-change: transform;
}

/* Focus states for accessibility */
.view-btn:focus,
.action-btn:focus,
.bookmark-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.card-link:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 20px;
}


.here-1 {
    display: flex;
    justify-content: center;
}
.container-here-1 {
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.title-here-1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ffffff;
}

.login-card-here-1 {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.lock-icon-here-1 {
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.message-here-1 {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-button-here-1 {
    background: #c71786;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.login-button-here-1:hover {
    background: #a8156b;
}
.author-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}