* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0d1117;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(to right, #0d1117, #1c1f26);
    border-bottom: 2px solid #ff0000;
    padding: 10px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 40px;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #ff0000;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.subscribe {
    background: #ff0000;
    color: #fff;
}

.follow {
    background: #1877f2;
    color: #fff;
}

/* MOBILE MENU ICON */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-menu a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #222;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}