body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0073e6;
    color: white;
    padding: 20px;
    font-size: 1.5em;
}

.banner {
    max-width: 100%;
    height: auto;
    width: 29%;
    border-radius: 10px;
    margin-bottom: 10px;
}

main {
    margin-top: 30px;
}

.player {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #005bb5;
}
.social {
    margin-top: 20px;
}

.social a {
    text-decoration: none;
    color: #1877F2;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
}
footer {
    margin-top: 10px;
    padding: 5px;
    background: linear-gradient(to right, #0073e6, #005bb5);
    color: white;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    background: white;
    color: #0073e6;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    background: #ffcc00;
    color: #005bb5;
    transform: scale(1.08);
    box-shadow: 3px 3px 20px rgba(255, 204, 0, 0.6);
}
