/**
 * OkeyBet - Theme Stylesheet
 * Website: okeybet.club
 * Prefix: g6db-
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --g6db-primary: #4682B4;
    --g6db-secondary: #87CEFA;
    --g6db-accent: #F0F8FF;
    --g6db-bg-dark: #212F3D;
    --g6db-bg-light: #F0F8FF;
    --g6db-text-light: #F0F8FF;
    --g6db-text-dark: #212F3D;
    --g6db-border: rgba(135, 206, 250, 0.3);
    --g6db-shadow: rgba(0, 0, 0, 0.3);
    --g6db-gradient: linear-gradient(135deg, #4682B4 0%, #212F3D 100%);
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--g6db-text-dark);
    background-color: var(--g6db-bg-light);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.g6db-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.6rem;
}

.g6db-wrapper {
    padding: 2rem 0;
}

/* Header */
.g6db-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--g6db-gradient);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.6rem;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--g6db-shadow);
    transition: all 0.3s ease;
}

.g6db-header-scrolled {
    height: 55px;
    background: var(--g6db-bg-dark);
}

.g6db-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.g6db-logo img {
    height: 32px;
    width: auto;
}

.g6db-logo-text {
    color: var(--g6db-text-light);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.g6db-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.g6db-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
}

.g6db-btn-primary {
    background: #FFD700;
    color: var(--g6db-bg-dark);
}

.g6db-btn-primary:hover {
    background: #FFC000;
    transform: translateY(-2px);
}

.g6db-btn-secondary {
    background: transparent;
    color: var(--g6db-text-light);
    border: 2px solid var(--g6db-secondary);
}

.g6db-btn-secondary:hover {
    background: var(--g6db-secondary);
    color: var(--g6db-bg-dark);
}

.g6db-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--g6db-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

/* Mobile Menu */
.g6db-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g6db-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.g6db-menu-active {
    right: 0;
}

.g6db-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;
}

.g6db-overlay-active {
    opacity: 1;
    visibility: visible;
}

.g6db-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--g6db-border);
}

.g6db-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--g6db-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.g6db-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g6db-menu-nav li {
    margin-bottom: 0.5rem;
}

.g6db-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--g6db-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.g6db-menu-nav a:hover {
    background: rgba(70, 130, 180, 0.3);
    padding-left: 1.5rem;
}

/* Main Content */
main {
    padding-top: 60px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Hero Carousel */
.g6db-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.g6db-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.g6db-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.g6db-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g6db-slide-active {
    opacity: 1;
}

.g6db-carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.g6db-slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g6db-indicator-active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Section Styles */
.g6db-section {
    padding: 2.5rem 1.6rem;
    background: var(--g6db-bg-light);
}

.g6db-section-dark {
    background: var(--g6db-bg-dark);
    color: var(--g6db-text-light);
}

.g6db-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--g6db-bg-dark);
    text-align: center;
}

.g6db-section-dark .g6db-section-title {
    color: var(--g6db-text-light);
}

/* Game Grid */
.g6db-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.g6db-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.g6db-game-item:hover {
    transform: translateY(-3px);
}

.g6db-game-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px var(--g6db-shadow);
}

.g6db-game-name {
    font-size: 1.1rem;
    color: var(--g6db-text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.g6db-section-dark .g6db-game-name {
    color: var(--g6db-text-light);
}

/* Category Title */
.g6db-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--g6db-primary);
}

.g6db-category-title i {
    font-size: 2.4rem;
    color: var(--g6db-primary);
}

.g6db-category-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--g6db-bg-dark);
    margin: 0;
}

.g6db-section-dark .g6db-category-title h2 {
    color: var(--g6db-text-light);
}

/* Info Cards */
.g6db-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.g6db-section-dark .g6db-info-card {
    background: rgba(255, 255, 255, 0.1);
}

.g6db-info-card h3 {
    font-size: 1.8rem;
    color: var(--g6db-primary);
    margin-bottom: 1rem;
}

.g6db-info-card p {
    font-size: 1.4rem;
    color: var(--g6db-text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.g6db-section-dark .g6db-info-card p {
    color: var(--g6db-text-light);
}

/* Promo Link */
.g6db-promo-link {
    color: var(--g6db-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.g6db-promo-link:hover {
    color: var(--g6db-secondary);
    text-decoration: underline;
}

/* RTP Stats */
.g6db-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.g6db-rtp-item {
    background: var(--g6db-gradient);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.g6db-rtp-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFD700;
}

.g6db-rtp-label {
    font-size: 1.2rem;
    color: var(--g6db-text-light);
    margin-top: 0.5rem;
}

/* Features List */
.g6db-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g6db-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--g6db-border);
}

.g6db-features-list li:last-child {
    border-bottom: none;
}

.g6db-features-list i {
    font-size: 2rem;
    color: var(--g6db-primary);
    flex-shrink: 0;
}

.g6db-features-list span {
    font-size: 1.4rem;
    color: var(--g6db-text-dark);
    line-height: 1.5;
}

.g6db-section-dark .g6db-features-list span {
    color: var(--g6db-text-light);
}

/* Bottom Navigation */
.g6db-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--g6db-bg-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 15px var(--g6db-shadow);
}

@media (min-width: 769px) {
    .g6db-bottom-nav {
        display: none;
    }
}

.g6db-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    color: var(--g6db-text-light);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.g6db-nav-item:hover,
.g6db-nav-item-active {
    opacity: 1;
    transform: scale(1.1);
}

.g6db-nav-item-active {
    color: #FFD700;
}

.g6db-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.g6db-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Footer */
.g6db-footer {
    background: var(--g6db-bg-dark);
    padding: 3rem 1.6rem 2rem;
    color: var(--g6db-text-light);
}

.g6db-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.g6db-footer-links a {
    color: var(--g6db-secondary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.2s ease;
}

.g6db-footer-links a:hover {
    color: #FFD700;
}

.g6db-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--g6db-border);
    border-bottom: 1px solid var(--g6db-border);
}

.g6db-partners img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.g6db-partners img:hover {
    opacity: 1;
}

.g6db-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 430px) {
    .g6db-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .g6db-game-icon {
        width: 55px;
        height: 55px;
    }

    .g6db-game-name {
        font-size: 1rem;
    }
}

/* Utility Classes */
.g6db-text-center {
    text-align: center;
}

.g6db-mb-1 {
    margin-bottom: 1rem;
}

.g6db-mb-2 {
    margin-bottom: 2rem;
}

.g6db-mt-2 {
    margin-top: 2rem;
}

/* Play Button Component */
.g6db-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    color: var(--g6db-bg-dark);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.g6db-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Achievement Badges */
.g6db-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.g6db-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(70, 130, 180, 0.2);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--g6db-primary);
}

.g6db-badge i {
    font-size: 1.4rem;
}

/* Security Section */
.g6db-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.g6db-security-item {
    padding: 1.5rem 1rem;
}

.g6db-security-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 0.8rem;
}

.g6db-security-item span {
    display: block;
    font-size: 1.2rem;
    color: var(--g6db-text-light);
}
