/*
Theme Name: SlotKaki Clone
Theme URI: https://example.com
Author: Custom Theme
Author URI: https://example.com
Description: A demo clone of SlotKaki website for browsing purposes only. Login and signup redirect to the original site.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slotkaki-clone
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
}

/* Header */
header.site-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #1a1a2e;
}

.btn-signup {
    background: linear-gradient(45deg, #ffd700, #ff6b00);
    color: #000;
}

.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Navigation */
nav.main-navigation {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

nav.main-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

nav.main-navigation a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

nav.main-navigation a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

nav.main-navigation a.live-badge {
    background: linear-gradient(45deg, #ff0080, #ff6b00);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Banner Slider */
.banner-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 100%;
    padding: 0 0.5rem;
}

.banner-slide img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.banner-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

/* Games Section */
.games-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    color: #ffd700;
}

.view-all {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s;
}

.view-all:hover {
    transform: translateX(5px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.game-card::before {
    content: 'TOP';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0080;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.game-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #2a2a3e, #3a3a5e);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.game-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.game-provider {
    font-size: 0.85rem;
    color: #aaa;
}

/* Promotions */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.promo-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #ff6b00, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
}

.promo-content {
    padding: 1rem;
}

.promo-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Payment Methods */
.payment-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.payment-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

/* Footer */
footer.site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Demo Notice */
.demo-notice {
    background: linear-gradient(45deg, #ff0080, #ff6b00);
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    header.site-header {
        flex-direction: column;
        gap: 1rem;
    }

    nav.main-navigation {
        font-size: 0.9rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
