* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #121212;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1DB954;
}

.menu-btn {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
  }

  .nav-menu a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
  }

  .nav-menu.active {
    right: 0;
  }
}


nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #1DB954;
}

/* ===== MOBILE MENU ===== */
.menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== PAGE TITLE ===== */
.page-title {
    text-align: center;
    padding: 70px 20px;
}

.page-title h1 {
    font-size: 42px;
}

.page-title p {
    color: #aaa;
    margin-top: 10px;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px 80px;
}

/* ===== CARD ===== */
.card {
    background: #181818;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

.card img {
    width: 80px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.card span {
    font-size: 14px;
    color: #aaa;
}

.card:hover {
    transform: translateY(-8px);
    background: #1e1e1e;
    box-shadow: 0 0 20px rgba(29,185,84,0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    color: #777;
    margin-top: 60px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .grid {
        padding: 20px;
    }
}
