/*
Theme Name: Irvin Berita Video
Theme URI: https://example.com/irvin-berita-video
Author: Irivn Razad Aminuddin
Author URI: https://example.com
Description: Tema WordPress portal berita video modern yang terinspirasi dari layout & identitas visual portal TV nasional, lengkap dengan fitur integrasi pemutar video YouTube di halaman single post, slider berita pilihan, banner iklan sidebar, dan tag populer.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: irvin-berita-video
Tags: news, tv, video, responsive, red, deep-blue, modern
*/

/* Reset & Utilitas Global */
body {
font-family: 'Poppins', sans-serif !important;
background-color: #f8fafc;
}

/* Mengatur kustom logo WordPress agar fit dengan header */
.logo-container img {
max-height: 55px;
width: auto;
object-fit: contain;
}

/* Pulsating Effect untuk Tombol LIVE TV & Live Streaming Indicator */
@keyframes pulse-red {
0% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(225, 26, 34, 0.7);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 6px rgba(225, 26, 34, 0);
}
100% {
transform: scale(0.95);
box-shadow: 0 0 0 0 rgba(225, 26, 34, 0);
}
}

.pulse-dot {
animation: pulse-red 2s infinite;
}

/* Custom scrollbar untuk widget daftar berita */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
background: #f1f5f9;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}

/* Transisi Halus Tambahan */
a, button {
transition: all 0.2s ease-in-out;
}

/* Pembatas Konten dan WP Core Alignment */
.aligncenter {
display: block;
margin: 1.5rem auto;
}
.alignleft {
float: left;
margin: 0 1.5rem 1.5rem 0;
}
.alignright {
float: right;
margin: 0 0 1.5rem 1.5rem;
}