/**
 * PhBingo APK - Core Stylesheet
 * Website: phbingoapk.click
 * Prefix: pgf0-
 */

/* CSS Variables */
:root {
    --pgf0-primary: #FFE135;
    --pgf0-secondary: #F0E68C;
    --pgf0-accent: #FAFAD2;
    --pgf0-bg: #262626;
    --pgf0-bg-light: #3a3a3a;
    --pgf0-text: #FAFAD2;
    --pgf0-text-dark: #262626;
    --pgf0-border: #ADB5BD;
    --pgf0-gold: #FFE135;
    --pgf0-cream: #F5DEB3;
    --pgf0-gray: #ADB5BD;
    --pgf0-header-height: 60px;
    --pgf0-bottom-nav-height: 60px;
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--pgf0-bg);
    color: var(--pgf0-text);
    line-height: 1.5;
    font-size: 1.6rem;
    overflow-x: hidden;
}

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

.pgf0-wrapper {
    width: 100%;
    padding: 1rem;
}

/* Header Styles */
.pgf0-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--pgf0-header-height);
    background: linear-gradient(135deg, var(--pgf0-bg) 0%, var(--pgf0-bg-light) 100%);
    border-bottom: 2px solid var(--pgf0-gold);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.pgf0-header-scrolled {
    box-shadow: 0 4px 20px rgba(255, 225, 53, 0.2);
}

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

.pgf0-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.pgf0-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pgf0-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pgf0-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.pgf0-btn-primary {
    background: linear-gradient(135deg, var(--pgf0-gold) 0%, var(--pgf0-secondary) 100%);
    color: var(--pgf0-text-dark);
}

.pgf0-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 225, 53, 0.4);
}

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

.pgf0-btn-secondary:hover {
    background: var(--pgf0-gold);
    color: var(--pgf0-text-dark);
}

.pgf0-menu-toggle {
    background: none;
    border: none;
    color: var(--pgf0-gold);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.pgf0-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--pgf0-bg);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    border-left: 2px solid var(--pgf0-gold);
}

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

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

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

.pgf0-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--pgf0-border);
}

.pgf0-menu-close {
    background: none;
    border: none;
    color: var(--pgf0-gold);
    font-size: 2.4rem;
    cursor: pointer;
}

.pgf0-nav-list {
    list-style: none;
}

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

.pgf0-nav-link {
    display: block;
    padding: 1rem;
    color: var(--pgf0-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pgf0-nav-link:hover {
    background: var(--pgf0-bg-light);
    color: var(--pgf0-gold);
}

/* Main Content */
.pgf0-main {
    padding-top: var(--pgf0-header-height);
    padding-bottom: calc(var(--pgf0-bottom-nav-height) + 2rem);
    min-height: 100vh;
}

/* Carousel/Slider */
.pgf0-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pgf0-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

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

.pgf0-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.pro8ca-dot-active {
    background: var(--pgf0-gold);
}

/* Game Grid */
.pgf0-game-section {
    margin-bottom: 2.5rem;
}

.pgf0-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pgf0-gold);
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--pgf0-gold);
}

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

.pgf0-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem;
    background: var(--pgf0-bg-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pgf0-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 225, 53, 0.2);
}

.pgf0-game-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 0.4rem;
}

.pgf0-game-name {
    font-size: 1rem;
    color: var(--pgf0-text);
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Content Sections */
.pgf0-content-section {
    background: var(--pgf0-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pgf0-border);
}

.pgf0-content-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pgf0-gold);
    margin-bottom: 1rem;
}

.pgf0-content-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--pgf0-text);
    margin-bottom: 1rem;
}

.pgf0-content-text:last-child {
    margin-bottom: 0;
}

.pgf0-highlight {
    color: var(--pgf0-gold);
    font-weight: 600;
}

/* Link Styles */
.pgf0-link {
    color: var(--pgf0-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pgf0-link:hover {
    color: var(--pgf0-secondary);
    text-decoration: underline;
}

.pgf0-promo-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--pgf0-gold) 0%, var(--pgf0-secondary) 100%);
    color: var(--pgf0-text-dark);
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pgf0-promo-link:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 225, 53, 0.4);
}

/* Footer */
.pgf0-footer {
    background: var(--pgf0-bg-light);
    padding: 2rem 1rem;
    border-top: 2px solid var(--pgf0-gold);
    margin-bottom: var(--pgf0-bottom-nav-height);
}

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

.pgf0-footer-desc {
    font-size: 1.3rem;
    color: var(--pgf0-gray);
    line-height: 1.5;
}

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

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

.pgf0-footer-link:hover {
    background: var(--pgf0-gold);
    color: var(--pgf0-text-dark);
}

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

.pgf0-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.pgf0-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--pgf0-gray);
}

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

.pgf0-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    background: none;
    border: none;
    color: var(--pgf0-text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pgf0-nav-btn:hover {
    transform: scale(1.1);
}

.pgf0-nav-btn.active {
    color: var(--pgf0-gold);
}

.pgf0-nav-icon {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.pgf0-nav-text {
    font-size: 1rem;
    font-weight: 500;
}

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

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

.pgf0-mb-2 {
    margin-bottom: 2rem;
}

.pgf0-mt-2 {
    margin-top: 2rem;
}

.pgf0-hidden {
    display: none;
}

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

    .pgf0-footer {
        margin-bottom: 0;
    }

    .pgf0-main {
        padding-bottom: 2rem;
    }

    .pgf0-container {
        max-width: 1200px;
    }

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

    .pgf0-carousel {
        height: 350px;
    }
}

/* Touch Feedback */
.pro8ca-touch-active {
    opacity: 0.8;
    transform: scale(0.98);
}

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

.pgf0-pulse {
    animation: pgf0-pulse 2s infinite;
}

/* List Styles */
.pgf0-list {
    list-style: none;
    padding: 0;
}

.pgf0-list-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--pgf0-border);
    font-size: 1.4rem;
}

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

/* Card Component */
.pgf0-card {
    background: var(--pgf0-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--pgf0-border);
}

.pgf0-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pgf0-card-icon {
    font-size: 2.4rem;
    color: var(--pgf0-gold);
}

.pgf0-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pgf0-gold);
}

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

/* Grid Layout */
.pgf0-grid {
    display: grid;
    gap: 1rem;
}

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

.pgf0-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* H1 Title */
.pgf0-page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pgf0-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* FAQ Section */
.pgf0-faq-item {
    background: var(--pgf0-bg-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.pgf0-faq-question {
    padding: 1rem;
    font-weight: 600;
    color: var(--pgf0-gold);
    cursor: pointer;
}

.pgf0-faq-answer {
    padding: 0 1rem 1rem;
    font-size: 1.3rem;
    color: var(--pgf0-text);
}
