/**
 * okebet9 com login - Theme Stylesheet
 * Color palette: #9966CC | #32CD32 | #90EE90 | #4169E1 | #2C3E50
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --v536-primary: #9966CC;
    --v536-secondary: #32CD32;
    --v536-accent: #90EE90;
    --v536-highlight: #4169E1;
    --v536-dark: #2C3E50;
    --v536-bg: #1a1a2e;
    --v536-bg-light: #16213e;
    --v536-text: #ffffff;
    --v536-text-muted: #b8c5d6;
    --v536-border: #2a3f5f;
    --v536-gradient: linear-gradient(135deg, #9966CC 0%, #4169E1 100%);
    --v536-success: #32CD32;
    --v536-warning: #FFD700;
    --v536-danger: #FF6B6B;
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v536-bg);
    color: var(--v536-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    color: var(--v536-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--v536-primary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.v536-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.v536-wrapper {
    width: 100%;
    padding: 1rem 0;
}

/* Header Styles */
.v536-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--v536-dark) 0%, var(--v536-bg) 100%);
    border-bottom: 1px solid var(--v536-border);
    z-index: 1000;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.v536-header-scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.v536-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.v536-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.v536-logo img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.v536-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--v536-text);
    background: var(--v536-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v536-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.v536-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 36px;
}

.v536-btn-primary {
    background: var(--v536-gradient);
    color: var(--v536-text);
}

.v536-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 102, 204, 0.4);
}

.v536-btn-secondary {
    background: transparent;
    border: 1px solid var(--v536-primary);
    color: var(--v536-primary);
}

.v536-btn-secondary:hover {
    background: var(--v536-primary);
    color: var(--v536-text);
}

.v536-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.v536-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--v536-text);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.v536-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v536-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 1.5rem;
    overflow-y: auto;
}

.v536-menu-active {
    right: 0;
}

.v536-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.v536-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v536-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--v536-border);
}

.v536-menu-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v536-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--v536-text);
    font-size: 1.6rem;
}

.v536-nav-list {
    list-style: none;
}

.v536-nav-item {
    margin-bottom: 0.5rem;
}

.v536-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    color: var(--v536-text-muted);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.v536-nav-link:hover {
    background: var(--v536-border);
    color: var(--v536-text);
}

.v536-nav-link i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.v536-main {
    padding-top: 60px;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .v536-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.v536-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 1rem 0;
}

.v536-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.v536-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.v536-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.v536-slide-active {
    opacity: 1;
}

.v536-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.v536-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v536-indicator-active {
    background: var(--v536-primary);
    width: 20px;
    border-radius: 4px;
}

/* Section Styles */
.v536-section {
    padding: 1.5rem 0;
}

.v536-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v536-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.v536-section-title i {
    color: var(--v536-primary);
}

/* Game Grid */
.v536-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.v536-game-card {
    background: var(--v536-bg-light);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--v536-border);
}

.v536-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--v536-primary);
    box-shadow: 0 4px 12px rgba(153, 102, 204, 0.3);
}

.v536-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.v536-game-name {
    font-size: 1rem;
    color: var(--v536-text);
    text-align: center;
    padding: 0.5rem 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Section */
.v536-category-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--v536-bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--v536-primary);
}

.v536-category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v536-primary);
}

.v536-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--v536-text);
}

/* Content Box */
.v536-content-box {
    background: var(--v536-bg-light);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: 1px solid var(--v536-border);
}

.v536-content-box h2 {
    font-size: 1.6rem;
    color: var(--v536-primary);
    margin-bottom: 0.8rem;
}

.v536-content-box h3 {
    font-size: 1.4rem;
    color: var(--v536-accent);
    margin-bottom: 0.6rem;
}

.v536-content-box p {
    color: var(--v536-text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.v536-content-box ul {
    list-style: none;
    margin-left: 1rem;
}

.v536-content-box li {
    color: var(--v536-text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.v536-content-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--v536-primary);
    border-radius: 50%;
}

/* Promo Link */
.v536-promo-link {
    color: var(--v536-accent);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v536-promo-link:hover {
    color: var(--v536-primary);
    text-decoration: underline;
}

.v536-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--v536-gradient);
    color: var(--v536-text);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.3rem;
}

.v536-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(153, 102, 204, 0.5);
}

/* Footer */
.v536-footer {
    background: var(--v536-dark);
    padding: 2rem 1rem;
    border-top: 1px solid var(--v536-border);
}

.v536-footer-section {
    margin-bottom: 1.5rem;
}

.v536-footer-title {
    font-size: 1.4rem;
    color: var(--v536-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.v536-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.v536-footer-link {
    color: var(--v536-text-muted);
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    background: var(--v536-bg-light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.v536-footer-link:hover {
    color: var(--v536-text);
    background: var(--v536-border);
}

.v536-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 1rem 0;
}

.v536-partner {
    width: 40px;
    height: 24px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.v536-partner:hover {
    opacity: 1;
}

.v536-copyright {
    text-align: center;
    color: var(--v536-text-muted);
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--v536-border);
}

/* Mobile Bottom Navigation */
.v536-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--v536-dark) 0%, var(--v536-bg) 100%);
    border-top: 1px solid var(--v536-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .v536-bottom-nav {
        display: none;
    }
}

.v536-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    color: var(--v536-text-muted);
}

.v536-nav-btn:hover,
.v536-nav-btn-active {
    color: var(--v536-primary);
}

.v536-nav-btn:active {
    transform: scale(0.95);
}

.v536-nav-btn i {
    font-size: 22px;
    margin-bottom: 2px;
}

.v536-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Promo CTA Banner */
.v536-cta-banner {
    background: var(--v536-gradient);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.v536-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--v536-text);
    margin-bottom: 0.5rem;
}

.v536-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* RTP Display */
.v536-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.v536-rtp-item {
    background: var(--v536-bg-light);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--v536-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v536-rtp-item:hover {
    border-color: var(--v536-primary);
}

.v536-rtp-name {
    font-size: 1.1rem;
    color: var(--v536-text);
    margin-bottom: 0.4rem;
}

.v536-rtp-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--v536-success);
}

/* FAQ Section */
.v536-faq-item {
    background: var(--v536-bg-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--v536-border);
}

.v536-faq-question {
    padding: 1rem;
    font-weight: 600;
    color: var(--v536-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v536-faq-question i {
    color: var(--v536-primary);
}

.v536-faq-answer {
    padding: 0 1rem 1rem;
    color: var(--v536-text-muted);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Features List */
.v536-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.v536-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--v536-bg-light);
    border-radius: 8px;
    border: 1px solid var(--v536-border);
}

.v536-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--v536-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v536-text);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.v536-feature-text h4 {
    font-size: 1.3rem;
    color: var(--v536-text);
    margin-bottom: 0.3rem;
}

.v536-feature-text p {
    font-size: 1.1rem;
    color: var(--v536-text-muted);
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .v536-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v536-rtp-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .v536-container {
        max-width: 768px;
    }

    .v536-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
