body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #000;
    color: white;
}
header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    height: 60px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav a.active,
nav a:hover {
    color: #FFD700;
}
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.section-title {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 10px;
}
.search-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.search-bar input {
    padding: 10px;
    border-radius: 20px;
    border: none;
    width: 60%;
}
.card-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
}
.card-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.card-info img {
    width: 60px;
    border-radius: 8px;
}
.card-info div {
    display: flex;
    flex-direction: column;
}
.details {
    display: flex;
    align-items: center;
    gap: 30px;
}
.details div {
    text-align: center;
}
.btn {
    background-color: #FFD700;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
}