:root {
    --primary-color: #e50914;
    --dark-bg: #030303;
    --card-bg: #141414;
    --text-color: #ffffff;
    --secondary-text: #b3b3b3;
    --hover-color: #2a2a2a;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    transition: background 0.3s ease;
}

header.scrolled {
    background-color: var(--dark-bg);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* SEARCH BUTTON */
.search-trigger {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
}

/* SEARCH INPUT */
.search-input-main {
    width: 100%;
    padding: 20px 60px 20px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--text-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-main:focus {
    transform: scale(1.02);
}

/* HERO FIXED */
.hero {
    height: auto !important;
    padding: 40px 25px !important;
    background: linear-gradient(135deg, rgba(229,9,20,0.3) 0%, rgba(3,3,3,0.95) 100%) !important;
}

.hero-title {
    font-size: 2.4rem !important;
    line-height: 3rem !important;
}

/* SECTION */
.section {
    padding: 0 50px;
    margin-bottom: 50px;
}

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

/* SLIDER */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
}

/* CARDS NON-CLICKABLE */
.slider-item {
    min-width: 250px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-bg);
    pointer-events: none !important;
    transition: 0.3s;
}

.slider-item:hover {
    transform: scale(1.05);
}

/* SLIDER ARROWS (ALWAYS VISIBLE + NON-CLICKABLE) */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    pointer-events: none !important;
}

.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }

/* FOOTER */
footer {
    padding: 30px 50px;
    text-align: center;
    color: var(--secondary-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* MOBILE */
@media(max-width:768px){
    .section{ padding:0 20px; }
    .slider-item{ min-width:220px; }
}