body {
    background-color: #121212;
    background-image: url('../images/carbon_fiber.png'); /* Adjust the path as needed */
    background-size: auto;
    background-repeat: repeat;
    color: #ffffff;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Reduced padding */
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.icon-container a:hover {
    text-decoration: none; /* Remove underline from links */
    color: #007bff; /* Blue color on hover */
    text-decoration: none; /* Ensure underline is not added on hover */
    transform: scale(1.1);
}

.icon-container i {
    font-size: 72px;
    margin-bottom: 5px; /* Reduced margin */
}

.icon-container h3 {
    margin: 0;
    font-size: 18px; /* Reduced font size */
}

.alt-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Reduced padding */
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.alt-icon-container a:hover {
    color: #ff0000; /* Red color on hover */
    text-decoration: none; /* Ensure underline is not added on hover */
    transform: scale(1.1);       
}

.alt-icon-container i {
    font-size: 72px;
    margin-bottom: 5px; /* Reduced margin */
}

.alt-icon-container h3 {
    margin: 0;
    font-size: 18px; /* Reduced font size */
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, 1fr); /* 2 rows */
    gap: 8px; /* Reduced gap between grid items */
    margin-bottom: 0; /* Add this to reduce space at the bottom */
}

.container {
    padding-top: 20px;
    padding-bottom: 0; /* Add this to reduce space at the bottom */
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.banner-ad {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #333;
    padding: 10px;
    color: #fff;
    width: 400px;
    margin: 0 auto;
    margin-top: 20px;
}

.audio-player-container {
    text-align: center;
    padding: 10px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.audio-player-container audio {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    border-radius: 5px;
}

#audio-metadata {
    color: #ccc;
    font-size: 14px;
}

#audio-metadata p {
    margin: 5px 0;
}
