/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Oswald&family=Ubuntu:wght@400;500;700&display=swap');

/* General Styles */
html, body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: #fff;
    background: #111;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Header */
.header {
    background: #111111db;
    transition: all .3s ease-in;
    z-index: 11;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    flex-direction: row;
}

.header .logo a {
    padding: 10px 0;
}

.header .logo img {
    width: 200px;
    transition: all .3s ease-in;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* Popular Slot Games */
.popular {
    background-image: url(../images/BG-full.jpg);
    background-size: cover;
}

/* Carousel Styles */
.games .all-games {
    opacity: 0;
    transform: scale(0.99);
    position: relative;
    transition: all 0.3s ease-in;
}

.games .all-games.anim-change {
    opacity: 1;
    transform: scale(1);
}

.games.game-page .all-games {
    margin-bottom: 20px;
    padding: 15px 0;
}

.karusel-wrapper {
    padding: 0 30px;
}

/* Carousel Text */
.karusel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 30px;
}

.popular h3 {
    font-size: 27px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin: 1rem 0;
    text-transform: uppercase;
}

.karusel-items {
    padding: 0 30px;
}

.pop-single-game-wrapper {
    position: relative;
}

/* Slot Area */
.slotarea {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Game Item Styles */
.gameitem {
    text-align: center;
    cursor: pointer;
}

.gameitem>img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.gameitem>img:hover {
    opacity: 0.5;
}

.gameitem>figcaption {
    overflow-wrap: break-word;
    margin-top: 5px;
    font-weight: bold;
}

.pop-gameitem {
    text-align: center;
    cursor: pointer;
}

.pop-gameitem>img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.pop-gameitem>img:hover {
    opacity: 0.5;
}

.pop-gameitem>figcaption {
    overflow-wrap: break-word;
    margin-top: 5px;
    font-weight: bold;
}

/* Percentage Bar Styles */
.percent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) -36%, rgba(255, 255, 255, 1) 0%, rgba(182, 182, 182, 1) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.percent p {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #000;
    margin: 0;
    padding: 3px;
    line-height: 1;
    position: relative;
    z-index: 2;
    border: 1px solid #fff;
}

.percent-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
    animation: progress-bar-stripes 1s linear infinite!important;
    z-index: 1;
    position: absolute;
    top: 0;
    height: 100%;
}

.yellow {
    background-color: #ffcd00;
}

.green {
    background-color: #3fc400;
}

.red {
    background-color: #bb0907;
}

/* Game Menu */
.game-menu {
    border-radius: 7px;
    padding: 5px 30px;
}

.dark-red {
    background: linear-gradient(180deg, #a00000, #550404);
}

/* Navigation Menu */
.owl-carousel,
.owl-carousel .owl-item {
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-mobile .owl-nav {
    font-size: 40px;
    color: #fdb703;
    font-weight: bold;
}

.nav-link {
    padding: 0.5rem 0;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-mobile .owl-prev,
.nav-mobile .owl-next {
    background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile .owl-prev {
    left: -25px;
}

.nav-mobile .owl-next {
    right: -25px;
}

/* Wrapper and Search */
.wrapper {
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.search {
    border: 2px solid #11111;
    border-radius: 10px;
    width: 100%;
    height: 35px;
    padding: 2px 23px 2px 35px;
    outline: 0;
    background-color: #fff;
    color: #fff;
}

.search-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 14px;
}

/* Input Styles */
input[type='text'],
input[type='number'],
textarea {
    font-size: 16px;
    color: #000;
}

/* Time Display */
.time {
    background: #111;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 10px;
}

/* Breadcrumb */
.monster-breadcrumb {
    margin-top: 10px;
}

/* Animation for Percentage Bars */
@keyframes increaseWidth {
    from {
        width: 0;
    }
}

@keyframes increaseWidthGreen {
    from {
        width: 0;
        background-color: #00cc00;
    }
}

@keyframes increaseWidthYellow {
    from {
        width: 0;
        background-color: #ffc107;
    }
}

@keyframes increaseWidthRed {
    from {
        width: 0;
        background-color: #dc3545;
    }
}

.percent-bar {
    transition: width 1s;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Buttons */
.buttons a {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 7px;
    text-align: center;
    width: 100%;
    outline: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 1px 1px #000;
}

.daftar {
    display: inline-block;
    background: linear-gradient(180deg, #a00000 0%, #550404 100%);
}

.masuk {
    display: inline-block;
    background: linear-gradient(180deg, #febc02 0%, #f66e15 100%);
}

.bonus {
    display: inline-block;
    background: linear-gradient(180deg, #8313bd 0%, #48036c 100%);
}

/* Time */
.time {
    background: #111;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 10px;
}

.provider-title {
    color: #fff;
    text-transform: uppercase;
}

/* Parent and Child Elements */
.parent {
    padding: 0;
    text-align: center;
    border-radius: 7px;
}

.child-1 {
    display: inline-block;
    vertical-align: middle;
    width: 30%;
}

.child-2 {
    display: inline-block;
    vertical-align: middle;
    width: 65%;
}

.child-3 {
    display: inline-block;
    padding: 1rem 1rem;
    vertical-align: middle;
}

/* Sticky Elements */
.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 46%);
    height: 50px;
}

.sticky-bottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 46%);
    z-index: 9999;
}

#mySidenav {
    position: fixed;
    top: 180px;
    right: 100px;
    z-index: 999;
}

#mySidenav div#nav {
    position: absolute;
    font-size: 20px;
    border-radius: 0 5px 5px 0;
    left: 36px;
    transition: 0.3s;
    display: flex;
}

#mySidenav div#nav:hover {
    left: -138px;
}

#kontak-title {
    width: 189px;
    margin-bottom: 10px;
    border-radius: 0px 4px 0px 0px;
    padding-top: 22px;
    text-align: center;
    height: 50px;
    line-height: 18px;
    background: #000;
}

#kontak-content {
    width: 190px;
    padding: 0 10px;
    font-size: 15px;
    background-color: #fff;
    color: #000;
}

/* Scroll-to-Top Button */
#scrolltopBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 99;
    font-size: 12px;
    border: none;
    outline: none;
    background-color: #a00000;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

/* Animation for Percentage Bars */
@keyframes increaseWidth {
    from {
        width: 0;
    }
}

@keyframes increaseWidthGreen {
    from {
        width: 0;
        background-color: #00cc00;
    }
}

@keyframes increaseWidthYellow {
    from {
        width: 0;
        background-color: #ffc107;
    }
}

@keyframes increaseWidthRed {
    from {
        width: 0;
        background-color: #dc3545;
    }
}

.percent-bar {
    transition: width 1s;
}

.article {
    padding: 40px;
    text-align: justify;
    border-radius: 10px;
    background: #262425;
    border: 2px solid #4c4a4b;
    margin: 30px 0;
    color: white;
}

.article h1 {
    font-size: calc(1.375rem + 1.5vw);
    text-align: center;
    color: #f2c573;
	margin-bottom:10px;
}

.article h2,h3,h4 {
    font-size: calc(1rem + 1vw);
    text-align: center;
    color: #f2c573;
	margin-bottom:10px;
}

.article a {
    text-decoration: none;
	font-weight:bold;
	color:#f2c573;
}

.article ul {
	list-style-type: disc;
	margin: 10px;
    padding: 10px;
}

.article ol {
	list-style-type: decimal;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 9999;
}

.popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    position: relative;
}

.popup-icon {
    font-size: 40px;
    color: red;
    display: block;
    margin-bottom: 10px;
}

.close-btn {
    background-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.popup {
    position: relative;
}

.close-icon {
    font-size: 20px;
    cursor: pointer;
    color: red;
}

.footer .copyright-area {
    background: #010101;
    text-align: center;
    padding: 15px 0;
    text-align: center;
}

.footer .copyright-area p a {
    color: #f2c573;
    font-weight: bold;
    letter-spacing: 0;
    text-decoration: none;
}
