.anthem-hero {
    position: relative;
    background-image: url('../img/about_hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 5px auto 0;
    max-width: calc(100% - 24px);
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 20px; 
    text-align: center;
    color: #444;
    overflow: hidden;
}

.anthem-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.anthem-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.anthem-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #1965c0;
    margin: 15px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.anthem-section {
    padding: 20px 0; 
    background-color: #f8fbff;
}

.anthem-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.anthem-img-side {
    flex: 0 0 55%;
    padding: 20px;
    background: #f8fbff;
}

.anthem-img-card {
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    height: 100%;
}

.anthem-img-card img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.controls-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.controls-card {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    height: auto;
}

.controls-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1965c0;
    margin-bottom: 25px;
}

.audio-player-wrapper {
    background: #f0f7ff;
    padding: 30px;
    border-radius: 20px;
    width: 100%;
}

.custom-player {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: #1965c0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(25, 101, 192, 0.2);
}

.play-btn:hover {
    transform: scale(1.1);
    background: #1557a7;
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 700;
    color: #1965c0;
    margin-bottom: 2px;
    display: block;
}

.player-subtext {
    font-size: 13px;
    color: #888;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(25, 101, 192, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #1965c0;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-family: 'Quicksand', sans-serif;
}

.anthem-info {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .anthem-section {
        padding: 40px 15px;
    }
    .anthem-hero-title {
        font-size: 40px;
    }
    .anthem-grid {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .anthem-img-side {
        flex: 1 0 auto;
    }
    .controls-side {
        padding: 30px;
    }
    .controls-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .anthem-hero {
        min-height: 320px;
        padding-top: 80px;
    }
    .anthem-hero-title {
        font-size: 36px;
    }
    .lyrics-content {
        font-size: 16px;
    }
}
