/* Main Page Specific Styles */

/* Hero Section */
.main-hero {
    height: 80vh;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.95) 100%
        ),
        linear-gradient(to top, #141414 0%, transparent 20%),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop")
            center/cover;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: relative;
}

.main-hero-content {
    max-width: 800px;
    z-index: 10;
}

.main-hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0033 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff0033;
}

.hero-stat-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
}

/* Category Pills - Main Page */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 60px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
}

/* Search Box - Hero Section Only */
section .search-container {
    padding: 20px 60px;
    background: rgba(20, 20, 20, 0.8);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #e50914;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

/* Main Hero Light Mode Styles */
body.light-mode .main-hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.8) 100%);
}

body.light-mode .main-hero-title,
body.light-mode .main-hero-subtitle {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-hero {
        padding: 0 30px;
        height: 70vh;
    }

    .main-hero-title {
        font-size: 48px;
    }

    .main-hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .category-pills {
        padding: 15px 30px;
    }

    section .search-container {
        padding: 15px 30px;
    }
}