<?php get_header('single'); ?>

<style>
    body {
        margin: 0 !important;
    }

    .pages-single {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        color: #f4f4f4;
    }

    .pages-single h1 {}

    .iframe_grid {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .player-container {
        height: calc(100vh - 35px);
    }

    .player-button {
        padding: 8px 12px;
        background: #000;
        border: none;
        color: #fff;
        letter-spacing: 0.1rem;
    }

    .player-button.active {
        background: rgb(78 78 78);
    }
</style>

<section id="pages" class="pages pages-single">
    <div class="pages-single-alert">
        <h1>Player carregando...</h1>
        <p>Aguarde alguns instantes, caso nao carregue troque o player.</p>
    </div>
    <div class="iframe_grid">
        <div class="btn-container">
            <button id="player1Button" class="player-button active" onclick="showPlayer('player1')">Player 1</button>
            <button id="player2Button" class="player-button" onclick="showPlayer('player2')">Player 2</button>
            <button id="player3Button" class="player-button" onclick="showPlayer('player3')">Player 3</button>
        </div>
        <div id="player" class="player-container">
            <!-- O iframe será inserido aqui -->
        </div>
    </div>

</section>

<?php
get_footer();
?>