/**
 * FB775 Main Stylesheet
 * Prefix: g926-
 * Color Palette: #1C2833 (dark), #ECF0F1 (light), #80CBC4 (accent), #B2DFDB (secondary), #D3D3D3 (neutral)
 */

/* CSS Variables */
:root {
    --g926-primary: #80CBC4;
    --g926-secondary: #B2DFDB;
    --g926-bg-dark: #1C2833;
    --g926-bg-light: #ECF0F1;
    --g926-text-light: #ECF0F1;
    --g926-text-dark: #1C2833;
    --g926-neutral: #D3D3D3;
    --g926-gradient: linear-gradient(135deg, #80CBC4 0%, #B2DFDB 100%);
    --g926-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --g926-radius: 8px;
}

/* 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(--g926-bg-dark);
    color: var(--g926-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
}

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

a:hover {
    color: var(--g926-secondary);
}

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

/* Container */
.g926-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.g926-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--g926-bg-dark);
    border-bottom: 1px solid rgba(128, 203, 196, 0.3);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.g926-logo img {
    width: 28px;
    height: 28px;
}

.g926-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g926-primary);
}

.g926-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g926-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--g926-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.g926-btn-primary {
    background: var(--g926-gradient);
    color: var(--g926-text-dark);
}

.g926-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--g926-shadow);
}

.g926-btn-outline {
    background: transparent;
    border: 2px solid var(--g926-primary);
    color: var(--g926-primary);
}

.g926-btn-outline:hover {
    background: var(--g926-primary);
    color: var(--g926-text-dark);
}

/* Hamburger Menu */
.g926-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.g926-hamburger span {
    width: 24px;
    height: 3px;
    background: var(--g926-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.g926-hamburger-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.g926-hamburger-active span:nth-child(2) {
    opacity: 0;
}

.g926-hamburger-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.g926-desktop-nav {
    display: none;
}

@media (min-width: 769px) {
    .g926-desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .g926-desktop-nav a {
        font-size: 1.4rem;
        color: var(--g926-text-light);
        transition: color 0.3s ease;
    }

    .g926-desktop-nav a:hover {
        color: var(--g926-primary);
    }

    .g926-hamburger {
        display: none;
    }
}

/* Mobile Menu */
.g926-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g926-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 8rem 2rem 2rem;
    border-left: 1px solid rgba(128, 203, 196, 0.3);
}

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

.g926-mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.4rem;
    color: var(--g926-text-light);
    border-bottom: 1px solid rgba(128, 203, 196, 0.2);
    transition: all 0.3s ease;
}

.g926-mobile-menu a:hover {
    color: var(--g926-primary);
    padding-left: 1rem;
}

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

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

/* Mobile Only */
@media (max-width: 768px) {
    .g926-hamburger {
        display: flex;
    }

    .g926-btn {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }
}

/* Main Content */
.g926-main {
    padding-top: 6rem;
}

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

/* Hero Carousel */
.g926-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--g926-radius);
    margin-bottom: 2rem;
}

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

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

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

/* Section Styles */
.g926-section {
    margin-bottom: 2.5rem;
}

.g926-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g926-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--g926-primary);
}

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

.g926-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.g926-game-item:hover {
    transform: scale(1.05);
}

.g926-game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--g926-radius);
    margin-bottom: 0.5rem;
    object-fit: cover;
    border: 2px solid rgba(128, 203, 196, 0.3);
}

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

/* Category Tabs */
.g926-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--g926-secondary);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--g926-primary);
}

/* Info Cards */
.g926-card {
    background: rgba(128, 203, 196, 0.1);
    border-radius: var(--g926-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(128, 203, 196, 0.2);
}

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

.g926-card-text {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: var(--g926-text-light);
}

.g926-card-text p {
    margin-bottom: 1rem;
}

/* Footer */
.g926-footer {
    background: rgba(28, 40, 51, 0.95);
    padding: 2rem 0;
    border-top: 1px solid rgba(128, 203, 196, 0.3);
}

.g926-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.g926-footer-links a {
    font-size: 1.2rem;
    color: var(--g926-neutral);
}

.g926-footer-links a:hover {
    color: var(--g926-primary);
}

.g926-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.g926-partners img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.g926-partners img:hover {
    filter: grayscale(0%);
}

.g926-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--g926-neutral);
}

/* Bottom Navigation (Mobile Only) */
.g926-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--g926-bg-dark);
    border-top: 1px solid rgba(128, 203, 196, 0.3);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .g926-bottom-nav {
        display: flex;
    }
}

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

.g926-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.g926-nav-item:hover {
    transform: scale(1.1);
}

.g926-nav-item .material-icons,
.g926-nav-item ion-icon {
    font-size: 24px;
    color: var(--g926-neutral);
    transition: color 0.3s ease;
}

.g926-nav-item:hover .material-icons,
.g926-nav-item:hover ion-icon,
.g926-nav-item:hover .fas,
.g926-nav-item:hover .far {
    color: var(--g926-primary);
}

.g926-nav-item span {
    font-size: 10px;
    color: var(--g926-neutral);
    margin-top: 2px;
    transition: color 0.3s ease;
}

.g926-nav-item:hover span {
    color: var(--g926-primary);
}

.g926-nav-item.active .material-icons,
.g926-nav-item.active ion-icon,
.g926-nav-item.active .fas {
    color: var(--g926-primary);
}

.g926-nav-item.active span {
    color: var(--g926-primary);
}

/* Promotional Links */
.g926-promo-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--g926-gradient);
    color: var(--g926-text-dark);
    font-weight: 600;
    border-radius: var(--g926-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.g926-promo-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--g926-shadow);
    color: var(--g926-text-dark);
}

/* Features List */
.g926-features-list {
    list-style: none;
}

.g926-features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(128, 203, 196, 0.2);
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.g926-features-list li:last-child {
    border-bottom: none;
}

.g926-features-list i {
    color: var(--g926-primary);
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

/* FAQ Styles */
.g926-faq-item {
    margin-bottom: 1rem;
}

.g926-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--g926-primary);
    margin-bottom: 0.5rem;
}

.g926-faq-answer {
    font-size: 1.2rem;
    color: var(--g926-text-light);
    line-height: 1.6rem;
    padding-left: 1rem;
    border-left: 2px solid var(--g926-secondary);
}

/* Responsive Utilities */
@media (max-width: 430px) {
    .g926-container {
        padding: 0 1rem;
    }

    .g926-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .g926-game-icon {
        width: 50px;
        height: 50px;
    }

    .g926-game-name {
        font-size: 0.9rem;
    }
}

/* H1 Title */
.g926-h1-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--g926-primary);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 2.4rem;
}

/* Text Content */
.g926-text-content {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: var(--g926-text-light);
}

.g926-text-content p {
    margin-bottom: 1rem;
}

/* Badge */
.g926-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--g926-gradient);
    color: var(--g926-text-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Grid Layout */
.g926-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 360px) {
    .g926-grid-2 {
        grid-template-columns: 1fr;
    }
}
