@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Syne:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Darker+Grotesque:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F4F4F0;
    color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 20px; 
}

.container-principal {
    background-color: #FFFFFF;
    border: 4px solid #000000;
    max-width: 480px;
    width: 100%;
    padding: 30px;
    box-shadow: 10px 10px 0px #000000;
    position: relative;
    overflow: hidden;
}

.nota {
    position: absolute;
    top: 15px;
    right: -15px;
    background-color: #FFDE4D;
    color: #000000;
    font-weight: 700;
    padding: 6px 30px;
    border: 3px solid #000000;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header1 {
    font-family: 'Syne', sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #E60000;
}

.header2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #01143b;
    margin-bottom: 25px;
}

.texto-inicio {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 400;
}

.texto-inicio strong {
    background-color: #FFDE4D;
    padding: 0 4px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.info-row {
    border-bottom: 4px solid #000000;
}

.info-row:first-child {
    border-top: 4px solid #000000;
}

.titulo {
    background-color: #002060;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px;
    width: 35%;
    border-right: 4px solid #000000;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.informacao {
    background-color: #FFFFFF;
    padding: 12px;
    font-weight: 700;
    font-size: 1rem;
}

.botao-confirmar {
    display: block;
    width: 100%;
    background-color: #E60000;
    color: #FFFFFF;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    border: 4px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    transition: all 0.15s ease;
    cursor: pointer;
}

.botao-confirmar:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000000;
}

.botao-confirmar:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px #000000;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #555555;
}

.bandeiras {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 480px;
    width: 100%;
}

.bandeira {
    width: 90px;
    height: 60px;
    border: 3px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    overflow: hidden;
    background-color: #FFFFFF;
}

.vs-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #000000;
}

.music-player {
    background-color: #FFFFFF;
    border: 4px solid #000000;
    max-width: 480px;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 6px 6px 0px #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.player-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.track-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    color: #01143b;
    white-space: nowrap;
}

.artist-name {
    font-size: 0.8rem;
    color: #555555;
    font-weight: 700;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn {
    background-color: #FFDE4D;
    border: 3px solid #000000;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.1s ease;
}

.play-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000000;
}

.play-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px #000000;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #000000;
    margin-left: 4px;
}

.pause-icon {
    display: none;
    width: 14px;
    height: 16px;
    border-left: 5px solid #000000;
    border-right: 5px solid #000000;
}

.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: block;
}

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        
        .modal-overlay.mostrar {
            opacity: 1;
            pointer-events: auto;
        }
        
        .transmissao-container {
            background-color: #FFFFFF;
            border: 4px solid #000000;
            padding: 30px;
            max-width: 320px;
            width: 90%;
            text-align: center;
            box-shadow: 10px 10px 0px #000000;
           
            transform: scale(0.5);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal-overlay.mostrar .transmissao-container {
            transform: scale(1);
        }

        .transmissao-label {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: block;
            color: #000000;
        }

        .cazetv-link {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FFDE4D;
            border: 4px solid #000000;
            padding: 15px;
            box-shadow: 5px 5px 0px #000000;
            text-decoration: none;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            margin-bottom: 15px;
        }

        .cazetv-logo {
            width: 100%;
            height: auto;
            display: block;
        }

        .cazetv-link:hover {
            transform: translate(2px, 2px);
            box-shadow: 3px 3px 0px #000000;
        }

        .cazetv-link:active {
            transform: translate(5px, 5px);
            box-shadow: 0px 0px 0px #000000;
        }

        .btn-fechar-modal {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            background: none;
            border: none;
            color: #555555;
            cursor: pointer;
            text-decoration: underline;
        }
        
        .btn-fechar-modal:hover {
            color: #000000;
        }