* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #000;
    color: #ffeb3b;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('unnamed (5).webp') center/cover no-repeat;
    color: #ffeb3b;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    padding: 64px 0;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #ffd600;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.btn-primary {
    background: #ffd600;
    color: #000;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #ffeb3b;
}

.features {
    background: #121212;
    padding: 48px 0 40px 0;
}

.features-list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1 1 200px;
    background: #1e1e1e;
    padding: 32px 16px;
    border-radius: 10px;
    text-align: center;
    margin: 8px 0;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.2);
}

.feature-card img {
    width: 48px;
    margin-bottom: 12px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(45deg) brightness(120%) contrast(100%);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ffd600;
}

.feature-card p {
    color: #ffeb3b;
    font-size: 1rem;
}

footer {
    background: #000;
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    margin-top: 35px;
    font-size: .9rem;
}


/* ------------ RESPONSIVE DESIGN ------------- */

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .features-list {
        flex-direction: column;
        gap: 0;
    }
    .feature-card {
        margin: 16px 0;
    }
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('unnamed (5).webp') center/cover no-repeat;
    color: #ffeb3b;
    min-height: 400px;
    display: flex;
    align-items: center;
}