body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #181818;
    color: #fff;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: #111;
}
.logo {
    font-weight: bold;
}
nav {
    display: flex;
    gap: 30px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}
nav a:hover {
    color: #e10600;
}
.header-actions {
    display: flex;
    gap: 20px;
}
.header-actions a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
}
.hero {
    background: url('Images/hero.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 8px #000;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}
.cta-btn {
    background: #e10600;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #b00400;
}
.section {
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e10600;
}
.featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.product {
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px #0003;
    text-align: center;
    padding: 20px;
}
.product img {
    width: 100%;
    max-width: 180px;
    margin-bottom: 15px;
}
.product .new {
    color: #e10600;
    font-weight: 700;
    font-size: 0.9rem;
}
.product .price {
    font-size: 1.1rem;
    margin: 10px 0;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.news-item {
    background: #222;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 300px;
    min-width: 300px;
}
.teams-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.team {
    background: #222;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 180px;
    min-width: 180px;
    text-align: center;
}
.entertainment {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.entertainment .socials {
    display: flex;
    gap: 15px;
}
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}
.partner-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}
footer {
    background: #111;
    color: #aaa;
    padding: 30px 40px;
    text-align: center;
}
.footer-links {
    margin-bottom: 15px;
}
.footer-links a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: #e10600;
}
@media (max-width: 700px) {
    header, .section, footer {
        padding: 20px;
    }
    .hero {
        padding: 40px 10px;
    }
}
