* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #E9F1FA;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.9)),
    url('https://wallpapercave.com/wp/wp1945909.jpg')            
    center/cover; */
    min-height: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;

}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    color: white;
    /* position: relative; */
    z-index: 2;
    /* margin-bottom: 100px; */
}

.hero-title {
    margin-top: 30px;

    font-size: 3rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    line-height: 1.2;
}

.hero-title img{
    width: 50px;
    height: 50px;
    margin-top: 30px;

}


.hero-title2{
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* .search-bar {
    max-width: 600px;
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.search-button {
    padding: 1rem 2rem;
    background: #00248a;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
} */
.hero-cta {
    display: flex;
    justify-content: start;
    gap: 16px;
    margin-top: 2rem;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-primary {
    background: #FF6B6B;
    color: white;
}

.cta-primary:hover {
    background: #FF8E53;
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Featured Scenes Slider */
.featured-scenes {
    margin-top:10px;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: -10px;
    /* padding: 2rem; */
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    
}

.scenes-slider {
    margin-top: 10px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
    padding-bottom: 1rem;
    scrollbar-width: none;
    justify-content: start;
}

.scenes-slider::-webkit-scrollbar {
    display: none;
}

.scene-slide {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow:hidden;
    backdrop-filter: blur(10px);
}

.slide-image {
    width: 100%;
    height: 169px;
    object-fit: cover;
}

.slide-content {
    padding: 1rem;
    color: white;
}

.slide-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color:white
}

.slide-meta {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all {
    color: #00248a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Content Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.scenes-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.media-card {
    background: white;
    /* border-radius: 12px; */
    overflow: hidden;
    transition: transform 0.2s;
}

.media-card:hover {
    transform: translateY(-4px);
}

.media-poster {
    position: relative;
    aspect-ratio: 5/8;
    height: 100%;
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-type {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border-radius: 4px;
    font-size: 12px;
}

.media-info {
    display: none !important;
    /* padding: 1rem; */
}

.media-title {
    font-weight: 600;
    text-decoration: none;
    color: black !important;
}

.media-title:hover{
    text-decoration: underline;
}

.media-meta {
    /* font-size: 0.7rem; */
    display: flex;
    flex-direction: row;
    gap:6px;
}

.source-image-container{
    width: 30px;
    height:30px;
    border-radius: 15px;
    border: none;
}

.source-image-container img{
    width: inherit;
    height: inherit;
    border-radius: inherit;
    object-fit: cover;
}

.media-meta a{
    text-decoration: none;
    color: #00248a;;;
    
}

.media-meta a:hover{
    color:#00248a;
    text-decoration: underline;


}

/* Categories Section */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00248a;
}

.category-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.category-count {
    font-size: 0.9rem;
    color: #666;
}


.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.list-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.list-card:hover {
    transform: translateY(-4px);
}

.list-header {
    position: relative;
    height: 60px;
    background: linear-gradient(45deg, #00248a, #001d6e);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.list-type-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    backdrop-filter: blur(4px);
}

.list-stats {
    display: flex;
    gap: 12px;
    color: white;
    font-size: 13px;
}

.list-content {
    padding: 20px;
}

.list-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    text-decoration: none;
}

.list-title a {
    text-decoration: none;
    color: inherit;
}

.list-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #6b7280;
    font-size: 13px;
}

.list-meta a {
    color: #00248a;
    text-decoration: none;
    font-weight: 500;
}

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

.list-meta i {
    font-size: 14px;
}


@media (max-width: 768px) {

    .cta-btn {
        font-size: 14px;
    }
    .hero {
        min-height: 500px;
        display: flex;
        flex-direction: column;
    }

    .hero-content{
    margin-bottom: 30px;

    }

    

    .hero-title {
        font-size: 2rem;
    }

    .search-bar {
        flex-direction: column;
    }

    .featured-scenes {
        position: relative;
        /* margin-top: -10px; */
        display: flex;
        flex-direction: row;
        padding: 1rem;

    }

    .scene-slide {
        flex: 0 0 250px;
    }

    .scenes-slider{
    overflow-x: scroll;

    }

    .section-title{
        font-size: 18px;
    }
    .view-all {
        font-size: 14px;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}



