* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}
header {
    background: #1DB954;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}
.tabs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #111;
    border-radius: 6px;
}
.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    background: #222;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}


img{
    height: 80px;
}

.tab:hover {
    background: #333;
}
.tab.active {
    border-bottom: 3px solid #FF6600;
    color: #1DB954;
}
.content {
    margin-top: 20px;
    background: #111;
    padding: 20px;
    border-radius: 6px;
}
.content h2 {
    margin-bottom: 15px;
    color: #FF6600;
}
.content h3 {
    color: #1DB954;
    margin: 10px 0;
}
.content ul {
    margin: 10px 0 10px 20px;
}
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    .tab {
        border-bottom: 1px solid #333;
    }
}