/* Estilos específicos para o Blog LinkZin */

/* Ticker de Cotações */
.currency-ticker {
    background: linear-gradient(135deg, #002147 0%, #0a1a3f 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    gap: 50px;
}

.ticker-content span {
    font-size: 14px;
    font-weight: 500;
    color: white;
    font-family: 'Arial', sans-serif;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.currency-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Ticker do IBOV - TradingView */
.ibov-ticker {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #ffd700;
    position: relative;
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ticker-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.ticker-title {
    font-size: 16px;
    font-weight: bold;
    color: #002147;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-subtitle {
    font-size: 11px;
    color: #666;
    font-style: italic;
    text-align: center;
    line-height: 1.2;
}

.tradingview-widget-container {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.tradingview-widget-container__widget {
    width: 100%;
    height: 100%;
}

/* Responsividade para o ticker */
@media (max-width: 768px) {
    .ticker-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .ticker-title {
        font-size: 14px;
    }
    
    .ticker-subtitle {
        font-size: 11px;
    }
    
    .tradingview-widget-container {
        height: 45px;
    }
}

/* Barra de Busca */
.search-section {
    padding: 30px 0;
    background: #fff;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 42, 71, 0.15);
    transform: translateY(-1px);
}

.search-btn {
    padding: 15px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-btn:hover {
    background: #081a3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.search-btn:active {
    transform: translateY(0);
}

/* Sistema de Resultados de Pesquisa */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-blue);
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #081a3a;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(3px);
}

.search-result-item:active {
    transform: translateX(1px);
}

.search-suggestion {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 2px;
}

.search-suggestion:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 42, 71, 0.3);
}

/* Animações de entrada */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results {
    animation: slideDown 0.3s ease-out;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .search-input {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 12px 16px;
    }
    
    .search-btn {
        padding: 12px 16px;
    }
    
    .search-results {
        left: 15px;
        right: 15px;
        max-height: 300px;
    }
}

/* Hero Section do Blog (Página de Listagem) */
.blog-hero {
    padding: 40px 0;
    background: #fff;
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.blog-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.audio-player {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.audio-player span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background: #081a3a;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-container {
    position: relative;
    flex: 1;
    height: 6px;
}

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.time-display {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.blog-hero-center {
    text-align: center;
}

.main-article-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-image {
    margin-bottom: 30px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



/* Seção de Cards dos Artigos */
.articles-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* ===== Carrossel de Artigos ===== */
.articles-carousel { position: relative; }
.carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable both-edges;
}
.carousel-viewport::-webkit-scrollbar { height: 8px; }
.carousel-viewport::-webkit-scrollbar-thumb { background: #d9dee3; border-radius: 8px; }
.carousel-viewport::-webkit-scrollbar-track { background: transparent; }
.carousel-track {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    padding: 5px 10px;
}
.carousel-track .article-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards visíveis (2 gaps = 60px) */
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translate3d(0,-50%,0);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* sombra fixa, sem transição */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: none; /* remove animações que podem piscar */
    outline: none;
    will-change: auto;
    backface-visibility: hidden;
}
.carousel-btn, .carousel-btn i { animation: none !important; transition: none !important; }
.carousel-btn:focus { outline: none; }
.carousel-btn.prev { left: 5px; }
.carousel-btn.next { right: 5px; }
.carousel-btn i { color: #ffffff; pointer-events: none; }
.carousel-btn:hover { background: var(--primary-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Evita qualquer mudança visual em estados de interação */
.carousel-btn:active { background: var(--primary-blue); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Reserva espaço lateral para os botões, evitando sobreposição com a área rolável */
.articles-carousel { padding: 0 56px; }

/* Responsividade para o carrossel */
@media (max-width: 992px) {
    .carousel-track .article-card { flex-basis: calc((100% - 30px) / 2); }
}
@media (max-width: 600px) {
    .carousel-track .article-card { flex-basis: 100%; }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-card:hover .article-link {
    cursor: pointer;
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Banner Promocional */
.promo-banner {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    padding: 50px 0;
    color: white;
}

.promo-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.promo-image img {
    height: 120px;
    width: auto;
}

.promo-text h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.promo-action {
    text-align: right;
}

.promo-price {
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.price-label {
    font-size: 24px;
    line-height: 1;
    color: white;
    margin-bottom: 10px;
}

.price-value {
    display: flex;
    align-items: flex-start;
}

.currency-symbol {
    font-size: 28px;
    margin-top: 18px;
    margin-right: 2px;
    color: white;
}

.main-price {
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
    color: white;
}

.cents {
    font-size: 28px;
    margin-top: 60px;
    color: white;
}

.promo-btn {
    background: white;
    color: #6f42c1;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1;
}

.promo-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Estilos para a Página Individual do Artigo */
.article-header {
    padding: 40px 0;
    background: #fff;
}

.article-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.article-audio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    flex: 0 0 auto;
}

.article-audio span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.article-audio .audio-player {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-audio .audio-player .play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.article-audio .audio-player .play-btn:hover {
    background: #081a3a;
}

.article-audio .audio-player .progress-bar {
    flex: 0 0 auto;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 120px;
}

.article-audio .audio-player .progress-container {
    position: relative;
    flex: 0 0 auto;
    width: 120px;
}

.article-audio .audio-player .progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.article-audio .audio-player .progress-fill {
    width: 30%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 4px;
    transition: width 0.1s ease;
}

.article-audio .audio-player .time-display {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    font-weight: 500;
    width: 60px;
    text-align: center;
}

.article-audio .audio-player .fa-volume-up {
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.article-audio .audio-player .fa-volume-up:hover {
    color: var(--primary-blue);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.volume-control i {
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.volume-control i:hover {
    color: var(--primary-blue);
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.article-back .back-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.article-back .back-link:hover {
    color: var(--primary-blue);
}

.article-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.article-author {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.social-sharing {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.article-divider {
    border: none;
    height: 1px;
    background: #e9ecef;
    margin: 0;
}

/* Conteúdo do Artigo */
.article-content {
    padding: 60px 0;
    background: #fff;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

.article-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.article-section p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-box i {
    color: #856404;
    font-size: 1.2rem;
    margin-top: 2px;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.comparison-list i {
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-hero-left {
        order: 2;
    }
    
    .blog-hero-center {
        order: 1;
    }
    
    .main-article-title {
        font-size: 1.6rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    

    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .promo-action {
        text-align: center;
    }
    
    .article-header-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .article-audio {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .article-audio .audio-player {
        width: 100%;
        padding: 15px;
    }
    
    .article-audio .audio-player {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .article-audio .audio-player .progress-bar {
        width: 100px;
        flex: 0 0 auto;
    }
    
    .article-audio .audio-player .progress-container {
        width: 100px;
    }
    
    .article-audio .audio-player .time-display {
        width: 55px;
        font-size: 11px;
    }
    
    .article-audio .audio-player .volume-control {
        gap: 5px;
    }
    
    .article-audio .audio-player .volume-slider {
        width: 50px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .social-sharing {
        justify-content: center;
        width: 100%;
    }
    
    .social-sharing .share-btn {
        width: 35px;
        height: 35px;
    }
    
    .social-sharing .share-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-container {
        flex-direction: column;
    }
    
    .search-btn {
        border-radius: 25px;
    }
    
    .main-article-title {
        font-size: 1.4rem;
    }
    
    .article-title {
        font-size: 1.4rem;
    }
    
    .article-audio .audio-player {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
    }
    
    .article-audio .audio-player .play-btn {
        width: 45px;
        height: 45px;
    }
    
    .article-audio .audio-player .progress-bar {
        width: 80px;
        order: 3;
        flex: 0 0 auto;
        margin-top: 10px;
    }
    
    .article-audio .audio-player .progress-container {
        width: 80px;
        order: 3;
        margin-top: 10px;
    }
    
    .article-audio .audio-player .volume-control {
        order: 4;
        margin-top: 10px;
    }
    
    .article-audio .audio-player .volume-slider {
        width: 40px;
    }
    
    .social-sharing {
        gap: 10px;
    }
    
    .social-sharing .share-btn {
        width: 32px;
        height: 32px;
    }
    
    .social-sharing .share-btn i {
        font-size: 13px;
    }
    
    .promo-text h3 {
        font-size: 1.5rem;
    }
}

/* Estilos para os botões de compartilhamento social */
.social-sharing {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.social-sharing .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.social-sharing .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-sharing .share-btn.comment:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.social-sharing .share-btn.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-sharing .share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-sharing .share-btn.bookmark:hover {
    background: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.social-sharing .share-btn.email:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.social-sharing .share-btn.more:hover {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.social-sharing .share-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-sharing .share-btn:hover i {
    transform: scale(1.1);
}

/* Estilos responsivos para o player de áudio principal */
@media (max-width: 768px) {
    .audio-player {
        padding: 15px;
    }
    
    .player-controls {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .progress-container {
        min-width: 120px;
    }
    
    .time-display {
        min-width: 70px;
        font-size: 11px;
    }
    
    .volume-control {
        gap: 5px;
    }
    
    .volume-slider {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .audio-player {
        padding: 12px;
    }
    
    .player-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .play-btn {
        align-self: center;
        width: 45px;
        height: 45px;
    }
    
    .progress-container {
        width: 100%;
        order: 2;
    }
    
    .time-display {
        order: 3;
        text-align: center;
        min-width: auto;
    }
    
    .volume-control {
        order: 4;
        justify-content: center;
        gap: 8px;
    }
    
    .volume-slider {
        width: 60px;
    }
}
