/**
 * Happy Bingo - Main Stylesheet
 * Class Prefix: gd93-
 * Color Palette: #FF9800 | #DEB887 | #0F0F23 | #FFF176
 */

/* CSS Reset & Base */
:root {
    --gd93-primary: #FF9800;
    --gd93-secondary: #DEB887;
    --gd93-bg-dark: #0F0F23;
    --gd93-bg-light: #1a1a3e;
    --gd93-text-light: #FFF176;
    --gd93-text-white: #ffffff;
    --gd93-text-muted: #b0b0c0;
    --gd93-border: #2a2a4e;
    --gd93-gradient: linear-gradient(135deg, #FF9800 0%, #DEB887 100%);
    --gd93-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    --gd93-radius: 12px;
    --gd93-radius-sm: 8px;
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gd93-bg-dark);
    color: var(--gd93-text-white);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.gd93-wrapper {
    padding: 1rem;
}

/* Header Styles */
.gd93-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--gd93-bg-dark) 0%, var(--gd93-bg-light) 100%);
    border-bottom: 1px solid var(--gd93-border);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

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

.gd93-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

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

.gd93-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

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

.gd93-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

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

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

.gd93-menu-toggle {
    background: transparent;
    border: none;
    color: var(--gd93-text-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

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

.gd93-menu-nav {
    margin-top: 3rem;
}

.gd93-menu-nav a {
    display: block;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gd93-border);
    color: var(--gd93-text-white);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.gd93-menu-nav a:hover {
    color: var(--gd93-primary);
}

/* Main Content */
.gd93-main {
    padding-top: 60px;
    padding-bottom: 1rem;
}

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

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

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

.gd93-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.gd93-slide-active {
    opacity: 1;
    position: relative;
}

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

/* Section Styles */
.gd93-section {
    padding: 1.5rem 0;
}

.gd93-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gd93-text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

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

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

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

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

.gd93-game-name {
    font-size: 1.1rem;
    padding: 0.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gd93-text-white);
}

/* Category Title */
.gd93-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gd93-primary);
    margin: 1.5rem 0 0.8rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--gd93-primary);
}

/* Cards & Boxes */
.gd93-card {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid var(--gd93-border);
}

.gd93-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gd93-text-light);
    margin-bottom: 1rem;
}

.gd93-card-text {
    color: var(--gd93-text-muted);
    line-height: 1.6;
}

/* Promo Banner */
.gd93-promo-banner {
    background: var(--gd93-gradient);
    border-radius: var(--gd93-radius);
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.gd93-promo-banner h3 {
    color: var(--gd93-bg-dark);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.gd93-promo-banner p {
    color: var(--gd93-bg-dark);
    opacity: 0.9;
    margin-bottom: 1rem;
}

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

.gd93-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.gd93-footer-desc {
    color: var(--gd93-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto 1rem;
}

.gd93-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.gd93-footer-links a {
    background: var(--gd93-bg-dark);
    padding: 0.6rem 1rem;
    border-radius: var(--gd93-radius-sm);
    font-size: 1.1rem;
    color: var(--gd93-text-white);
    transition: all 0.3s ease;
}

.gd93-footer-links a:hover {
    background: var(--gd93-primary);
    color: var(--gd93-bg-dark);
}

.gd93-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--gd93-border);
    border-bottom: 1px solid var(--gd93-border);
}

.gd93-footer-nav a {
    color: var(--gd93-text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.gd93-footer-nav a:hover {
    color: var(--gd93-primary);
}

.gd93-copyright {
    text-align: center;
    color: var(--gd93-text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Mobile Bottom Navigation */
.gd93-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--gd93-bg-light) 0%, var(--gd93-bg-dark) 100%);
    border-top: 1px solid var(--gd93-border);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    padding: 0 0.5rem;
}

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

.gd93-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;
    border-radius: 8px;
}

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

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

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

.gd93-nav-item:hover i,
.gd93-nav-item:hover .material-icons,
.gd93-nav-item:hover span {
    color: var(--gd93-primary);
}

.gd93-nav-item.active i,
.gd93-nav-item.active .material-icons,
.gd93-nav-item.active span {
    color: var(--gd93-primary);
}

/* FAQ Accordion */
.gd93-faq-item {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--gd93-border);
}

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

.gd93-faq-answer {
    padding: 0 1.2rem 1rem;
    color: var(--gd93-text-muted);
    line-height: 1.6;
}

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

.gd93-feature-item {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius-sm);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gd93-border);
    transition: all 0.3s ease;
}

.gd93-feature-item:hover {
    border-color: var(--gd93-primary);
}

.gd93-feature-item i {
    font-size: 2.4rem;
    color: var(--gd93-primary);
    margin-bottom: 0.5rem;
}

.gd93-feature-item h4 {
    font-size: 1.2rem;
    color: var(--gd93-text-light);
    margin-bottom: 0.3rem;
}

.gd93-feature-item p {
    font-size: 1rem;
    color: var(--gd93-text-muted);
}

/* Testimonials */
.gd93-testimonial {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius);
    padding: 1.2rem;
    margin: 0.8rem 0;
    border-left: 3px solid var(--gd93-primary);
}

.gd93-testimonial-text {
    color: var(--gd93-text-muted);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.gd93-testimonial-author {
    color: var(--gd93-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Stats Grid */
.gd93-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.gd93-stat-item {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius-sm);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gd93-border);
}

.gd93-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gd93-primary);
}

.gd93-stat-label {
    font-size: 1rem;
    color: var(--gd93-text-muted);
}

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

.gd93-payment-item {
    background: var(--gd93-bg-light);
    border-radius: var(--gd93-radius-sm);
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gd93-border);
    font-size: 1.2rem;
    color: var(--gd93-text-white);
}

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

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

    .gd93-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utility Classes */
.gd93-text-center {
    text-align: center;
}

.gd93-text-primary {
    color: var(--gd93-primary);
}

.gd93-text-light {
    color: var(--gd93-text-light);
}

.gd93-mt-1 {
    margin-top: 1rem;
}

.gd93-mb-1 {
    margin-bottom: 1rem;
}

.gd93-py-2 {
    padding: 2rem 0;
}

.gd93-hidden-desktop {
    display: block;
}

@media (min-width: 769px) {
    .gd93-hidden-desktop {
        display: none;
    }
}
