/* SULTANPLAY Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* Card Game Styles */
.card-game {
    background: #2d2d3a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-daftar {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-daftar:hover {
    background: linear-gradient(135deg, #ee5a5a, #dd4a4a);
    color: white;
}

.btn-login {
    background: linear-gradient(135deg, #4ecdc4, #44b3a8);
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #44b3a8, #3a9e94);
    color: white;
}

/* Progress Bar */
.progress {
    background-color: #3a3a4a;
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* Footer Menu */
.footer-menu {
    background: #0f0f1a;
    border-top: 1px solid #333;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.menu-item {
    font-size: 11px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.menu-item:hover {
    color: #ffd966;
    text-decoration: none;
}

/* RTP Value */
.rtp-value {
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #764ba2;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .rtp-value {
        font-size: 12px;
    }
    .menu-item i {
        font-size: 18px;
    }
    .menu-item span {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .card-game img {
        height: 100px !important;
    }
}

/* Web Logo */
.web-logo {
    max-width: 200px;
    height: auto;
}
