@charset "utf-8";
/* CSS Document */
.sync-main {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.sync-hero {
    text-align: center;
    margin-bottom: 50px;
}

.sync-hero h1 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 10px;
}

.sync-hero p {
    font-size: 18px;
    color: #ccc;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.track-card {
    background: #111;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
}

.track-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.track-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.track-card p {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 15px;
}

.track-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.track-buttons a {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    background: #d4af37;
    font-weight: bold;
}

