/*======================================
1. RESET
======================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    background:none;
    cursor:pointer;
    font:inherit;

}

video{

    display:block;
    width:100%;

}



/*======================================
2. CSS VARIABLES
======================================*/

:root{

    /* Brand */

    --primary:#17203F;
    --secondary:#11162D;
    --accent:#D4AF37;

    /* Background */

    --white:#F7F6F2;
    --light:#EEF1F5;
    --dark:#0D1325;

    /* Text */

    --text:#2F3442;
    --text-light:#7B8291;

    /* Borders */

    --border:#D9DEE8;

    /* Shadows */

    --shadow-sm:0 4px 12px rgba(0,0,0,.08);

    --shadow-md:0 12px 30px rgba(0,0,0,.12);

    --shadow-lg:0 20px 60px rgba(0,0,0,.20);

    /* Radius */

    --radius:18px;

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1200px;

}



/*======================================
3. TYPOGRAPHY
======================================*/

h1,
h2,
h3,
h4{

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    color:var(--primary);

    line-height:1.15;

}

h1{

    font-size:4.4rem;

}

h2{

    font-size:3rem;

    margin-bottom:25px;

}

h3{

    font-size:1.7rem;

}

p{

    color:var(--text-light);

    margin-bottom:20px;

}

.section-heading{

    text-align:center;

    margin-bottom:50px;

}

.section-heading span{

    display:inline-block;

    color:var(--accent);

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-size:.9rem;

}

.section-heading h2{

    max-width:700px;

    margin:auto;

}

.section-heading h2::after{

    content:"";

    display:block;

    width:90px;

    height:3px;

    background:var(--accent);

    margin:24px auto 0;

    border-radius:2px;

}

/*======================================
4. LAYOUT
======================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

.section{

    padding:80px 0;

}

.dark{

    background:var(--primary);

}

.dark h2,
.dark h3{

    color:white;

}

.dark p{

    color:rgba(255,255,255,.75);

}

.dark .section-heading span{

    color:var(--accent);

}

main{

    overflow:hidden;

}

/*======================================
5. HEADER
======================================*/

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

}

#header.scrolled{

    background:rgba(23,32,63,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 8px 30px rgba(0,0,0,.18);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    font-weight:700;

    color:white;

    letter-spacing:2px;

    transition:var(--transition);

}

.logo:hover{

    color:var(--accent);

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:32px;

}

.nav-menu a{

    position:relative;

    color:#fff;

    font-size:.95rem;

    font-weight:500;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:var(--transition);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--accent);

    transition:var(--transition);

}

.nav-menu a:hover{

    color:var(--accent);

}

.nav-menu a:hover::after{

    width:100%;

}

/* Active Navigation */

.nav-menu a.active{

    color:var(--accent);

}

.nav-menu a.active::after{

    width:100%;

}

.menu-toggle{

    display:none;

    font-size:2rem;

    color:white;

}

/*======================================
Mobile Menu Button
======================================*/

.menu-toggle{

    display:none;

    width:42px;

    height:42px;

    position:relative;

    cursor:pointer;

    z-index:1100;

}

.menu-toggle span{

    position:absolute;

    left:8px;

    width:26px;

    height:2px;

    background:white;

    transition:.35s ease;

}

.menu-toggle span:nth-child(1){

    top:12px;

}

.menu-toggle span:nth-child(2){

    top:20px;

}

.menu-toggle span:nth-child(3){

    top:28px;

}



/* Hamburger → X */

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg);

    top:20px;

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg);

    top:20px;

}

/*======================================
6. HERO
======================================*/

#hero{

    position:relative;

    height:100vh;

    min-height:760px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-slideshow{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    background-size:92% auto;

    background-position:center center;

    background-repeat:no-repeat;

    background-color:#11162D;

    opacity:0;

    transition:opacity 1.5s ease;

    transform:scale(1);

}

.slide.active{

    opacity:1;

    animation:kenburns 16s linear forwards;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(17,22,45,.40),

        rgba(23,32,63,.25)

    );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    max-width:900px;

    padding:130px 20px 20px;
}

.hero-logo{

    width:390px;

    max-width:75%;

    display:block;

    margin:0 auto 45px;

    filter:drop-shadow(0 18px 40px rgba(0,0,0,.30));

}

.hero-tagline{

    display:block;

    color:var(--accent);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.85rem;

    margin-bottom:28px;

}

.hero-location{

    color:white;

    font-size:1.35rem;

    letter-spacing:1px;

    margin-bottom:35px;
    
    line-height:1.5;

}

.hero-text{

    color:white;

    font-size:1.25rem;

    max-width:700px;

    margin:0 auto 40px;

}

/* ======================================
   HERO LOGO
====================================== */

.hero-logo {
    width: 100%;
    max-width: 330px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

/*======================================
7. BUTTONS
======================================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:24px;

    margin-top:50px;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:60px;

    padding:0 40px;

    border-radius:40px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--accent);

    color:var(--secondary);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:var(--primary);

}



/*======================================
SCROLL INDICATOR
======================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:55px;

    transform:translateX(-50%);

    z-index:10;

    text-align:center;

    color:white;

    letter-spacing:3px;

    font-size:.75rem;

}

.scroll-line{

    width:2px;

    height:45px;

    background:white;

    margin:12px auto 0;

    animation:scrollLine 2s infinite;

}



/*======================================
KEYFRAMES
======================================*/

@keyframes kenburns{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes scrollLine{

    0%{

        opacity:0;

        transform:translateY(-8px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(8px);

    }

}

/*======================================
8. ABOUT
======================================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow-lg);

}

.about-image img{

    width:100%;

    transition:transform .8s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-content{

    max-width:620px;

}

.about-content p{

    font-size:1.05rem;

}

.about-features{

    display:flex;

    gap:40px;

    margin-top:45px;

}

.feature{

    text-align:center;

}

.feature h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2.7rem;

    font-weight:700;

    color:var(--accent);

    line-height:1;

    margin-bottom:8px;

    text-shadow:0 4px 15px rgba(212,175,55,.25);

}

.feature span{

    display:block;

    color:var(--text-light);

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:1.5px;

}



/*======================================
9. THE BAND
======================================*/

.members-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:35px;

}

.member-card{

    background:#1B2548;

    border-radius:var(--radius);
    
    border:1px solid rgba(255,255,255,.05);

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:var(--shadow-md);

}

.member-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.member-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:transform .6s ease;

}

.member-card:hover img{

    transform:scale(1.06);

}

.member-info{

    padding:28px 24px 20px;

    text-align:center;

}

.member-info h3{

    color:white;

    margin-bottom:10px;

}

.instrument{

    color:var(--accent);

    font-weight:600;

    margin-bottom:8px;

}

.country{

    color:rgba(255,255,255,.75);

    font-size:.95rem;

}



/*======================================
10. REPERTOIRE
======================================*/



.repertoire-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.repertoire-grid span{

    padding:14px 30px;

    border:1px solid rgba(212,175,55,.25);

    border-radius:40px;

    background:white;

    box-shadow:var(--shadow-sm);

    font-weight:600;

    letter-spacing:.5px;

    transition:all .35s ease;
    
    cursor:default;

}

.repertoire-grid span:hover{

    background:var(--accent);

    color:var(--secondary);

    border-color:var(--accent);

    transform:translateY(-4px);

    box-shadow:var(--shadow-lg);

}

/*======================================
11. SHOWS
======================================*/



.shows-grid{

    display:grid;

    gap:30px;

    max-width:900px;

    margin:auto;

}

.show-card{

    display:flex;

    align-items:center;

    gap:35px;

    background:#1B2548;

    padding:30px;

    border-radius:var(--radius);

    transition:all .35s ease;

}

.show-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.show-date{

    min-width:90px;

    text-align:center;

}

.show-date .day{

    display:block;

    font-size:3rem;

    font-weight:700;

    color:var(--accent);

    line-height:1;

}

.show-date .month{

    display:block;

    color:white;

    letter-spacing:2px;

    margin-top:6px;

}

.show-info h3{

    color:white;

    margin-bottom:8px;

}

.show-info p{

    margin:4px 0;

    color:rgba(255,255,255,.75);

}



/*======================================
12. MEDIA
======================================*/

.featured-video{

    max-width:1000px;

    margin:0 auto 70px;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

}

.gallery-grid img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;

    transition:all .35s ease;

}

.gallery-grid img:hover{

    transform:scale(1.04);

}



/*======================================
13. BOOKING
======================================*/

.booking-section{

    position:relative;

    padding:100px 0;

    background:url("../images/booking/booking.png") center/cover;

    text-align:center;

}

.booking-overlay{

    position:absolute;

    inset:0;

    background:rgba(17,22,45,.82);

}

.booking-content{

    position:relative;

    z-index:2;

    max-width:750px;

    margin:auto;

    color:white;

}

.booking-content span{

    color:var(--accent);

    letter-spacing:3px;

    text-transform:uppercase;

}

.booking-content h2{

    color:white;

    margin:25px 0;

}

.booking-content p{

    color:white;

    margin-bottom:40px;

}

.show-card {
    display:grid;
    grid-template-columns:90px 1fr auto;
    align-items:center;
    gap:35px;

    background:#1B2548;
    padding:30px 35px;

    border-radius:var(--radius);

    transition:all .35s ease;
}

.show-action {
    display:flex;
    align-items:center;
    justify-content:center;
}

.show-ticket {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:165px;
    height:52px;

    padding:0 26px;

    background:var(--accent);
    color:var(--secondary);

    border-radius:30px;

    font-size:.9rem;
    font-weight:600;
    letter-spacing:.3px;

    transition:all .35s ease;
}

.show-ticket:hover {
    transform:translateY(-3px);
    box-shadow:var(--shadow-lg);
}

/*======================================
14. CONTACT
======================================*/

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-bottom:50px;

}

.contact-card{

    background:white;

    padding:40px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card a{

    color:var(--primary);

    font-weight:600;

}

.social-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.social-links a{

    color:var(--primary);

    font-weight:600;

}

.social-links a:hover{

    color:var(--accent);

}

#request{

    background:var(--light);

}

/*======================================
15. REQUEST FORM
======================================*/

.contact-intro{

    max-width:700px;

    margin:0 auto 50px;

    text-align:center;

}



.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.full-width{

    grid-column:1 / -1;

}

.form-group label{

    margin-bottom:10px;

    font-weight:600;

    color:var(--primary);

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    background:white;

    font-family:'Poppins',sans-serif;

    font-size:1rem;

    color:var(--text);

    transition:all .35s ease;

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.booking-form .btn{

    margin:45px auto 25px;

    display:flex;

}

.form-note{

    text-align:center;

    font-size:.95rem;

    color:var(--text-light);

    line-height:1.8;

}

.booking-form{

    max-width:900px;

    margin:0 auto;

    background:#ffffff;

    padding:50px;

    border-radius:24px;

    border:1px solid rgba(23,32,63,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

/* Honeypot */

.honeypot{

    position:absolute;

    left:-9999px;

    opacity:0;

    pointer-events:none;

}

/*======================================
15. FOOTER
======================================*/

footer{

    background:var(--secondary);

    color:white;

    text-align:center;

    padding:90px 20px;

}

.footer-logo{

    width:140px;

    margin:0 auto 25px;

}

.footer-logo{

    animation:footerGlow 6s ease-in-out infinite;

}

@keyframes footerGlow{

    0%,100%{

        filter:
            drop-shadow(0 0 8px rgba(212,175,55,.18));

    }

    50%{

        filter:
            drop-shadow(0 0 10px rgba(212,175,55,.35))
            drop-shadow(0 0 22px rgba(212,175,55,.22));

    }

}

footer p{

    color:rgba(255,255,255,.70);

    margin:8px 0;

}



/*======================================
16. REVEAL ANIMATION
======================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}



/*======================================
17. RESPONSIVE
======================================*/


@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

    

        gap:45px;

    }

    .hero-content h1{

        font-size:2.8rem;

    }

    .about-features{

        justify-content:center;

    }

}



@media(max-width:768px){

    .menu-toggle{

        display:block;

    }

    .nav-menu{

        position:fixed;

        top:0;

        right:-100%;

        width:280px;

        height:100vh;

        background:var(--secondary);

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:35px;

        transition:.4s ease;

        z-index:1000;

    }

    .nav-menu.active{

        right:0;

    }

    /* Hero */

    #hero{

    min-height:auto;

    height:auto;

    padding-top:140px;

    padding-bottom:60px;

}

.hero-content{

    max-width:100%;

    padding:0 24px;

}

.hero-content h1{

    max-width:320px;

    margin:0 auto 20px;

    line-height:1.3;

}

    .hero-logo{

        width:220px;

        margin-bottom:25px;

    }

    .hero-location{

        font-size:1rem;

    }

    .hero-text{

        font-size:1.05rem;

        line-height:1.6;

    }

    .hero-buttons{

        margin-top:30px;

        gap:16px;

    }

    .scroll-indicator{

        display:none;

    }

}



@media(max-width:480px){

    h2{

        font-size:2.2rem;

    }

    .btn{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

}

.about-content{

    max-width:100%;

}

.about-content p{

    font-size:1rem;

    line-height:1.8;

    word-break:normal;

    overflow-wrap:break-word;

}

@media(max-width:768px) {

    .show-card {
        grid-template-columns:1fr;
        text-align:center;
        gap:20px;
    }

    .show-date {
        text-align:center;
    }

    .show-action {
        margin-top:5px;
    }

    .show-ticket {
        width:100%;
        max-width:220px;
    }

}

/*======================================
Gallery Lightbox
======================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:5000;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:90%;

    max-height:90%;

    border-radius:12px;

    box-shadow:0 20px 60px rgba(0,0,0,.6);

}

.lightbox-close{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:3rem;

    cursor:pointer;

}

.lightbox-close{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:3rem;

    cursor:pointer;

    background:none;

    border:none;

    padding:0;

    line-height:1;

}

/*======================================
Premium Gallery
======================================*/

.lightbox-image{

    transform:scale(.92);

    transition:.35s ease;
    
    position:relative;

    z-index:5000;

}

.lightbox.active .lightbox-image{

    transform:scale(1);

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:white;

    font-size:2rem;

    cursor:pointer;

    transition:.3s;

    z-index:5100;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:var(--accent);

    color:var(--secondary);

}

.lightbox-counter{

    position:fixed;

    bottom:30px;

    color:white;

    font-size:1rem;

    letter-spacing:2px;

}

.lightbox-caption{

    position:absolute;

    bottom:60px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:1.1rem;

    letter-spacing:1px;

    text-align:center;

    max-width:80%;

}

.gallery-grid img,
.lightbox-image{

    user-select:none;

    -webkit-user-select:none;

    -webkit-touch-callout:none;

}

/* Disable Microsoft Edge Visual Search */

img{

    -webkit-user-drag:none;

}

img::-webkit-media-controls{

    display:none !important;

}

@media(max-width:768px){

    .lightbox-prev{

        left:10px;

    }

    .lightbox-next{

        right:10px;

    }

    .lightbox-prev,
    .lightbox-next{

        width:44px;

        height:44px;

        font-size:1.5rem;

    }
    .about-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:10px;

    margin-top:35px;

}

.feature{

    text-align:center;

}

.feature h3{

    font-size:2.5rem;

}

.feature span{

    font-size:.75rem;

    line-height:1.3;

}

}

.form-grid{

    grid-template-columns:1fr;

}

.booking-form{

    width:100%;

}

.booking-form .btn{

    width:100%;

}

.form-group input,
.form-group select,
.form-group textarea{

    padding:16px;

}

.booking-form{

    padding:30px 20px;

}

/* =========================================================
   OTAVA MOBILE HERO IMAGE
   ========================================================= */

@media screen and (max-width: 768px) {

    #hero .hero-slideshow .slide.active {
        background-image: url("../images/hero/hero1-mobile.webp") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}

/* =========================================================
   HIDE HERO LOGO ON MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    #hero .hero-logo {
        display: none;
    }

}

/* =========================================================
   HIDE HERO TAGLINE ON MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    #hero .hero-tagline {
        display: none;
    }

}

@media screen and (max-width: 768px) {

    #hero {
        min-height: 100svh;
        height: 100svh;
        position: relative;
        overflow: hidden;
    }

    #hero .hero-slideshow,
    #hero .slide {
        width: 100%;
        height: 100%;
    }

    #hero .slide.active {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

}

@media screen and (max-width: 768px) {

    #hero .hero-location {
        margin-top: 85px;
    }

}

/* ======================================
   MOBILE HERO OVERLAY TEST
====================================== */

@media (max-width: 768px) {

    .hero-overlay {
        /* VAIHTOEHTO 1 - kevyt */
        background: linear-gradient(
            rgba(17,22,45,.35),
            rgba(23,32,63,.20)
        );
    }

}

/* =================================================
   ROCKSTAGE BACKGROUND MUSIC
   ================================================= */

.music-toggle {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.75);

    font-size: 18px;
    line-height: 1;

    cursor: pointer;

    z-index: 9999;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.music-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.music-toggle.playing {
    color: #e50000;
    border-color: rgba(229, 0, 0, 0.6);
}

@media (max-width: 600px) {

    .music-toggle {
        right: 15px;
        bottom: 15px;

        width: 36px;
        height: 36px;

        font-size: 17px;
    }

}