/* Кастомные стили поверх Bootstrap */
:root {
    --kigogo-red: #e50914;
    --kigogo-dark: #0f0f0f;
    --kigogo-darker: #000000;
    --kigogo-gray: #b3b3b3;
}

body {
    background: var(--kigogo-dark);
    color: white;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Навбар */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--kigogo-red) !important;
}

.nav-link {
    color: var(--kigogo-gray) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

/* Герой-секция */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                var(--hero-image) center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0 5%;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--kigogo-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

/* Карточки фильмов */
.movie-poster {
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 48px;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Подвал */
.footer {
    background: #141414;
    color: var(--kigogo-gray);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer a {
    color: var(--kigogo-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}