* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    overflow: hidden;
}


/* Space background */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/fondo_pagina.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}


/* LARGER and centered astronaut */

.astronaut {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    /* Maintained larger */
    height: auto;
    transform: translate(-50%, -50%);
    /* Adjusted to move it further down */
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    /* Adjustment to not interfere with text */
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -55%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}


/* Orbiting satellite */

.satellite {
    position: absolute;
    top: 15%;
    left: 0;
    width: 200px;
    height: auto;
    z-index: -1;
    animation: orbit 25s linear infinite, rotate 6s ease-in-out infinite alternate;
    opacity: 1;
}


/* Orbit with more pronounced and natural curves */

@keyframes orbit {
    0.0% {
        transform: translateX(-200.0px) translateY(0.0px);
    }
    5.0% {
        transform: translateX(-84.0px) translateY(181.6px);
    }
    10.0% {
        transform: translateX(32.0px) translateY(323.6px);
    }
    15.0% {
        transform: translateX(148.0px) translateY(395.1px);
    }
    20.0% {
        transform: translateX(264.0px) translateY(380.4px);
    }
    25.0% {
        transform: translateX(380.0px) translateY(282.8px);
    }
    30.0% {
        transform: translateX(496.0px) translateY(123.6px);
    }
    35.0% {
        transform: translateX(612.0px) translateY(-62.6px);
    }
    40.0% {
        transform: translateX(728.0px) translateY(-235.1px);
    }
    45.0% {
        transform: translateX(844.0px) translateY(-356.4px);
    }
    50.0% {
        transform: translateX(960.0px) translateY(-400.0px);
    }
    55.0% {
        transform: translateX(1076.0px) translateY(-356.4px);
    }
    60.0% {
        transform: translateX(1192.0px) translateY(-235.1px);
    }
    65.0% {
        transform: translateX(1308.0px) translateY(-62.6px);
    }
    70.0% {
        transform: translateX(1424.0px) translateY(123.6px);
    }
    75.0% {
        transform: translateX(1540.0px) translateY(282.8px);
    }
    80.0% {
        transform: translateX(1656.0px) translateY(380.4px);
    }
    85.0% {
        transform: translateX(1772.0px) translateY(395.1px);
    }
    90.0% {
        transform: translateX(1888.0px) translateY(323.6px);
    }
    95.0% {
        transform: translateX(2004.0px) translateY(181.6px);
    }
    100.0% {
        transform: translateX(2120.0px) translateY(0.0px);
    }
}


/* Light rotation */

@keyframes rotate {
    0% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}


/* Falling meteors */

.meteor {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: -2;
    opacity: 0.8;
}


/* Corrected trajectories - starting from the RIGHT */

@keyframes meteorOrbit1 {
    0% {
        transform: translateX(150px) translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1800px) translateY(1000px);
        opacity: 0;
    }
}

@keyframes meteorOrbit2 {
    0% {
        transform: translateX(100px) translateY(-150px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1600px) translateY(800px);
        opacity: 0;
    }
}

@keyframes meteorOrbit3 {
    0% {
        transform: translateX(200px) translateY(-80px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1700px) translateY(1200px);
        opacity: 0;
    }
}

@keyframes meteorOrbit4 {
    0% {
        transform: translateX(50px) translateY(-120px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1900px) translateY(900px);
        opacity: 0;
    }
}


/* Corrected positions - starting from the RIGHT */

.meteor:nth-child(1) {
    animation: meteorOrbit1 25s linear infinite;
    top: 5%;
    right: 2%;
    /* Changed from left to right */
    animation-delay: 0s;
}

.meteor:nth-child(2) {
    animation: meteorOrbit2 28s linear infinite;
    top: 8%;
    right: 20%;
    /* Changed from left to right */
    animation-delay: 7s;
}

.meteor:nth-child(3) {
    animation: meteorOrbit3 30s linear infinite;
    top: 3%;
    right: 40%;
    /* Changed from left to right */
    animation-delay: 12s;
}

.meteor:nth-child(4) {
    animation: meteorOrbit4 26s linear infinite;
    top: 10%;
    right: 60%;
    /* Changed from left to right */
    animation-delay: 18s;
}


/* Improved distribution - more separated initial positions */

.meteor:nth-child(1) {
    animation: meteorOrbit1 25s linear infinite;
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.meteor:nth-child(2) {
    animation: meteorOrbit2 28s linear infinite;
    top: 8%;
    left: 20%;
    animation-delay: 7s;
}

.meteor:nth-child(3) {
    animation: meteorOrbit3 30s linear infinite;
    top: 3%;
    left: 40%;
    animation-delay: 12s;
}

.meteor:nth-child(4) {
    animation: meteorOrbit4 26s linear infinite;
    top: 10%;
    left: 60%;
    animation-delay: 18s;
}


/* Navigation menu */

.navbar {
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4fc3f7;
}


/* Main content - Layout like distribution */

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}


/* Top text - HIGHER UP */

.header {
    margin-top: -80px;
    /* Adjusted to -80px to lower a bit */
    position: relative;
    z-index: 2;
    /* Ensures text is over the astronaut */
}

.title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    /* Added spacing */
}


/* Bottom text and button - LOWER DOWN */

.main-content {
    margin-bottom: 50px;
    /* Maintained without changes */
    position: relative;
    z-index: 2;
    /* Ensures text and button are over the astronaut */
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: white;
    /* Maintained white as in the image */
    color: black;
    /* Text in black */
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    /* For positioning the little stars */
}

.cta-button::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    /* Adjust according to your image size */
    height: 20px;
    /* Adjust according to your image size */
    background: url("images/estrellita.png") no-repeat center;
    background-size: contain;
}

.cta-button::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    /* Adjust according to your image size */
    height: 20px;
    /* Adjust according to your image size */
    background: url("images/estrellita.png") no-repeat center;
    background-size: contain;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Maintained for black shadow */
}


/* Styles for the team - IMPROVED ANIMATION */

.team-members {
    position: absolute;
    top: 57%;
    /* adjusted to center better between texts */
    left: 62%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid #4fc3f7;
    border-radius: 20px;
    padding: 40px 50px;
    width: 600px;
    /* wider */
    height: 330px;
    /* taller */
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 3;
    box-shadow: 0 0 60px rgba(79, 195, 247, 0.5);
    overflow-y: auto;
}

.team-members.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.team-members h3 {
    color: #4fc3f7;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.7);
}

.team-member {
    padding: 12px 0;
    border-bottom: 1px solid rgba(79, 195, 247, 0.3);
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.team-member:last-child {
    border-bottom: none;
}

.team-role {
    color: #4fc3f7;
    font-weight: bold;
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-member em {
    color: #ddd;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: 2px;
}


/* Class to move the astronaut when team is active */

.astronaut.moved {
    left: 25%;
    /* More to the left to give space */
    transform: translate(-50%, -50%);
}


/* Overlay to close when clicking outside */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* HOME link in the team box */

.team-home-link {
    display: block;
    text-align: center;
    margin-top: 25px;
    padding: 12px;
    background: rgba(79, 195, 247, 0.25);
    border-radius: 10px;
    color: #4fc3f7;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.5);
}

.team-home-link:hover {
    background: rgba(79, 195, 247, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}


/* Custom scroll for the team box */

.team-members::-webkit-scrollbar {
    width: 6px;
}

.team-members::-webkit-scrollbar-track {
    background: rgba(79, 195, 247, 0.1);
    border-radius: 3px;
}

.team-members::-webkit-scrollbar-thumb {
    background: #4fc3f7;
    border-radius: 3px;
}

.team-members::-webkit-scrollbar-thumb:hover {
    background: #29b6f6;
}


/* Dropdown menu for ARTICLES */

.nav-item {
    position: relative;
    display: inline-block;
}

.articles-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #4fc3f7;
    border-radius: 15px;
    padding: 15px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform-origin: top center;
}

.articles-dropdown.active {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
    visibility: visible;
}

.article-link {
    display: block;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
}

.article-link:last-child {
    border-bottom: none;
}

.article-link:hover {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    padding-left: 30px;
}


/* Emojis temáticos para cada artículo */

.article-link[href*="plants"]::before {
    content: "🌱";
    /* Planta para Plants in Space */
    margin-right: 10px;
    font-size: 0.9rem;
}

.article-link[href*="cupola"]::before {
    content: "🔭";
    /* Telescopio para The Space Cupola */
    margin-right: 10px;
    font-size: 0.9rem;
}

.article-link[href*="weightlessness"]::before {
    content: "🪐";
    /* Planeta para Weightlessness */
    margin-right: 10px;
    font-size: 0.9rem;
}

.article-link[href*="benefits"]::before {
    content: "⭐";
    /* Estrella para ISS Benefits */
    margin-right: 10px;
    font-size: 0.9rem;
}

.article-link:last-child {
    border-bottom: none;
}

.article-link:hover {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    padding-left: 30px;
}

.article-link::before {
    content: "📄";
    margin-right: 10px;
    font-size: 0.9rem;
}


/* Dropdown indicator */

.nav-link.has-dropdown::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    overflow: hidden;
}


/* Space background */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/fondo_pagina.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}


/* Floating astronaut */

.astronaut {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: auto;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -55%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}


/* Orbiting satellite */

.satellite {
    position: absolute;
    top: 15%;
    left: -250px;
    width: 200px;
    height: auto;
    z-index: -1;
    opacity: 1;
    animation: orbit 22s cubic-bezier(0.6, 0, 0.4, 1) infinite, rotate 6s ease-in-out infinite alternate;
}


/* More natural movement, curved but without circular loops */

@keyframes orbit {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(400px, 50px);
    }
    50% {
        transform: translate(800px, -100px);
    }
    75% {
        transform: translate(1200px, 60px);
    }
    100% {
        transform: translate(1600px, 0px);
    }
}


/* Subtle rotation (without flipping) */

@keyframes rotate {
    0% {
        rotate: -5deg;
    }
    100% {
        rotate: 5deg;
    }
}


/* === Animated meteors === */

.meteor {
    position: absolute;
    width: 90px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    /* Behind the satellite but over the background */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}


/* Ensure the satellite is above the meteors */

.satellite {
    z-index: 2;
    /* Higher than meteors */
}


/* If you have a moon in your design, ensure it's above */

.moon {
    z-index: 3;
    /* Higher than satellite and meteors */
}


/* Animations with fast diagonal trajectories */

@keyframes meteor1 {
    0% {
        transform: translate(200px, -200px) rotate(25deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-600px, 900px) rotate(25deg);
        opacity: 0;
    }
}

@keyframes meteor2 {
    0% {
        transform: translate(800px, -300px) rotate(15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-300px, 1000px) rotate(15deg);
        opacity: 0;
    }
}

@keyframes meteor3 {
    0% {
        transform: translate(1200px, -200px) rotate(35deg);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.9;
    }
    100% {
        transform: translate(200px, 1100px) rotate(35deg);
        opacity: 0;
    }
}

@keyframes meteor4 {
    0% {
        transform: translate(500px, -400px) rotate(10deg);
        opacity: 0;
    }
    15% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.9;
    }
    100% {
        transform: translate(-500px, 1200px) rotate(10deg);
        opacity: 0;
    }
}


/* Individual configuration: different positions and times */

.meteor:nth-child(3) {
    /* Meteor 1 */
    top: -10%;
    left: 10%;
    animation: meteor1 8s linear infinite;
    animation-delay: 0s;
}

.meteor:nth-child(4) {
    /* Meteor 2 */
    top: -20%;
    left: 40%;
    animation: meteor2 10s linear infinite;
    animation-delay: 2s;
}

.meteor:nth-child(5) {
    /* Meteor 3 */
    top: -25%;
    left: 70%;
    animation: meteor3 9s linear infinite;
    animation-delay: 4s;
}

.meteor:nth-child(6) {
    /* Meteor 4 */
    top: -15%;
    left: 85%;
    animation: meteor4 11s linear infinite;
    animation-delay: 6s;
}


/* Menu */

.navbar {
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4fc3f7;
}


/* Content */

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.header {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.main-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: white;
    color: black;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
}

.cta-button::before,
.cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("images/estrellita.png") no-repeat center;
    background-size: contain;
    transform: translateY(-50%);
}

.cta-button::before {
    left: 10px;
}

.cta-button::after {
    right: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/* Floating audio player */

.audio-player {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-toggle {
    background: rgba(79, 195, 247, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.audio-toggle:hover {
    background: rgba(79, 195, 247, 1);
    transform: scale(1.1);
}

.audio-controls {
    display: none;
    background: rgba(10, 25, 47, 0.95);
    border: 2px solid #4fc3f7;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(10px);
    gap: 10px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.audio-player:hover .audio-controls {
    display: flex;
}

.volume-slider {
    width: 100px;
    height: 6px;
    border-radius: 3px;
    background: #233554;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4fc3f7;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-btn,
.play-pause-btn {
    background: rgba(79, 195, 247, 0.3);
    border: 1px solid #4fc3f7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.volume-btn:hover,
.play-pause-btn:hover {
    background: rgba(79, 195, 247, 0.6);
    transform: scale(1.1);
}


/* Player states */

.audio-player.playing .audio-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/* Floating audio player */

.audio-player {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-toggle {
    background: #ffffff;
    /* WHITE BACKGROUND */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* SHADOW */
    color: #000000;
    /* BLACK MUSICAL NOTE */
    font-weight: bold;
}

.audio-toggle:hover {
    background: #f0f0f0;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.audio-controls {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    /* WHITE BACKGROUND */
    border: 2px solid #4fc3f7;
    border-radius: 25px;
    padding: 15px;
    backdrop-filter: blur(10px);
    gap: 10px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.audio-player:hover .audio-controls {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.volume-slider {
    width: 100px;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4fc3f7;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffffff;
}

.volume-btn,
.play-pause-btn {
    background: rgba(79, 195, 247, 0.2);
    border: 2px solid #4fc3f7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #333333;
}

.volume-btn:hover,
.play-pause-btn:hover {
    background: rgba(79, 195, 247, 0.4);
    transform: scale(1.1);
}