/**
 * 100Bet Website Styles
 * Website: 100bet.click
 * Language: en-PH
 * Prefix: s569-
 */

/* Variables */
:root {
    --s569-primary: #00bf6a;
    --s569-secondary: #ffd700;
    --s569-dark: #0d1118;
    --s569-light: #ffffff;
    --s569-accent: #ff4757;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--s569-dark);
    color: var(--s569-light);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a { color: var(--s569-light); text-decoration: none; }

/* Header */
.s569-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--s569-dark);
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.s569-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--s569-secondary);
}

.s569-header-buttons {
    display: flex;
    gap: 10px;
}

.s569-btn {
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.s569-btn-login {
    background: transparent;
    border: 2px solid var(--s569-secondary);
    color: var(--s569-secondary);
}

.s569-btn-login:hover {
    background: var(--s569-secondary);
    color: var(--s569-dark);
}

.s569-btn-register {
    background: var(--s569-secondary);
    color: var(--s569-dark);
}

.s569-btn-register:hover {
    opacity: 0.9;
}

.s569-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--s569-light);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.s569-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s569-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 60px 20px 20px;
    overflow-y: auto;
}

.s569-mobile-menu.prob01-active {
    right: 0;
}

.s569-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
}

.s569-menu-overlay.prob01-active {
    display: block;
}

.s569-mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--s569-light);
    font-size: 28px;
    cursor: pointer;
}

.s569-mobile-menu a {
    display: block;
    padding: 12px;
    color: var(--s569-light);
    border-bottom: 1px solid #333;
}

.s569-mobile-menu a:hover {
    color: var(--s569-secondary);
}

/* Carousel */
.s569-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-top: 70px;
}

.s569-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.s569-slide.prob01-active{
    opacity: 1;
}

.s569-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s569-carousel-dots{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.s569-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.s569-dot.prob01-active{
    background: var(--s569-secondary);
}

/* Main */
.s569-main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.s569-section-title {
    text-align: center;
    margin: 40px 0;
}

.s569-section-title h2 {
    color: var(--s569-secondary);
    font-size: 28px;
}

/* Games Grid */
.s569-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.s569-game-card {
    background: var(--s569-dark);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.s569-game-card:hover{
    transform: scale(1.05);
}

.s569-game-image{
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.s569-game-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s569-game-info{
    padding: 10px;
    text-align: center;
}

.s569-game-name{
    font-size: 14px;
    color: var(--s569-light);
}

/* Features */
.s569-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.s569-feature{
    background: var(--s569-dark);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.s569-feature-icon{
    font-size: 40px;
    color: var(--s569-secondary);
    margin-bottom: 15px;
}

.s569-feature h3{
    color: var(--s569-secondary);
    margin: 10px 0;
}

/* Info Section */
.s569-info-section{
    background: var(--s569-dark);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.s569-info-section h3{
    color: var(--s569-secondary);
    margin-bottom: 15px;
}

.s569-info-section p{
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.s569-footer{
    background: var(--s569-dark);
    padding: 40px 20px 100px;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.s569-footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.s569-footer-section h4{
    color: var(--s569-secondary);
    margin-bottom: 15px;
}

.s569-footer-links a{
    display: block;
    color: #ccc;
    padding: 5px 0;
}

.s569-footer-links a:hover{
    color: var(--s569-secondary);
}

/* Bottom Navigation */
.s569-bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--s569-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid #333;
}

.s569-nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ccc;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.s569-nav-item:hover{
    color: var(--s569-secondary);
}

.s569-nav-item i{
    font-size: 20px;
}

.s569-nav-item span{
    font-size: 11px;
    margin-top: 4px;
}

.s569-active{
    color: var(--s569-secondary) !important;
}

/* Back to Top */
.s569-back-to-top{
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--s569-secondary);
    border-radius: 50%;
    border: none;
    color: var(--s569-dark);
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* Categories */
.s569-categories{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.s569-category-btn{
    padding: 8px 20px;
    background: var(--s569-dark);
    border: 1px solid #444;
    border-radius: 20px;
    color: var(--s569-light);
    cursor: pointer;
}

.s569-category-btn:hover,
.s569-category-btn.prob01-active{
    background: var(--s569-primary);
    border-color: var(--s569-secondary);
    color: var(--s569-secondary);
}

/* Partners */
.s569-partners{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 30px 0;
}

.s569-partner-logo{
    background: var(--s569-dark);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.s569-partner-logo img{
    max-width: 60px;
    filter: grayscale(50%);
}

/* Responsive */
@media (max-width: 768px){
    .s569-header-buttons{
        display: none;
    }
    .s569-menu-toggle{
        display: block;
    }
    .s569-bottom-nav{
        display: flex;
    }
    .s569-main{
        padding-bottom: 80px;
    }
}

@media (min-width: 769px){
    .s569-bottom-nav{
        display: none;
    }
    .s569-footer{
        padding-bottom: 40px;
    }
    .s569-games-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px){
    .s569-games-grid{
        grid-template-columns: repeat(5, 1fr);
    }
}
