body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.beat-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.beat-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.beat-card:hover {
    transform: translateY(-5px);
}

.beat-art {
    width: 150px;
    height: 150px;
    border-radius: 4px;
    object-fit: cover;
    margin-bottom: 15px;
}

.beat-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.beat-info p {
    margin: 0 0 15px 0;
    color: #b3b3b3;
    font-size: 0.9em;
}

.audio-player {
    width: 100%;
    margin-bottom: 15px;
}

.play-button {
    background-color: #1db954;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.buy-button {
    background-color: #535353;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
}

.buy-button:hover {
    background-color: #737373;
}
/* --- Checkout Page Styles --- */
.checkout-container {
    max-width: 520px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
}

#order-summary {
    margin-bottom: 20px;
}

.summary-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #282828;
    border-radius: 6px;
}

.summary-art {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 15px;
}

.summary-info {
    flex-grow: 1;
}

.summary-info h3, .summary-info p {
    margin: 0;
}

.summary-price {
    font-size: 1.2em;
    font-weight: bold;
}

#payment-form .buy-button {
    margin-top: 20px;
}

#payment-message {
    color: rgb(239, 89, 89);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    display: none;
}
.form-row {
    margin-bottom: 15px;
}
.form-row label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #b3b3b3;
}
.form-row input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #535353;
    background-color: #333;
    color: white;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Style for the new beat card links */
.beat-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}