* {
	font-family: sans-serif;
	box-sizing: border-box;
}

p {
	margin: 0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #0a0a0a url(https://nerakatoto.com/assets/img/dvv/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ini menjaga gambar background body tetap di tempatnya saat scroll */
    background-position: center center;
    background-size: cover;
    background-color: black;
    /* position: relative; dan z-index: 1; tidak lagi mutlak diperlukan pada body untuk solusi ini, */
    /* tapi tidak ada salahnya membiarkannya. */
}

/* --- Untuk menerapkan kursor kustom ke seluruh halaman (body) --- */
body {
    cursor: url('../Kagura.ani') 16 16, auto;
    /* Ganti 'path/to/your-custom-cursor.png' dengan URL atau path relatif ke gambar kursor Anda. */
    /* '16 16' adalah koordinat hotspot (X Y) dari kursor, sesuaikan jika diperlukan. */
    /* 'auto' adalah kursor fallback jika gambar kustom gagal dimuat. */
}

/* --- Contoh untuk menerapkan kursor kustom ke elemen tertentu saja --- */
.my-custom-element {
    /* Misalnya, Anda punya div dengan class="my-custom-element" */
    cursor: url('../Kagura.ani') 0 0, pointer;
    /* Sesuaikan path gambar, hotspot (di sini 0 0), dan fallback (di sini pointer). */
}

/* Contoh untuk elemen link (a) */
a {
    cursor: url('../Kagura.ani') 8 8, pointer;
}

body::before {
    content: '';
    position: fixed; /* UBAH DARI 'absolute' MENJADI 'fixed' */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Sekarang height 100% dari viewport */
    background-color: rgba(0, 0, 0, 0.39);
    z-index: -1; /* Tetap penting agar layer berada di bawah konten */
}

a:hover {
	text-decoration: none;
	color: white;
}

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.adv {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

img {
	vertical-align: middle;
	border-style: none;
}

.title {
	display: flex;
	justify-content: center;
}

.title-text {
	color: white;
	font-size: 2.5rem;
}

.slot {
	display: block;
}

.slot .slot-sidebar {
	padding-right: 10px;
	padding-left: 0;
	margin-top: 5px;
	background-color: black;
	float: none !important;
	width: 100% !important;
	flex: none !important;
	max-width: 100% !important;
	padding-right: 0 !important;
}

.btn-provider:hover {
	background-color: #644c1c;
}

.slot-sidebar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: nowrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.slot-sidebar-nav > li {
	border-bottom: 1px solid #0092b1;
	width: 100%;
	position: relative;
	display: block;
	border-bottom: none;
	padding: 6px;
	background: linear-gradient(to bottom, #242424 0%, #515151 46%, #242424 100%);
}

.slot-sidebar-nav > li > a {
	color: #fff;
	font-size: 13px;
	padding: 7px 10px;
	display: block;
	background-color: black;
}

.btn-provider {
	text-align: center;
	display: block;
}

.enter {
	display: none;
}

.btn-provider span {
	position: unset;
}

.active {
	background-color: #0092b1;
}

.slot .content {
	float: none;
	width: 100%;
	padding: 0;
	flex: 0 0 100%;
	max-width: 100%;
	background-color: #121212;
}

.wrapper {
	width: 100%;
	padding: 0;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.card {
	float: left;
	width: 20%;
	background: transparent;
	border: none;
	text-align: center;
	position: relative;
}

.card-content {
	margin: 5px;
	color: #fff;
	font-size: 12px;
	border: none;
	overflow: hidden;
	position: relative;
}

.jamgacor {
	background-image: linear-gradient(#00ec00, #00b40e);
	font-family: "Poppins", sans-serif !important;
	padding: 3px;
	padding-top: 6px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	border: 0.1px solid black;
}

.jamgacor h5 {
	font-size: 1.3em;
}

.progress {
	height: fit-content;
}

.pola {
	background-image: linear-gradient(#003dfd, #0177cc);
	font-family: "Poppins", sans-serif !important;
	padding: 3px;
	padding-top: 6px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	border: 0.1px solid black;
}

.jam {
	margin-bottom: 7px;
	padding: 8px;
	color: #000;
	font-weight: bold;
}

.jam h5 {
	font-size: 1.3em;
	font-weight: bold;
}
.percent {
	height: 27px;
	display: flex;
	overflow: hidden;
	line-height: 0;
	font-size: 0.75rem;
	background-color: #e9ecef;
	/* border-radius: .25rem; */
	position: relative;
	z-index: 1;
	border-radius: 18px;
	width: 90%;
	margin: 0 auto;
}

.percent p {
	z-index: 15;
	position: absolute;
	text-align: center;
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	transform: translateY(14px);
	color: black;
}

.percent-bar {
	/* background-color: #ffc107; */
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-size: 1rem 1rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	/* background-color: #007bff; */
	transition: width 0.6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	/* animation: ; */
	z-index: 10;
}

.yellow {
	background-color: #ffc107;
}

.green {
	background-color: #28a745;
}

.red {
	background-color: #dc3545;
}

.jamBg {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	transition: width 0.6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	background-size: 1rem 1rem;
}

.hover-btn {
	position: absolute;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.9);
	transition: all 0.1s ease-in-out;
	z-index: 10;
	width: 100%;
	height: 50%;
}

.maintenance {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
	width: 100%;
	height: 100%;
	color: white;
	text-align: center;
	margin: -6px;
}

.maintenance p {
	position: relative;
	top: 40%;
	font-size: 13px;
}

.play-btn {
	font-size: 15px;
	text-decoration: none;
	color: white;
	text-align: center;
	align-items: center;
	/* width: 100%; */
	margin-top: 42%;
	padding: 8px;
	display: block;
	margin-left: 30px;
	margin-right: 30px;
	margin: 42% 30px 42% 30px;
	background: linear-gradient(to bottom, #fff095 0%, #b88416 88%);
	color: #000;
	border-radius: 18px;
	transition: all 0.3s ease;
}

.play-btn:hover {
	background: linear-gradient(to top, #fff095 0%, #b88416 88%);
}

.img-zoom {
	transition: all 0.45s ease-in-out;
}

.ygg-img {
	border: 5px solid #2f2f2f;
}

.hover-btn:hover {
	opacity: 100%;
}

.hover-btn:hover ~ .img-zoom {
	/* transform: scale(1.2); */
	position: relative;
}

.short {
	display: none;
}
.next-btn {
	/* display: none; */
	background: linear-gradient(to bottom, #242424 0%, #515151 46%, #242424 100%);
	width: 15%;
}

.mySlides {
	display: none;
}

.next-btn {
	background-color: #292a2b;
	border: none;
	color: #fff;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (max-width: 992px) {
	.slot-sidebar-nav {
		flex-wrap: nowrap;
	}
	.slot-sidebar {
		float: none !important;
		width: 100% !important;
		flex: none !important;
		max-width: 100% !important;
		padding-right: 0 !important;
	}
	.content {
		float: none !important;
		width: 100% !important;
		flex: none !important;
		max-width: 100% !important;
	}
	.card {
		width: 50% !important;
	}
	.hover-btn {
		display: none;
	}
	.hover-btn:hover ~ .img-zoom {
		transform: scale(1);
		position: relative;
	}
	.btn-provider {
		text-align: center;
		display: block;
	}
	.enter {
		display: block;
	}
	.btn-provider span {
		position: unset;
	}
	.btn-provider i {
		margin: 0;
	}
	.slot-sidebar-nav li {
		border-bottom: none;
	}
	.slot-sidebar-nav li a p {
		font-size: 5px;
	}
	.img-zoom {
		height: auto;
	}
	.slot-sidebar-nav li a img {
		height: 17.5px !important;
	}
	.maintenance p {
		font-size: 5px;
	}
	.jamgacor > h5 {
		font-size: 1em;
	}
	.pola > p {
		font-size: 0.8em;
	}
}

@media (max-width: 576px) {
	.pola > p {
		font-size: 0.75em !important;
	}
}
 /* Container untuk marquee */
        .marquee-container {
            width: 100%; /* Lebar container */
            background-color: #000000;
            border: 1px solid #000000;
            padding: 10px;
            white-space: nowrap; /* Mencegah teks turun baris */
            overflow: hidden; /* Penting untuk efek scrolling */
            box-sizing: border-box; /* Memastikan padding tidak menambah lebar */
        }

        /* Konten yang akan digulirkan */
        .marquee-content {
            display: inline-block; /* Agar teks bisa digulirkan horizontal */
            padding-left: 100%; /* Memulai teks dari luar layar kanan */
            animation: marquee 15s linear infinite; /* Nama animasi, durasi, kecepatan, ulangi terus */
        }

        /* Mendefinisikan animasi gulir */
        @keyframes marquee {
            0% { transform: translateX(0); } /* Posisi awal (paling kanan) */
            100% { transform: translateX(-100%); } /* Posisi akhir (gulir ke kiri hingga konten hilang) */
        }

        /* Opsional: Hover untuk menghentikan guliran */
        .marquee-container:hover .marquee-content {
            animation-play-state: paused;
        }

        /* --- Contoh Marquee Vertikal --- */
        .marquee-container-vertical {
            width: 300px;
            height: 100px; /* Tinggi container harus ditentukan */
            background-color: #e0f7fa;
            border: 1px solid #b2ebf2;
            padding: 10px;
            overflow: hidden;
            box-sizing: border-box;
            margin-top: 20px;
        }
/* Konten yang akan digulirkan */
.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    /* --- UBAH WARNA TEKS DI SINI --- */
    color: #ffffff; /* Contoh: putih */
    /* Atau gunakan nama warna: color: blue; */
    /* Atau nilai RGB: color: rgb(0, 128, 0); */
    /* Atau nilai RGBA (dengan transparansi): color: rgba(0, 0, 255, 0.8); */
}
        .marquee-content-vertical {
            display: block; /* Agar setiap baris konten bisa digulirkan vertikal */
            animation: marquee-vertical 10s linear infinite;
        }

        @keyframes marquee-vertical {
            0% { transform: translateY(0%); } /* Posisi awal (paling atas) */
            100% { transform: translateY(-100%); } /* Gulir ke atas hingga konten hilang */
        }

        .marquee-container-vertical:hover .marquee-content-vertical {
            animation-play-state: paused;
        }