/**
 * GG77 Gaming Platform - Main Stylesheet
 * File: css/style-b213.css
 * Prefix: v392-
 * Website: gg77.club
 */

/* CSS Variables */
:root {
    --v392-primary: #FF8000;
    --v392-secondary: #80CBC4;
    --v392-bg-dark: #2E4057;
    --v392-bg-light: #F5F5F5;
    --v392-text-dark: #1a1a2e;
    --v392-text-light: #ffffff;
    --v392-accent: #FFD700;
    --v392-gradient-1: linear-gradient(135deg, #2E4057 0%, #1a2533 100%);
    --v392-gradient-2: linear-gradient(135deg, #FF8000 0%, #FF6B00 100%);
    --v392-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --v392-radius: 12px;
    --v392-radius-sm: 8px;
    --v392-transition: all 0.3s ease;
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: var(--v392-bg-dark);
    color: var(--v392-text-light);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.v392-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.6rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.v392-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--v392-gradient-1);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--v392-shadow);
    transition: var(--v392-transition);
}

.v392-header-scrolled {
    background: rgba(46, 64, 87, 0.98);
    padding: 0.8rem 0;
}

.v392-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.6rem;
    max-width: 430px;
    margin: 0 auto;
}

.v392-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.v392-logo img {
    width: 32px;
    height: 32px;
    border-radius: var(--v392-radius-sm);
}

.v392-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v392-primary);
    letter-spacing: 0.5px;
}

.v392-header-btns {
    display: flex;
    gap: 0.8rem;
}

.v392-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: var(--v392-radius-sm);
    cursor: pointer;
    transition: var(--v392-transition);
    text-decoration: none;
    min-height: 36px;
    min-width: 70px;
}

.v392-btn-primary {
    background: var(--v392-gradient-2);
    color: var(--v392-text-light);
}

.v392-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

.v392-btn-secondary {
    background: transparent;
    border: 2px solid var(--v392-secondary);
    color: var(--v392-secondary);
}

.v392-btn-secondary:hover {
    background: var(--v392-secondary);
    color: var(--v392-bg-dark);
}

.v392-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--v392-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.v392-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v392-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    box-sizing: border-box;
    overflow-y: auto;
}

.v392-menu-active {
    right: 0;
}

.v392-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--v392-transition);
}

.v392-overlay-active {
    opacity: 1;
    visibility: visible;
}

.v392-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--v392-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.v392-nav-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.v392-nav-item {
    margin-bottom: 1rem;
}

.v392-nav-link {
    display: block;
    padding: 1.2rem 1.6rem;
    color: var(--v392-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: var(--v392-radius-sm);
    transition: var(--v392-transition);
}

.v392-nav-link:hover,
.v392-nav-active {
    background: var(--v392-primary);
    color: var(--v392-text-light);
}

/* Main Content */
.v392-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .v392-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.v392-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--v392-radius);
    margin: 1.6rem 0;
}

.v392-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.v392-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

.v392-slide-active {
    opacity: 1;
}

.v392-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--v392-radius);
    cursor: pointer;
}

.v392-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.v392-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--v392-transition);
}

.v392-dot-active {
    background: var(--v392-primary);
    transform: scale(1.2);
}

/* Sections */
.v392-section {
    padding: 2rem 0;
}

.v392-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v392-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.v392-section-subtitle {
    font-size: 1.4rem;
    color: var(--v392-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Game Grid */
.v392-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.v392-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius-sm);
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--v392-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v392-game-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 128, 0, 0.15);
    border-color: var(--v392-primary);
}

.v392-game-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--v392-radius-sm);
    margin-bottom: 0.5rem;
}

.v392-game-name {
    font-size: 1rem;
    color: var(--v392-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category Header */
.v392-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--v392-primary);
}

.v392-category-icon {
    font-size: 2rem;
    color: var(--v392-primary);
}

.v392-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v392-text-light);
}

/* Cards */
.v392-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius);
    padding: 1.6rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v392-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v392-primary);
    margin-bottom: 1rem;
}

.v392-card-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Features List */
.v392-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.v392-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius-sm);
}

.v392-feature-icon {
    font-size: 2rem;
    color: var(--v392-secondary);
}

.v392-feature-text {
    font-size: 1.2rem;
    color: var(--v392-text-light);
}

/* Testimonials */
.v392-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v392-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius);
    padding: 1.2rem;
    border-left: 3px solid var(--v392-primary);
}

.v392-testimonial-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.v392-testimonial-author {
    font-size: 1.1rem;
    color: var(--v392-secondary);
}

/* Footer */
.v392-footer {
    background: var(--v392-gradient-1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.v392-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.v392-footer-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.v392-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.v392-footer-link {
    color: var(--v392-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius-sm);
    transition: var(--v392-transition);
}

.v392-footer-link:hover {
    background: var(--v392-primary);
    color: var(--v392-text-light);
}

.v392-footer-partners {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.v392-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--v392-transition);
}

.v392-partner-logo:hover {
    opacity: 1;
}

.v392-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bottom Navigation */
.v392-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2E4057 0%, #1a2533 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 128, 0, 0.3);
}

@media (min-width: 769px) {
    .v392-bottom-nav {
        display: none;
    }
}

.v392-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--v392-transition);
    padding: 0.5rem;
}

.v392-nav-btn:hover,
.v392-nav-btn-active {
    color: var(--v392-primary);
    transform: scale(1.1);
}

.v392-nav-btn-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.v392-nav-btn-text {
    font-size: 10px;
    font-weight: 500;
}

/* Promo Links */
.v392-promo-link {
    color: var(--v392-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--v392-transition);
}

.v392-promo-link:hover {
    color: var(--v392-accent);
    text-decoration: underline;
}

.v392-promo-btn {
    display: inline-block;
    background: var(--v392-gradient-2);
    color: var(--v392-text-light);
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: var(--v392-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--v392-transition);
    text-align: center;
    margin: 1rem 0;
}

.v392-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.5);
}

/* Lists */
.v392-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.v392-list-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v392-list-item:last-child {
    border-bottom: none;
}

.v392-list-icon {
    color: var(--v392-secondary);
    font-size: 1.4rem;
}

/* Badges */
.v392-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
    background: var(--v392-primary);
    color: var(--v392-text-light);
}

.v392-badge-hot {
    background: #ff4757;
}

.v392-badge-new {
    background: #2ed573;
}

/* Text Utilities */
.v392-text-center { text-align: center; }
.v392-text-left { text-align: left; }
.v392-text-right { text-align: right; }
.v392-text-primary { color: var(--v392-primary); }
.v392-text-secondary { color: var(--v392-secondary); }
.v392-text-white { color: var(--v392-text-light); }
.v392-text-muted { color: rgba(255, 255, 255, 0.6); }
.v392-fw-bold { font-weight: 700; }
.v392-mb-1 { margin-bottom: 0.5rem; }
.v392-mb-2 { margin-bottom: 1rem; }
.v392-mb-3 { margin-bottom: 1.5rem; }
.v392-mt-2 { margin-top: 1rem; }
.v392-mt-3 { margin-top: 1.5rem; }

/* Internal Links */
.v392-internal-link {
    color: var(--v392-secondary);
    text-decoration: underline;
    transition: var(--v392-transition);
}

.v392-internal-link:hover {
    color: var(--v392-primary);
}

/* Payment Methods */
.v392-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.v392-payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: var(--v392-radius-sm);
    font-size: 1.1rem;
    color: var(--v392-text-light);
}

/* Winners Section */
.v392-winners {
    background: rgba(255, 128, 0, 0.1);
    border-radius: var(--v392-radius);
    padding: 1.2rem;
    margin: 1rem 0;
}

.v392-winner-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.v392-winner-item:last-child {
    border-bottom: none;
}

.v392-winner-name {
    color: var(--v392-secondary);
}

.v392-winner-amount {
    color: var(--v392-primary);
    font-weight: 600;
}

/* Touch Active State */
.v392-touch-active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* FAQ Accordion */
.v392-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v392-radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.v392-faq-question {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--v392-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v392-faq-answer {
    padding: 0 1.2rem 1rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .v392-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v392-features {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .v392-container {
        max-width: 430px;
    }

    .v392-menu-toggle {
        display: none;
    }
}
