/* ===== Base Styles ===== */
body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #efefef;
    max-width: 1000px;
            margin: 0 auto;
            padding: 50;
    background: #000000;
}

a {
    color: #e50914;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #b2070f;
}

/* ===== Layout ===== */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#header {
    background: #141414;
    padding: 15px 0;
    border-bottom: 3px solid #e50914;
}

#content {
    padding: 30px 0;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./hero-bg.jpg');
    background-size: cover;
    color: white;
    margin-bottom: 30px;
}
.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px;
}
.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ===== Feature Grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.feature {
    padding: 20px;
    border-radius: 5px;
    background: #494848;
}
.feature h3 {
    color: #e50914;
    margin-top: 0;
}

/* ===== Category Grid ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}
.category {
    background: #e50914;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s;
}
.category:hover {
    transform: translateY(-3px);
}

/* ===== Testimonials ===== */
.testimonial {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #e50914;
}
.testimonial blockquote {
    margin: 0;
    font-style: italic;
}
.author {
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
}

/* ===== Footer ===== */
#footer {
    background: #141414;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.footer-links a {
    color: white;
}
.copyright {
    text-align: center;
    opacity: 0.8;
}

/* ===== View Full Button ===== */
#view-full {
    margin: 25px 0;
    text-align: center;
}
.view-full-button {
    display: inline-block;
    padding: 12px 25px;
    background: #e50914;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.view-full-button:hover {
    background: #b2070f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}