a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Color Scheme - Sky Blue & Yellow */
.color-1 {
    background: url(https://i.postimg.cc/jSDQkv3y/bgkaskus.jpg) no-repeat center center;
    background-size: 100% auto;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
}

.color-2 {
    background: url(https://i.postimg.cc/K8dgHfBP/image.png) no-repeat center center;
    background-size: cover;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.color-3 {
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
}

.color-4 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.color-5 {
    background: linear-gradient(135deg, #87CEEB 0%, #FFD700 100%);
}

.color-6 {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
}

.text-justify {
    text-align: justify;
}

.web-logo {
    width: 100%;
    max-width: 150px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.web-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.card-game {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

i.icon {
    color: #FFD700;
    font-size: 20px;
    line-height: 1;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.bi-person-plus-fill {
    margin-right: 0.5rem;
}

.btn-regis {
    font-size: .875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-regis:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.mr-n1 {
    margin-right: -1rem;
}

.btn-slide {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
}

.list-group-item .provider-thumbnail {
    display: block;
    margin: 0;
    width: 2rem;
    height: 2rem;
}

.list-group-item span {
    margin-left: .5rem;
    font-weight: 700;
}

.list-group-item {
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
    background: linear-gradient(145deg, rgba(70, 130, 180, 0.4), rgba(30, 60, 114, 0.6));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    box-shadow:
        8px 8px 20px rgba(0, 0, 0, 0.4),
        -3px -3px 10px rgba(135, 206, 235, 0.3),
        inset 3px 3px 6px rgba(255, 255, 255, 0.1),
        inset -2px -2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid rgba(135, 206, 235, 0.4);
}

.list-group-item::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(145deg, rgba(135, 206, 235, 0.2), rgba(255, 215, 0, 0.08));
    border-radius: 10px;
    z-index: -1;
}

.list-group-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #FFA500, #FF8C00);
    transform: scaleY(0) translateX(-10px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    filter: blur(1px);
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    background: linear-gradient(145deg, rgba(135, 206, 235, 0.8), rgba(0, 191, 255, 0.9));
    transform: translateX(20px) translateY(-3px) scale(1.05) rotateY(-5deg) rotateX(3deg);
    box-shadow:
        -20px 20px 40px rgba(0, 0, 0, 0.5),
        -10px 10px 25px rgba(135, 206, 235, 0.7),
        inset 3px 3px 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(135, 206, 235, 0.6);
    border-left: 4px solid #FFD700;
}

.list-group-item-action:hover::after {
    transform: scaleY(1) translateX(0);
    left: -10px;
}

.list-group-item.active a {
    background: linear-gradient(-45deg,
            #FFD700 0%,
            #FFA500 25%,
            #FF8C00 50%,
            #FFA500 75%,
            #FFD700 100%);
    background-size: 400% 400%;
    border: 2px solid rgba(255, 215, 0, 0.8);
    color: #000;
    font-weight: 700;
    box-shadow:
        0 15px 35px rgba(255, 215, 0, 0.7),
        0 8px 20px rgba(255, 165, 0, 0.5),
        inset -3px -3px 8px rgba(255, 140, 0, 0.9),
        inset 3px 3px 8px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 215, 0, 0.8);
    transform: translateZ(50px) scale(1.08) rotateY(-2deg);
    animation: gradientMove 4s ease infinite, pulse3dEnhanced 2.5s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

.list-group-item.active a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 70%);
    animation: shine3d 3s linear infinite;
}

.list-group-item.active a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.3) 0%,
            transparent 50%,
            rgba(255, 140, 0, 0.3) 100%);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Efek Api */
.list-group-item.active {
    position: relative;
}

.list-group-item.active::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 15px;
    height: 40px;
    background: linear-gradient(to top,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 69, 0, 0.8) 30%,
            rgba(255, 140, 0, 0.9) 60%,
            rgba(255, 215, 0, 0.7) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(5px);
    animation: fire1 0.8s ease-in-out infinite alternate;
    z-index: -1;
}

.list-group-item.active::after {
    content: '';
    position: absolute;
    bottom: -35px;
    right: 15%;
    width: 20px;
    height: 35px;
    background: linear-gradient(to top,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 99, 71, 0.7) 30%,
            rgba(255, 165, 0, 0.9) 60%,
            rgba(255, 215, 0, 0.8) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(4px);
    animation: fire2 1s ease-in-out infinite alternate;
    animation-delay: 0.3s;
    z-index: -1;
}

.list-group-item.active {
    overflow: visible;
}

.list-group-item.active::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 15px;
    height: 40px;
    background: linear-gradient(to top,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 69, 0, 0.8) 30%,
            rgba(255, 140, 0, 0.9) 60%,
            rgba(255, 215, 0, 0.7) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(5px);
    animation: fire1 0.8s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
}

/* Api Tambahan */
.list-group-item.active .list-group-item::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 12px;
    height: 30px;
    background: linear-gradient(to top,
            rgba(255, 69, 0, 0) 0%,
            rgba(255, 99, 71, 0.7) 40%,
            rgba(255, 215, 0, 0.8) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(3px);
    animation: fire3 0.6s ease-in-out infinite alternate;
    animation-delay: 0.15s;
}

@keyframes fire1 {
    0% {
        transform: translateY(0) scaleY(1) scaleX(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-5px) scaleY(1.1) scaleX(0.95);
        opacity: 0.9;
    }

    100% {
        transform: translateY(-10px) scaleY(1.2) scaleX(0.9);
        opacity: 0.7;
    }
}

@keyframes fire2 {
    0% {
        transform: translateY(0) scaleY(1) scaleX(1) rotate(-5deg);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-8px) scaleY(1.15) scaleX(0.9) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-15px) scaleY(1.3) scaleX(0.85) rotate(-3deg);
        opacity: 0.6;
    }
}

@keyframes fire3 {
    0% {
        transform: translateY(0) scaleY(1) scaleX(1) rotate(3deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-8px) scaleY(1.2) scaleX(0.9) rotate(-3deg);
        opacity: 0.5;
    }
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse3dEnhanced {

    0%,
    100% {
        transform: translateZ(50px) scale(1.08) rotateY(-2deg);
        box-shadow:
            0 15px 35px rgba(255, 215, 0, 0.7),
            0 8px 20px rgba(255, 165, 0, 0.5),
            inset -3px -3px 8px rgba(255, 140, 0, 0.9),
            inset 3px 3px 8px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 215, 0, 0.8);
    }

    50% {
        transform: translateZ(60px) scale(1.12) rotateY(2deg);
        box-shadow:
            0 20px 50px rgba(255, 215, 0, 0.9),
            0 12px 30px rgba(255, 165, 0, 0.7),
            inset -3px -3px 8px rgba(255, 140, 0, 0.9),
            inset 3px 3px 8px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(255, 215, 0, 1);
    }
}

@keyframes shine3d {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.card.card-game {
    background: none;
    display: block;
    position: relative;
    min-height: 100px;
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
    height: 100%;
}

.card.card-game .game-link {
    display: none;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 33px;
    width: auto;
    height: auto;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.95) 0%, rgba(135, 206, 235, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.card.card-game:hover .game-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.card-game span {
    color: #ffffff;
    text-transform: capitalize;
    width: 85%;
    font-weight: 700;
    text-align: center;
    font-size: .75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.btn-game {
    padding: 6px 15px;
    color: #000;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
}

.btn-game:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.7);
}

.btn-login {
    border-radius: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: scale(1.02);
}

.btn-login small,
.btn-login span {
    animation: blinking 1.5s step-start infinite;
}

.btn-group span {
    font-weight: 700;
}

input#search {
    width: 100%;
    outline: none;
    border-radius: 8px;
    border: 2px solid #87CEEB;
    background: linear-gradient(135deg, #4682B4 0%, #5F9EA0 100%);
    color: #fff;
    font-size: .875rem;
    font-family: inherit;
    padding: 8px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

input#search:focus {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

input#search::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.card-provider {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    flex: 1 1 auto;
    margin: 0 auto;
    box-shadow: none;
    transition: all 0.3s ease;
}

.card-provider:hover {
    transform: scale(1.1);
    box-shadow: none;
}

.card-provider img {
    width: 100%;
}

.card-title {
    text-align: center;
}

.card-deck {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

.game-item {
    height: 0;
    position: relative;
    padding-bottom: 67.44186%;
}

.game-item-img {
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}

.game-item-img:hover {
    transform: scale(1.05);
}

.owl-item {
    text-align: center;
}

.owl-item .active span {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    font-weight: 700;
}

.owl-item span {
    width: 100%;
    font-weight: 500;
    text-align: center;
    font-size: .625rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
    transition: all 0.3s ease;
}

.carousel-game {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-game .col {
    flex: 0 0 0%;
    height: auto;
}

#owl-game {
    flex: 1 0 auto;
    width: 50%;
    margin: 0 auto;
}

.animate-charcter {
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(90deg, #87CEEB 0%, #FFD700 50%, #00BFFF 100%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-size: 20px;
    font-weight: 700;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.card.card-game .card-body .game-link {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.95) 0%, rgba(135, 206, 235, 0.95) 100%);
}

.card.card-game .card-body:hover .game-link {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.percent {
    height: 25px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #4682B4;
    padding: 4px 5px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 -3px 5px #5F9EA0 inset, 0 1px 0px #87CEEB;
    box-shadow: 0 -3px 5px #5F9EA0 inset, 0 1px 0px #87CEEB;
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    transform: translateY(9px);
    color: white;
    text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000;
}

.percent-bar {
    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;
    border-radius: 2px;
    transition: width 0.6s ease;
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    z-index: 10;
}

/* Warna Persentase - Hijau, Kuning, Merah */
.yellow {
    background-color: #FFD700;
}

.green {
    background-color: #0eb700;
}

.red {
    background-color: #b12c55;
}

.shine {
    position: relative;
}

.shine:after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-animation: animate-shine 2s ease-out infinite;
    -moz-animation: animate-shine 2s ease-out infinite;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-close {
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #FFD700;
    transform: scale(1.2) rotate(90deg);
}

.modal .modal-dialog .modal-content {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal .modal-dialog .modal-content .modal-header {
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
    border-bottom: 2px solid #FFD700;
    border-radius: 15px 15px 0 0;
}

.modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 18px;
}

.modal .modal-dialog .modal-content .modal-body p.text-list {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    color: #FFD700;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    line-height: 60px;
    text-shadow:
        3px 3px 0 #FF8C00,
        6px 6px 0 #FF6347,
        9px 9px 0 rgba(255, 99, 71, 0.8),
        12px 12px 0 rgba(255, 99, 71, 0.6),
        15px 15px 25px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(15deg) rotateY(-10deg) translateZ(30px);
    animation: rotate3d 4s ease-in-out infinite;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        0 10px 30px rgba(255, 215, 0, 0.4),
        inset 0 -5px 10px rgba(255, 140, 0, 0.3);
}

.modal .modal-dialog .modal-content .modal-body p.text-list::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 215, 0, 0.3) 50%,
            transparent 60%);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
    border-radius: 14px;
    z-index: -1;
}

@keyframes rotate3d {

    0%,
    100% {
        transform: perspective(500px) rotateX(15deg) rotateY(-10deg) translateZ(30px);
    }

    25% {
        transform: perspective(500px) rotateX(20deg) rotateY(10deg) translateZ(40px);
    }

    50% {
        transform: perspective(500px) rotateX(10deg) rotateY(-15deg) translateZ(35px);
    }

    75% {
        transform: perspective(500px) rotateX(25deg) rotateY(5deg) translateZ(45px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.modal .modal-dialog .modal-content .modal-body h5,
.modal .modal-dialog .modal-content .modal-body p {
    font-size: 14px;
}

.footer-text {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
    border-top: 2px solid #FFD700;
}

@keyframes blinking {
    50% {
        opacity: 0;
    }
}

@-webkit-keyframes animate-shine {
    0% {
        opacity: 0;
        width: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        width: 95%;
    }
}

@-moz-keyframes animate-shine {
    0% {
        opacity: 0;
        width: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        width: 95%;
    }
}

@media (min-width: 576px) {
    .text-xs-left {
        text-align: left;
    }
}

@media (min-width: 993px) {
    .modal .modal-dialog .modal-content {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .modal .modal-dialog .modal-content {
        max-width: 90%;
        margin: 0 auto;
        font-size: 0.875rem;
    }

    .modal .modal-dialog .modal-content .modal-body p.text-list {
        font-size: 30px;
    }

    .modal .modal-dialog .modal-content .modal-body h5,
    .modal .modal-dialog .modal-content .modal-body p {
        font-size: 12px;
    }

    .color-1 {
        background-size: cover !important;
        background-attachment: scroll;
    }

    .list-group-item-action:hover {
        transform: translateX(5px) translateZ(10px);
    }
}