body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
}

.card-title {
    padding: 10px;
    font-size: 18px;
}

.bottom-text { 
    text-align: center; 
    margin-top: 20px; /* Adjust as needed for spacing */
}

/* Updated styles for the Beat Machine launch button */
.launch-button {
    display: inline-block; /* Changed to inline-block for more 'capsule' like behavior with text */
    width: auto; /* Allow width to be determined by content */
    padding: 15px 30px; /* Generous padding for the capsule shape */
    border-radius: 30px; /* High border-radius for capsule shape */
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Remove underline */
    color: white; /* Text color */
    
    background: linear-gradient(45deg, #FF5733, #FF8D6D); /* Stronger reddish gradient */
    box-shadow: 0 6px 15px rgba(255, 87, 51, 0.4); /* Enhanced shadow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border for definition */
    
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.launch-button:hover {
    transform: translateY(-3px) scale(1.02); /* Lift and slightly enlarge */
    box-shadow: 0 10px 25px rgba(255, 87, 51, 0.6); /* More pronounced shadow on hover */
    background: linear-gradient(45deg, #E64A19, #FF7B5A); /* Slightly darker gradient on hover */
}

#siteFooter {
    width:100%;
    text-align:center;
    padding:25px 0;
    font-family:sans-serif;
    font-size:1.1em;
    color:#333;
    margin-top:40px;
    border-top:2px solid #ff0044;
}

#siteFooter a {
    color:#ff8800;
    text-decoration:none;
    font-weight:bold;
}

#siteFooter a:hover {
    color:#ff0044;
}