/* Hero Test Simple Styles */
.hero-test-simple {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: white;
}

/* Masquer le logo de la navbar seulement quand on est au top de la page avec hero */
.hero-test-simple-active .navbar-brand,
.hero-test-simple-active #header .header-container > a,
.hero-test-simple-active #header .header-logo {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* S'assurer que le logo réapparaît par défaut */
.navbar-brand,
#header .header-container > a,
#header .header-logo {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-test-simple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/hero/band-photo.webp');
    background-position: center 65%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-test-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 22, 26, 0.8) 0%, rgba(18, 22, 26, 0.6) 50%, rgba(18, 22, 26, 0.85) 100%);
    z-index: 1;
}

.hero-test-simple-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-test-simple-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 2rem 0;
    min-height: 80vh;
}

.hero-test-simple-container {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 3rem;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.hero-test-simple-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.hero-logo-img {
    max-width: clamp(320px, 55vw, 550px);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img:hover {
    transform: scale(1.06) translateY(-8px);
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.8));
}

.hero-test-simple-subtitle {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero-test-simple-subtitle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    border-radius: 2px;
}

.hero-test-simple-description {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    font-weight: 400;
}

.hero-test-simple-buttons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 0;
    flex-wrap: wrap;
}

.hero-test-simple-btn {
    font-family: 'Karla', Arial, sans-serif;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 180px;
    justify-content: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
}

.hero-test-simple-btn:hover,
.hero-test-simple-btn:focus,
.hero-test-simple-btn:active,
.hero-test-simple-btn:visited {
    text-decoration: none !important;
}

.hero-test-simple-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-test-simple-btn:hover::before {
    left: 100%;
}

.hero-test-simple-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-test-simple-btn:hover i {
    transform: scale(1.1);
}

.hero-test-simple-btn-primary {
    /* Variables pour les couleurs vertes du site */
    --button-background: rgba(20, 60, 45, 0.7);
    --text-base: rgba(255, 255, 255, 0.95);
    --text-hover: rgba(255, 255, 255, 1);
    --shadow-start: rgba(0, 212, 170, 0.8);
    --shadow-end: rgba(2, 131, 93, 1);

    /* Style du bouton - conserve la structure de base */
    background-color: var(--button-background);
    color: var(--text-base);
    border: 3px solid rgba(2, 131, 93, 1);
    border-radius: 2em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Améliorer la visibilité du texte */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.3);
    
    /* Effets magiques */
    transition: 0.25s ease-out;
}

/* Configuration des pseudo-éléments */
.hero-test-simple-btn-primary::before,
.hero-test-simple-btn-primary::after {
    content: "";
    border-radius: inherit;
    transition: inherit;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Ombre dégradée */
.hero-test-simple-btn-primary::before {
    /* Position */
    inset: -0.2em;
    z-index: -1;

    /* Effet */
    background: linear-gradient(var(--shadow-start), var(--shadow-end));
    filter: blur(1.2em) saturate(1.2);

    /* Animation */
    transform-origin: bottom;
    transform: scaleY(0.5);
    opacity: 0;
}

/* Bordure éclaircie semi-transparente */
.hero-test-simple-btn-primary::after {
    /* Effet */
    box-shadow: inset 0 0 0 1px #fff,
        0 0 0 4px hsla(0deg, 0%, 100%, 0.5),
        1px 1px 0 4px #fff;
    mix-blend-mode: overlay;

    /* Animation */
    opacity: 0;
}

.hero-test-simple-btn-primary:hover,
.hero-test-simple-btn-primary:focus {
    color: var(--text-hover) !important;
    text-decoration: none !important;
    
    /* Transformation magique */
    transform: translateY(-2px) scale(1.02);

    /* Éclaircir la bordure */
    border-color: transparent;
    
    /* Améliorer la visibilité du texte au hover */
    text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                 0 2px 4px rgba(0, 0, 0, 0.5);

    /* Ombre intérieure magique */
    box-shadow:
        inset 0 1.4em 0 rgba(2, 131, 93, 0.1),
        inset 0 0 1.4em rgba(2, 131, 93, 0.32),
        0 1px 1px rgba(2, 131, 93, 0.32);
}

/* Montrer les effets au hover */
.hero-test-simple-btn-primary:hover::before,
.hero-test-simple-btn-primary:hover::after,
.hero-test-simple-btn-primary:focus::before,
.hero-test-simple-btn-primary:focus::after {
    transform: none;
    opacity: 1;
}

.hero-test-simple-btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.hero-test-simple-btn-secondary {
    /* Variables pour les couleurs blanches du bouton découvrir */
    --button-background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
    --text-base: white;
    --text-hover: rgba(255, 255, 255, 0.95);
    --shadow-start: rgba(255, 255, 255, 0.6);
    --shadow-end: rgba(255, 255, 255, 0.3);

    /* Style du bouton - conserve la structure de base */
    background: var(--button-background);
    color: var(--text-base);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    /* Améliorer la visibilité du texte avec halo blanc */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.3);
    
    /* Effets magiques */
    transition: 0.25s ease-out;
}

/* Configuration des pseudo-éléments pour le bouton secondaire */
.hero-test-simple-btn-secondary::before,
.hero-test-simple-btn-secondary::after {
    content: "";
    border-radius: inherit;
    transition: inherit;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Ombre dégradée blanche */
.hero-test-simple-btn-secondary::before {
    /* Position */
    inset: -0.2em;
    z-index: -1;

    /* Effet */
    background: linear-gradient(var(--shadow-start), var(--shadow-end));
    filter: blur(1.2em) saturate(1.2);

    /* Animation */
    transform-origin: bottom;
    transform: scaleY(0.5);
    opacity: 0;
}

/* Bordure éclaircie semi-transparente */
.hero-test-simple-btn-secondary::after {
    /* Effet */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 0 4px hsla(0deg, 0%, 100%, 0.3),
        1px 1px 0 4px rgba(255, 255, 255, 0.6);
    mix-blend-mode: overlay;

    /* Animation */
    opacity: 0;
}

.hero-test-simple-btn-secondary:hover,
.hero-test-simple-btn-secondary:focus {
    color: var(--text-hover) !important;
    text-decoration: none !important;
    
    /* Transformation magique */
    transform: translateY(-2px) scale(1.02);

    /* Éclaircir la bordure */
    border-color: transparent;

    /* Ombre intérieure magique blanche */
    box-shadow:
        inset 0 1.4em 0 rgba(255, 255, 255, 0.1),
        inset 0 0 1.4em rgba(255, 255, 255, 0.25),
        0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Montrer les effets au hover pour le bouton secondaire */
.hero-test-simple-btn-secondary:hover::before,
.hero-test-simple-btn-secondary:hover::after,
.hero-test-simple-btn-secondary:focus::before,
.hero-test-simple-btn-secondary:focus::after {
    transform: none;
    opacity: 1;
}

.hero-test-simple-btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
}

/* Tracks Section */
.hero-test-simple-tracks {
    padding: 0.5rem 0;
}

.hero-test-simple-tracks-title {
    font-family: 'The Fudge Chonk', 'Karla', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

/* Plateformes de Streaming */
.streaming-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.streaming-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.streaming-link .fab {
    transition: all 0.3s ease;
}

.streaming-link:hover .fab {
    transform: scale(1.1);
}

/* Couleurs spécifiques par plateforme */
.streaming-link:nth-child(1):hover {
    background: rgba(29, 185, 84, 0.2);
    color: #1db954;
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.2);
}

.streaming-link:nth-child(2):hover {
    background: rgba(169, 169, 169, 0.2);
    color: #a9a9a9;
    border-color: rgba(169, 169, 169, 0.4);
    box-shadow: 0 8px 25px rgba(169, 169, 169, 0.2);
}

.streaming-link:nth-child(3):hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.hero-test-simple-tracks-subtitle {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-test-simple-tracks-grid {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Modern Audio Player Styles */
.player {
    position: relative;
    font-family: "Karla", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex: 1;
    max-width: 280px;
    margin-bottom: 1rem;
}

.player .info {
    position: absolute;
    height: 60px;
    top: 0;
    opacity: 0;
    left: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 15px 5px 110px;
    border-radius: 15px;
    transition: all .5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player .info .artist,
.player .info .name {
    display: block;
}

.player .info .artist {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 4px;
}

.player .info .name {
    color: white;
    font-size: 14px;
    margin-bottom: 3px;
}

.player .info .duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-bottom: 6px;
    display: block;
}

.player .info .progress-bar {
    background-color: rgba(255, 255, 255, 0.2);
    height: 2px;
    width: 100%;
    position: relative;
    border-radius: 1px;
}

.player .info .progress-bar .bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #02835d;
    width: 10%;
    transition: all .2s ease;
    border-radius: 1px;
}

.player .info.active {
    top: -60px;
    opacity: 1;
    transition: all .5s ease;
}

.player .control-panel {
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    width: 100%;
    max-width: 280px;
    height: 80px;
    z-index: 5;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player .control-panel .album-art {
    position: absolute;
    left: 20px;
    top: -15px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: all .5s ease;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/img/hero/vinyl-default.svg');
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.player .control-panel .album-art::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.player .control-panel.active .album-art {
    box-shadow: 0px 0px 30px 8px rgba(2, 131, 93, 0.4);
    transform: scale(1.2);
    transition: all .5s ease;
    animation: rotation 3s infinite linear;
    -webkit-animation: rotation 3s infinite linear;
    animation-fill-mode: forwards;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1.2);
    }
}

.player .control-panel .controls {
    display: flex;
    justify-content: center;
    height: 80px;
    padding: 0 15px;
    align-items: center;
}

.player .control-panel .controls .play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: rgba(2, 131, 93, 0.8);
    cursor: pointer;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border: 2px solid rgba(2, 131, 93, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.9)"><path d="M8 5v14l11-7z"/></svg>');
}

.player .control-panel .controls .play:hover {
    background-color: rgba(2, 131, 93, 1);
    border-color: rgba(2, 131, 93, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(2, 131, 93, 0.4);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.player .control-panel.active .controls .play {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.9)"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>');
    background-color: rgba(2, 131, 93, 1);
    border-color: rgba(2, 131, 93, 0.8);
}

/* Modern Player Design */
.modern-player {
    position: relative;
    background: linear-gradient(135deg,
        rgba(2, 131, 93, 0.1) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(2, 131, 93, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    width: 100%;
    max-width: 280px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: visible;
    transition: all 0.4s ease;
}

.modern-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(2, 131, 93, 0.2);
}

/* Vinyl Animation */
.vinyl-animation {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    z-index: 100;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.vinyl-record {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2d2d2d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 3px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #555 0%, #2a2a2a 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
    z-index: 12;
}

.vinyl-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-groove-1 {
    width: 45px;
    height: 45px;
}

.vinyl-groove-2 {
    width: 60px;
    height: 60px;
}

.vinyl-groove-3 {
    width: 75px;
    height: 75px;
}

/* Animation de rotation du vinyle */
@keyframes vinyl-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes vinyl-appear {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

.modern-player.active .vinyl-animation {
    opacity: 1;
    transform: scale(1);
    animation: vinyl-appear 0.8s ease-out;
}

.modern-player.active .vinyl-record {
    animation: vinyl-spin 2s linear infinite;
    animation-delay: 0.8s;
}





.player-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 20px;
}

.wave-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.wave {
    position: absolute;
    border: 2px solid #02835d;
    border-radius: 50%;
    animation: wave-pulse 3s ease-in-out infinite;
}

.wave1 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave2 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -1s;
}

.wave3 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes wave-pulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.track-info {
    position: absolute;
    top: 15px;
    left: 70px;
    right: 80px;
    z-index: 2;
}

.track-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.track-duration {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.modern-controls {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 3;
}

.modern-play-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #02835d 0%, #004d3d 100%);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(2, 131, 93, 0.3);
}

.modern-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 131, 93, 0.5);
}

.modern-play-btn.playing {
    background: linear-gradient(135deg, #02835d 0%, #015a3f 100%);
    animation: pulse-playing 2s ease-in-out infinite;
}

@keyframes pulse-playing {
    0% {
        box-shadow: 0 4px 15px rgba(2, 131, 93, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(2, 131, 93, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(2, 131, 93, 0.3);
    }
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pause-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.play-icon svg,
.pause-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.progress-container {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    z-index: 2;
    height: 20px;
}

.duration-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    height: 12px;
}

.current-time,
.total-duration {
    font-weight: 500;
    min-width: 35px;
}

.progress-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #02835d 0%, #00d4aa 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.modern-player.active .wave-animation {
    opacity: 0.3;
}

.modern-player.active .wave {
    animation-duration: 2s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-test-simple-main {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero-test-simple-container {
        gap: 2rem;
        max-width: 95%;
    }
    
    .hero-logo-img {
        max-width: clamp(250px, 75vw, 400px);
    }
    
    .hero-test-simple-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        letter-spacing: 3px;
    }
    
    .hero-test-simple-subtitle::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .hero-test-simple-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        max-width: 90%;
        line-height: 1.6;
    }
    
    .hero-test-simple-buttons {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-test-simple-btn {
        width: 90%;
        max-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: unset;
    }

    .hero-test-simple-btn i {
        font-size: 1.1rem;
    }

    .hero-test-simple-tracks-grid {
        flex-direction: column;
        align-items: center;
    }

    .player {
        max-width: 100%;
        width: 280px;
    }

    .streaming-platforms {
        gap: 1rem;
        margin: 1rem 0 1.5rem 0;
    }

    .streaming-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}


