/**
 * gbets - Main Stylesheet
 * Class Prefix: pg94-
 * Website: https://gbets.club
 * Mobile-first design (max-width: 430px)
 */

/* CSS Variables */
:root {
    --pg94-primary: #FF9500;
    --pg94-secondary: #FFBF00;
    --pg94-accent: #FFD700;
    --pg94-highlight: #9370DB;
    --pg94-bg: #0A0A0A;
    --pg94-bg-light: #1a1a1a;
    --pg94-bg-card: #151515;
    --pg94-text: #FFFFFF;
    --pg94-text-muted: #a0a0a0;
    --pg94-border: #333333;
    --pg94-success: #4CAF50;
    --pg94-gradient: linear-gradient(135deg, #FF9500 0%, #FFD700 100%);
    --pg94-shadow: 0 4px 20px rgba(255, 149, 0, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--pg94-bg);
    color: var(--pg94-text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--pg94-text-muted);
}

a {
    color: var(--pg94-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pg94-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.pg94-wrapper {
    padding: 2rem 0;
}

/* Header */
.pg94-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.6rem;
    border-bottom: 1px solid rgba(255, 149, 0, 0.2);
    transition: all 0.3s ease;
}

.pg94-header-scrolled {
    background: rgba(10, 10, 10, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pg94-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pg94-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.pg94-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--pg94-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pg94-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pg94-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pg94-btn-primary {
    background: var(--pg94-gradient);
    color: var(--pg94-bg);
    box-shadow: var(--pg94-shadow);
}

.pg94-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4);
}

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

.pg94-btn-secondary:hover {
    background: var(--pg94-primary);
    color: var(--pg94-bg);
}

.pg94-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.pg94-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pg94-accent);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.pg94-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--pg94-bg-light);
    z-index: 9999;
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.pg94-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;
}

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

.pg94-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.4rem;
    color: var(--pg94-text);
    cursor: pointer;
    background: none;
    border: none;
}

.pg94-menu-links {
    list-style: none;
}

.pg94-menu-links li {
    margin-bottom: 1.2rem;
}

.pg94-menu-links a {
    display: block;
    padding: 1.2rem;
    color: var(--pg94-text);
    font-size: 1.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pg94-menu-links a:hover {
    background: rgba(255, 149, 0, 0.2);
    color: var(--pg94-accent);
}

/* Main Content */
main {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Hero Section */
.pg94-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.pg94-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.pg94-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.pg94-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg94-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.pg94-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg94-dot-active {
    background: var(--pg94-accent);
    transform: scale(1.2);
}

/* Section Styles */
.pg94-section {
    padding: 2rem 0;
}

.pg94-section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pg94-section-title i {
    color: var(--pg94-primary);
}

/* Game Categories */
.pg94-categories {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
}

.pg94-categories::-webkit-scrollbar {
    display: none;
}

.pg94-category-tag {
    flex-shrink: 0;
    padding: 0.8rem 1.6rem;
    background: var(--pg94-bg-card);
    border-radius: 20px;
    font-size: 1.3rem;
    color: var(--pg94-text);
    border: 1px solid var(--pg94-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pg94-category-tag:hover,
.pg94-category-active {
    background: var(--pg94-gradient);
    color: var(--pg94-bg);
    border-color: transparent;
}

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

.pg94-game-card {
    background: var(--pg94-bg-card);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--pg94-border);
}

.pg94-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--pg94-primary);
    box-shadow: var(--pg94-shadow);
}

.pg94-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.pg94-game-name {
    padding: 0.6rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--pg94-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(255, 149, 0, 0.1);
}

/* Features Section */
.pg94-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.pg94-feature-card {
    background: var(--pg94-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--pg94-border);
    transition: all 0.3s ease;
}

.pg94-feature-card:hover {
    border-color: var(--pg94-highlight);
}

.pg94-feature-icon {
    font-size: 3rem;
    color: var(--pg94-primary);
    margin-bottom: 1rem;
}

.pg94-feature-title {
    font-size: 1.4rem;
    color: var(--pg94-text);
    margin-bottom: 0.5rem;
}

.pg94-feature-desc {
    font-size: 1.2rem;
    color: var(--pg94-text-muted);
}

/* FAQ Section */
.pg94-faq-list {
    margin-bottom: 2rem;
}

.pg94-faq-item {
    background: var(--pg94-bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--pg94-border);
}

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

.pg94-faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 1.3rem;
    color: var(--pg94-text-muted);
    line-height: 1.6;
}

/* Promotions */
.pg94-promo-card {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2) 0%, rgba(147, 112, 219, 0.2) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pg94-primary);
    text-align: center;
}

.pg94-promo-title {
    font-size: 2rem;
    color: var(--pg94-accent);
    margin-bottom: 1rem;
}

.pg94-promo-desc {
    font-size: 1.4rem;
    color: var(--pg94-text);
    margin-bottom: 1.5rem;
}

/* Footer */
.pg94-footer {
    background: var(--pg94-bg-light);
    padding: 2rem 1.6rem 1rem;
    border-top: 1px solid var(--pg94-border);
}

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

.pg94-footer-desc {
    font-size: 1.3rem;
    color: var(--pg94-text-muted);
    max-width: 350px;
    margin: 0 auto 1.5rem;
}

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

.pg94-footer-link {
    padding: 0.6rem 1.2rem;
    background: var(--pg94-bg-card);
    border-radius: 6px;
    font-size: 1.2rem;
    color: var(--pg94-text);
    transition: all 0.3s ease;
}

.pg94-footer-link:hover {
    background: var(--pg94-primary);
    color: var(--pg94-bg);
}

.pg94-footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--pg94-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--pg94-border);
}

/* Bottom Navigation */
.pg94-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(255, 149, 0, 0.3);
    padding: 0 0.5rem;
}

.pg94-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.pg94-nav-item:hover {
    background: rgba(255, 149, 0, 0.1);
}

.pg94-nav-item.active {
    background: rgba(255, 149, 0, 0.2);
}

.pg94-nav-item i,
.pg94-nav-item .material-icons {
    font-size: 24px;
    color: var(--pg94-text-muted);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.pg94-nav-item:hover i,
.pg94-nav-item:hover .material-icons,
.pg94-nav-item.active i,
.pg94-nav-item.active .material-icons {
    color: var(--pg94-accent);
    transform: scale(1.1);
}

.pg94-nav-text {
    font-size: 10px;
    color: var(--pg94-text-muted);
    transition: all 0.3s ease;
}

.pg94-nav-item:hover .pg94-nav-text,
.pg94-nav-item.active .pg94-nav-text {
    color: var(--pg94-accent);
}

/* Back to Top Button */
.pg94-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--pg94-gradient);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--pg94-shadow);
    transition: all 0.3s ease;
}

.pg94-back-to-top:hover {
    transform: translateY(-3px);
}

.pg94-back-to-top i {
    font-size: 2rem;
    color: var(--pg94-bg);
}

/* Testimonials */
.pg94-testimonials {
    margin-bottom: 2rem;
}

.pg94-testimonial {
    background: var(--pg94-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--pg94-primary);
}

.pg94-testimonial-author {
    font-weight: 600;
    color: var(--pg94-accent);
    margin-bottom: 0.5rem;
}

.pg94-testimonial-text {
    font-size: 1.3rem;
    color: var(--pg94-text-muted);
    font-style: italic;
}

/* Payment Methods */
.pg94-payments {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.pg94-payment-icon {
    width: 50px;
    height: 35px;
    background: var(--pg94-bg-card);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pg94-border);
}

/* CTA Banner */
.pg94-cta-banner {
    background: var(--pg94-gradient);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.pg94-cta-title {
    font-size: 2rem;
    color: var(--pg94-bg);
    margin-bottom: 1rem;
}

.pg94-cta-text {
    font-size: 1.4rem;
    color: rgba(10, 10, 10, 0.8);
    margin-bottom: 1.5rem;
}

.pg94-cta-btn {
    background: var(--pg94-bg);
    color: var(--pg94-accent);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.pg94-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Winners Section */
.pg94-winners {
    background: var(--pg94-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pg94-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--pg94-border);
}

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

.pg94-winner-game {
    font-size: 1.3rem;
    color: var(--pg94-text);
}

.pg94-winner-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pg94-accent);
}

/* Desktop Hide */
@media (min-width: 769px) {
    .pg94-bottom-nav {
        display: none;
    }

    main {
        padding-bottom: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .pg94-container {
        max-width: 1200px;
    }

    .pg94-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .pg94-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .pg94-header-actions {
        gap: 1.5rem;
    }

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

/* Animations */
@keyframes pg94-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pg94-animate-pulse {
    animation: pg94-pulse 2s infinite;
}

@keyframes pg94-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg94-fade-in {
    animation: pg94-fadeIn 0.5s ease forwards;
}
