/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenir Next Cyr', sans-serif; /* Use the Avenir font from your fonts folder */
}

/* Ensure html and body are transparent to allow background video to show */
html, body {
    background-color: transparent; /* Explicitly set to transparent */
    color: #ffffff; /* Light text color */
    font-size: 16px;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
}

header nav ul li a:hover {
    color: #ffffff; /* Changed from #cccccc (light gray) to white */
}

/* Button Styles */
button {
    background-color: #f0f0f0; /* Changed from #cccccc (light gray) to very light gray */
    color: #1e1e1e; /* Dark text for contrast */
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #cccccc; /* Changed from #999999 (medium gray) to light gray */
}

/* Footer Styles */
footer {
    background-color: #1c1c1c;
    color: #eee;
    text-align: center;
    padding: 25px 0;
    margin-top: auto;
    border-top: 1px solid #2a2a2a;
}

footer .footer-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .copyright {
    font-size: 0.9em;
    margin-bottom: 10px;
}

footer .social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* Media Player Styles */
.media-player {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #2c3e50; /* Keep dark blue for media player background, or change to a dark gray */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 800px;
}

.media-player button {
    background-color: #f0f0f0; /* Changed from #cccccc (light gray) to very light gray */
    color: #1e1e1e; /* Dark text for contrast */
    border: none;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.media-player button:hover {
    background-color: #cccccc; /* Changed from #999999 (medium gray) to light gray */
}

.media-player .track-info {
    color: #ffffff;
    font-size: 1rem;
    flex-grow: 1;
    padding-left: 15px;
}

/* Sticky navigation bar */
nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Top Up button styles */
.topup-button {
    background-color: #2a2a2a; /* A dark grey */
    color: #cccccc; /* Light gray text */
    border: 1px solid #cccccc; /* Light gray border */
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8em;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.topup-button:hover {
    background-color: #cccccc; /* Light gray background on hover */
    color: #1e1e1e; /* Dark text on hover */
    border-color: #cccccc; /* Keep the border light gray */
}
