body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    margin: 0;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.app-layout {
    display: grid;
    grid-template-areas:
        "header"
        "player"
        "social"
        "banners";
    grid-template-rows: auto auto 1fr auto;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: auto;
}

header {
    grid-area: header;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.logo {
    max-height: 80px;
    width: auto;
}

.info-container {
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#weather {
    display: flex;
    align-items: center;
    gap: 5px;
}

#weatherIcon {
    font-size: 1.5rem;
}

.player-section {
    grid-area: player;
    background-color: #2b2b2b;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#playPauseBtn {
    width: 70px;
    height: 70px;
    border: none;
    background-color: #ff7f00;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
}

#playPauseBtn:hover {
    transform: scale(1.05);
}

#playPauseIcon {
    font-size: 40px;
    color: #fff;
}

#volumeControl {
    width: 150px;
}

.social-section {
    grid-area: social;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: #ff7f00;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ff9933;
}

.banner-section {
    grid-area: banners;
    background-color: #2b2b2b;
    border-radius: 1rem;
    overflow: hidden;
    height: auto;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 150px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-image.active {
    opacity: 1;
}