/*
Theme Name: Marathon du Clair de Lune
Theme URI: http://www.marathon-du-clair-de-lune.com
Author: Votre Nom
Author URI: http://www.marathon-du-clair-de-lune.com
Description: Thème futuriste pour le Marathon du Clair de Lune - Course nocturne autour du lac d'Annecy
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marathon-clair-de-lune
Tags: dark, futuristic, sports, marathon
*/

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 240, 255, 0.15);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(191, 0, 255, 0.15);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #00f0ff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-title .moon-icon {
    display: inline-block;
    animation: moonGlow 3s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #ffd700, 0 0 80px #ffd700;
    }
    50% {
        text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #ffd700, 0 0 100px #ffd700;
    }
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #00f0ff, 0 0 82px #00f0ff;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #00f0ff, 0 0 82px #00f0ff;
    }
    50% {
        text-shadow: 0 0 4px #fff, 0 0 7px #fff, 0 0 15px #fff, 0 0 30px #00f0ff, 0 0 60px #00f0ff;
    }
}

.event-info {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.event-date { color: #00f0ff; font-weight: 700; }
.event-location { color: #bf00ff; font-weight: 700; }

.countdown-container {
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.countdown-label {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.8);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), inset 0 0 30px rgba(0, 240, 255, 0.2);
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00f0ff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    line-height: 1;
}

.countdown-unit {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.7s forwards;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 80px rgba(0, 240, 255, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #bf00ff;
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(191, 0, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(191, 0, 255, 0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER */
.site-header {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 18px;
    padding: 12px 0;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00f0ff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.main-nav a:hover::after {
    width: 100%;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, #0a0e27 0%, #16213e 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FOOTER */
.site-footer {
    background: #000;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00f0ff;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #00f0ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
/* LOGO PAGE D'ACCUEIL */
.hero-logo {
    margin: 0 0 25px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-logo img {
    max-width: 600px;
    width: 92%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.35));
}

/* LOGO DANS LE HEADER */
.site-logo img {
    height: 55px;
    width: auto;
}
/* TEXTES SPONSOR */
.section-sponsor { text-align: center; color: rgba(255,255,255,.8); font-size: 1.2rem; margin-bottom: 40px; }
.section-sponsor strong { color: #00f0ff; text-shadow: 0 0 12px rgba(0,240,255,.6); }

/* VIDÉOS */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 15px; overflow: hidden; border: 2px solid rgba(0,240,255,.3); box-shadow: 0 0 25px rgba(0,240,255,.2); }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-label { text-align: center; margin-top: 12px; color: #00f0ff; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .9rem; }

/* ALIMENTATION */
.alim-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.alim-card { background: rgba(255,255,255,.05); border: 2px solid rgba(0,240,255,.25); border-radius: 20px; padding: 30px 25px; text-align: center; text-decoration: none; transition: all .35s ease; display: block; }
.alim-card:hover { transform: translateY(-8px); border-color: rgba(0,240,255,.7); box-shadow: 0 0 35px rgba(0,240,255,.3); }
.alim-icon { font-size: 2.5rem; margin-bottom: 15px; }
.alim-card h3 { font-family: 'Orbitron', sans-serif; color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.alim-card p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 20px; }
.alim-btn { display: inline-block; padding: 10px 20px; border: 2px solid rgba(0,240,255,.4); border-radius: 50px; color: #00f0ff; font-weight: 700; }
.alim-card:hover .alim-btn { background: linear-gradient(135deg, #00f0ff, #0080ff); color: #000; }

/* PARTENAIRES */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.partner-card { background: #fff; border-radius: 15px; padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 110px; transition: all .3s ease; box-shadow: 0 0 15px rgba(0,240,255,.15); }
.partner-card img { max-width: 100%; max-height: 70px; width: auto; height: auto; filter: grayscale(100%); opacity: .7; transition: all .3s ease; }
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 0 30px rgba(0,240,255,.4); }
.partner-card:hover img { filter: grayscale(0); opacity: 1; }

/* VILLES TRAVERSÉES */
.villes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.ville-card { background: rgba(255,255,255,.05); border: 2px solid rgba(191,0,255,.25); border-radius: 20px; padding: 30px 20px 20px; text-align: center; transition: all .35s ease; position: relative; margin-top: 15px; }
.ville-card:hover { transform: translateY(-6px); border-color: rgba(191,0,255,.7); box-shadow: 0 0 30px rgba(191,0,255,.3); }
.ville-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; line-height: 32px; border-radius: 50%; background: linear-gradient(135deg, #bf00ff, #7000ff); color: #fff; font-family: 'Orbitron', sans-serif; font-weight: 700; box-shadow: 0 0 15px rgba(191,0,255,.6); }
.ville-card img { max-height: 80px; max-width: 100%; margin: 0 auto 15px; background: #fff; border-radius: 10px; padding: 8px; display: block; }
.ville-card h3 { font-family: 'Orbitron', sans-serif; color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.ville-card p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.5; }
/* LECTEUR MUSIQUE */
.music-player { position: fixed; bottom: 25px; right: 25px; z-index: 9999; font-family: 'Rajdhani', sans-serif; }
.music-toggle {
    width: 60px; height: 60px; border-radius: 50%;
    border: 2px solid rgba(0,240,255,.5);
    background: rgba(10,14,39,.9);
    font-size: 1.6rem; cursor: pointer;
    box-shadow: 0 0 25px rgba(0,240,255,.4);
    transition: all .3s ease;
}
.music-toggle:hover { box-shadow: 0 0 45px rgba(0,240,255,.7); transform: scale(1.08); }
.music-panel {
    position: absolute; bottom: 75px; right: 0; width: 280px;
    background: rgba(10,14,39,.97);
    border: 2px solid rgba(0,240,255,.4);
    border-radius: 20px; padding: 20px;
    box-shadow: 0 0 40px rgba(0,240,255,.3);
    display: none;
}
.music-panel.open { display: block; }
.music-title {
    color: #00f0ff; font-weight: 700; letter-spacing: 1px;
    display: block; text-align: center; margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0,240,255,.5);
}
.music-controls { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; }
.music-controls button {
    width: 45px; height: 45px; border-radius: 50%;
    border: 2px solid rgba(191,0,255,.5);
    background: rgba(191,0,255,.1);
    color: #fff; font-size: 1.1rem; cursor: pointer; transition: all .3s ease;
}
.music-controls button:hover { background: rgba(191,0,255,.4); box-shadow: 0 0 20px rgba(191,0,255,.5); }
.music-list { list-style: none; max-height: 220px; overflow-y: auto; margin: 0; padding: 0; }
.music-list li {
    padding: 8px 12px; border-radius: 10px; color: rgba(255,255,255,.8);
    cursor: pointer; margin-bottom: 4px; transition: all .2s ease; font-size: .95rem;
}
.music-list li:hover { background: rgba(0,240,255,.15); color: #00f0ff; }
.music-list li.active { background: rgba(0,240,255,.2); color: #00f0ff; text-shadow: 0 0 8px rgba(0,240,255,.6); }
/* MENU MOBILE */
.mobile-menu-toggle { display: none; }

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 45px;
        height: 45px;
        background: rgba(0,240,255,.1);
        border: 2px solid rgba(0,240,255,.4);
        border-radius: 10px;
        cursor: pointer;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #00f0ff;
        box-shadow: 0 0 8px rgba(0,240,255,.8);
    }
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10,14,39,.98);
        border: 1px solid rgba(0,240,255,.3);
        border-radius: 0 0 18px 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }
    .main-nav.active { max-height: 450px; }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    .main-nav li { text-align: center; }
    .main-nav a { display: block; padding: 12px 0; }
}
a.partner-card, a.ville-card { text-decoration: none; }
/* INFOS PRATIQUES */
.infos-pratiques {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 30px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(0,240,255,0.2);
    border-radius: 25px;
}
.infos-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    color: #00f0ff;
    text-shadow: 0 0 20px rgba(0,240,255,0.6);
    margin-bottom: 15px;
}
.infos-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    margin-bottom: 50px;
}
.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}
.info-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(0,240,255,0.25);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
}
.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,240,255,0.7);
    box-shadow: 0 0 35px rgba(0,240,255,0.3);
}
.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.info-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}
.info-card strong {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0,240,255,0.5);
}
.info-warning {
    color: #ff9500 !important;
    font-size: 0.9rem;
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255,149,0,0.2);
}
.info-link {
    color: #00f0ff;
    text-decoration: none;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(0,240,255,0.5);
}
.info-link:hover {
    color: #fff;
}

/* CARTES GOOGLE MAPS */
.maps-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    color: #bf00ff;
    text-shadow: 0 0 15px rgba(191,0,255,0.6);
    margin-bottom: 40px;
}
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.map-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(191,0,255,0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.35s ease;
}
.map-card:hover {
    transform: translateY(-6px);
    border-color: rgba(191,0,255,0.7);
    box-shadow: 0 0 35px rgba(191,0,255,0.3);
}
.map-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: #bf00ff;
    margin-bottom: 15px;
    font-size: 1rem;
}
.map-frame {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(191,0,255,0.4);
    box-shadow: 0 0 20px rgba(191,0,255,0.2);
}
.map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 12px;
}
.map-zoom {
    display: inline-block;
    margin-top: 8px;
    color: #bf00ff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s ease;
}
.map-zoom:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(191,0,255,.8);
}
/* AFFICHE OFFICIELLE */
.affiche-frame a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.affiche-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.affiche-frame:hover img { transform: scale(1.05); }
/* BANDEAU COOKIES */
.tc-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10,14,39,.98);
    border-top: 2px solid rgba(0,240,255,.4);
    padding: 20px 25px;
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 -5px 30px rgba(0,240,255,.2);
}
.tc-banner p { color: rgba(255,255,255,.85); margin: 0; max-width: 700px; text-align: center; }
.tc-banner button {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid rgba(0,240,255,.5);
    background: rgba(0,240,255,.1);
    color: #00f0ff;
    font-weight: 700;
    cursor: pointer;
}
.tc-banner button.tc-accept { background: linear-gradient(135deg,#00f0ff,#0080ff); color: #000; border: none; }
.tc-facade {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10,14,39,.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    text-align: center;
    padding: 10px;
}
.tc-facade button {
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid rgba(191,0,255,.5);
    background: rgba(191,0,255,.15);
    color: #bf00ff;
    font-weight: 700;
    cursor: pointer;
.tc-open .music-player { bottom: 150px; }
.music-player { transition: bottom .3s ease; }
}