/* MIXED CSS PACK */
/* Template: capayan365.com.ar/app/index.php */
/* Template mtime: 2025-07-26 23:10:25 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
body {
      background: <?php echo $d_color_titulo; ?>;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      height: 100vh;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }

    #playBtn {
      font-size: 4rem;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      border: 4px solid #fff;
      color: #fff;
      background: transparent;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
    }

    #playBtn:hover {
      background: #fff;
      color: <?php echo $d_color_titulo; ?>;
    }

    #offlineMsg {
      display: none;
      margin-top: 1.5rem;
      font-size: 1rem;
      color: #fff;
    }

