/**
 * BigBuny VIP Casino - Stylesheet
 * Website: bigbunyvipcasino.click
 * Prefix: pg0e-
 * Theme: Future Tech + VIP Luxury
 * Colors: Deep Purple/Blue, Gold/Amber, Neon Cyan
 */

/* CSS Variables */
:root {
    --pg0e-primary: #1a0a2e;
    --pg0e-secondary: #16213e;
    --pg0e-accent: #f4a900;
    --pg0e-gold: #d4af37;
    --pg0e-neon-cyan: #00f5ff;
    --pg0e-neon-purple: #bf00ff;
    --pg0e-text-light: #ffffff;
    --pg0e-text-muted: #b8b8d1;
    --pg0e-bg-dark: #0d0517;
    --pg0e-card-bg: rgba(26, 10, 46, 0.9);
    --pg0e-gradient-main: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0d0517 100%);
    --pg0e-gradient-gold: linear-gradient(135deg, #f4a900 0%, #d4af37 100%);
    --pg0e-shadow-glow: 0 0 20px rgba(0, 245, 255, 0.3);
    --pg0e-shadow-gold: 0 4px 15px rgba(244, 169, 0, 0.3);
    --pg0e-border-radius: 12px;
    --pg0e-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pg0e-gradient-main);
    background-attachment: fixed;
    color: var(--pg0e-text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* Header */
.pg0e-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 5, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 169, 0, 0.2);
    padding: 12px 16px;
    transition: var(--pg0e-transition);
}

.pg0e-header.pg0e-header-scrolled {
    background: rgba(13, 5, 23, 0.98);
    box-shadow: var(--pg0e-shadow-gold);
}

.pg0e-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pg0e-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg0e-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--pg0e-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pg0e-primary);
    font-weight: bold;
}

.pg0e-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pg0e-accent), var(--pg0e-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pg0e-header-actions {
    display: flex;
    gap: 10px;
}

.pg0e-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--pg0e-transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pg0e-btn-register {
    background: var(--pg0e-gradient-gold);
    color: var(--pg0e-primary);
    box-shadow: var(--pg0e-shadow-gold);
}

.pg0e-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 169, 0, 0.4);
}

.pg0e-btn-login {
    background: transparent;
    color: var(--pg0e-neon-cyan);
    border: 2px solid var(--pg0e-neon-cyan);
}

.pg0e-btn-login:hover {
    background: var(--pg0e-neon-cyan);
    color: var(--pg0e-primary);
}

.pg0e-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--pg0e-accent);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Desktop Navigation */
.pg0e-desktop-nav {
    display: flex;
    gap: 20px;
}

.pg0e-desktop-nav a {
    color: var(--pg0e-text-muted);
    font-weight: 500;
    transition: var(--pg0e-transition);
    position: relative;
}

.pg0e-desktop-nav a:hover {
    color: var(--pg0e-accent);
}

.pg0e-desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pg0e-gradient-gold);
    transition: width 0.3s ease;
}

.pg0e-desktop-nav a:hover::after {
    width: 100%;
}

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

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

.pg0e-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero Section */
.pg0e-hero {
    position: relative;
    padding: 60px 16px;
    text-align: center;
    overflow: hidden;
}

.pg0e-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(191, 0, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pg0e-hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pg0e-hero-title span {
    background: var(--pg0e-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pg0e-hero-subtitle {
    color: var(--pg0e-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pg0e-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

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

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

.pg0e-carousel-dot.pg0e-dot-active {
    background: var(--pg0e-accent);
    box-shadow: 0 0 10px var(--pg0e-accent);
}

/* Category Tabs */
.pg0e-category-section {
    padding: 20px 0;
}

.pg0e-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg0e-section-title i {
    color: var(--pg0e-accent);
}

.pg0e-category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pg0e-category-tabs::-webkit-scrollbar {
    display: none;
}

.pg0e-category-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    background: var(--pg0e-card-bg);
    border: 1px solid rgba(244, 169, 0, 0.2);
    border-radius: 25px;
    color: var(--pg0e-text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: var(--pg0e-transition);
    white-space: nowrap;
}

.pg0e-category-tab:hover,
.pg0e-category-tab.pg0e-tab-active {
    background: var(--pg0e-gradient-gold);
    color: var(--pg0e-primary);
    border-color: transparent;
}

/* Game Grid */
.pg0e-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.pg0e-game-card {
    background: var(--pg0e-card-bg);
    border-radius: var(--pg0e-border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: var(--pg0e-transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.pg0e-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--pg0e-neon-cyan);
    box-shadow: var(--pg0e-shadow-glow);
}

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

.pg0e-game-name {
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pg0e-text-light);
    background: rgba(0, 0, 0, 0.3);
}

/* Features Section */
.pg0e-features {
    padding: 40px 0;
}

.pg0e-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pg0e-feature-card {
    background: var(--pg0e-card-bg);
    border-radius: var(--pg0e-border-radius);
    padding: 25px;
    border: 1px solid rgba(244, 169, 0, 0.15);
    transition: var(--pg0e-transition);
}

.pg0e-feature-card:hover {
    border-color: var(--pg0e-accent);
    transform: translateY(-3px);
}

.pg0e-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--pg0e-gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--pg0e-primary);
}

.pg0e-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--pg0e-neon-cyan);
}

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

/* Footer */
.pg0e-footer {
    background: rgba(13, 5, 23, 0.98);
    border-top: 1px solid rgba(244, 169, 0, 0.2);
    padding: 40px 16px 20px;
}

.pg0e-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pg0e-footer-section h4 {
    color: var(--pg0e-accent);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pg0e-footer-section ul {
    list-style: none;
}

.pg0e-footer-section li {
    margin-bottom: 10px;
}

.pg0e-footer-section a {
    color: var(--pg0e-text-muted);
    font-size: 0.9rem;
    transition: var(--pg0e-transition);
}

.pg0e-footer-section a:hover {
    color: var(--pg0e-neon-cyan);
}

.pg0e-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(244, 169, 0, 0.1);
    border-bottom: 1px solid rgba(244, 169, 0, 0.1);
}

.pg0e-partner-logo {
    height: 30px;
    opacity: 0.7;
    transition: var(--pg0e-transition);
}

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

.pg0e-copyright {
    text-align: center;
    color: var(--pg0e-text-muted);
    font-size: 0.85rem;
}

/* Mobile Bottom Navigation */
.pg0e-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.98) 0%, rgba(13, 5, 23, 0.99) 100%);
    border-top: 2px solid var(--pg0e-accent);
    padding: 8px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(10px);
}

.pg0e-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
    min-height: 50px;
    padding: 6px 10px;
    color: var(--pg0e-text-muted);
    cursor: pointer;
    transition: var(--pg0e-transition);
    border-radius: 10px;
    position: relative;
}

.pg0e-nav-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--pg0e-gradient-gold);
    border-radius: 0 0 3px 3px;
    transition: width 0.3s ease;
}

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

.pg0e-nav-item:hover::before,
.pg0e-nav-item.pg0e-nav-active::before {
    width: 30px;
}

.pg0e-nav-item i,
.pg0e-nav-item .material-icons {
    font-size: 22px;
}

.pg0e-nav-item ion-icon {
    font-size: 24px;
}

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

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

/* Mobile Menu */
.pg0e-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: var(--pg0e-transition);
}

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

.pg0e-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--pg0e-primary);
    z-index: 9999;
    padding: 70px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.pg0e-mobile-menu.pg0e-menu-active {
    right: 0;
}

.pg0e-mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--pg0e-accent);
    font-size: 28px;
    cursor: pointer;
}

.pg0e-mobile-menu-nav {
    list-style: none;
}

.pg0e-mobile-menu-nav li {
    margin-bottom: 5px;
}

.pg0e-mobile-menu-nav a {
    display: block;
    padding: 15px;
    color: var(--pg0e-text-light);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--pg0e-transition);
}

.pg0e-mobile-menu-nav a:hover {
    background: rgba(244, 169, 0, 0.1);
    color: var(--pg0e-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pg0e-header-actions .pg0e-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .pg0e-desktop-nav {
        display: none;
    }

    .pg0e-menu-toggle {
        display: block;
    }

    .pg0e-hero-title {
        font-size: 1.6rem;
    }

    .pg0e-carousel {
        height: 160px;
    }

    .pg0e-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .pg0e-game-name {
        padding: 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 430px) {
    .pg0e-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg0e-hero-title {
        font-size: 1.4rem;
    }

    .pg0e-section-title {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes pg0e-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pg0e-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pg0e-glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--pg0e-neon-cyan);
    }
    50% {
        box-shadow: 0 0 20px var(--pg0e-neon-cyan), 0 0 30px var(--pg0e-neon-purple);
    }
}

/* Content Pages */
.pg0e-content-section {
    padding: 40px 16px;
}

.pg0e-content-card {
    background: var(--pg0e-card-bg);
    border-radius: var(--pg0e-border-radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 169, 0, 0.15);
}

.pg0e-content-card h2 {
    color: var(--pg0e-accent);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg0e-content-card p {
    color: var(--pg0e-text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.pg0e-content-card ul {
    list-style: none;
    margin-left: 0;
}

.pg0e-content-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--pg0e-text-muted);
    border-bottom: 1px solid rgba(244, 169, 0, 0.1);
}

.pg0e-content-card li:last-child {
    border-bottom: none;
}

.pg0e-content-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--pg0e-neon-cyan);
}

/* CTA Section */
.pg0e-cta-section {
    text-align: center;
    padding: 50px 16px;
    background: linear-gradient(135deg, rgba(191, 0, 255, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);
    border-radius: var(--pg0e-border-radius);
    margin: 30px 0;
}

.pg0e-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pg0e-cta-title span {
    color: var(--pg0e-accent);
}

.pg0e-cta-desc {
    color: var(--pg0e-text-muted);
    margin-bottom: 25px;
}

.pg0e-cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}
