/**
 * jillbb.click - Main Stylesheet
 * Prefix: pg33-
 * Color Palette: #7B68EE | #34495E | #E6E6FA | #8470FF
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --pg33-primary: #7B68EE;
    --pg33-secondary: #8470FF;
    --pg33-dark: #34495E;
    --pg33-light: #E6E6FA;
    --pg33-white: #FFFFFF;
    --pg33-bg: #1a1a2e;
    --pg33-bg-alt: #16213e;
    --pg33-text: #E6E6FA;
    --pg33-text-muted: #a0a0c0;
    --pg33-accent: #7B68EE;
    --pg33-success: #00d26a;
    --pg33-gradient: linear-gradient(135deg, #7B68EE 0%, #8470FF 100%);
    --pg33-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
    --pg33-radius: 12px;
    --pg33-radius-sm: 8px;
}

/* 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: var(--pg33-bg);
    color: var(--pg33-text);
    line-height: 1.5rem;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

/* Header */
.pg33-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.pg33-header-scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: var(--pg33-shadow);
}

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

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

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

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

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

.pg33-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--pg33-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 36px;
}

.pg33-btn-primary {
    background: var(--pg33-gradient);
    color: var(--pg33-white);
}

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

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

.pg33-btn-outline:hover {
    background: var(--pg33-primary);
    color: var(--pg33-white);
}

.pg33-menu-toggle {
    background: none;
    border: none;
    color: var(--pg33-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.pg33-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.2);
}

.pg33-menu-close {
    background: none;
    border: none;
    color: var(--pg33-text);
    font-size: 2rem;
    cursor: pointer;
}

.pg33-menu-nav {
    list-style: none;
}

.pg33-menu-nav li {
    margin-bottom: 0.8rem;
}

.pg33-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--pg33-text);
    font-size: 1.4rem;
    border-radius: var(--pg33-radius-sm);
    transition: all 0.3s ease;
}

.pg33-menu-nav a:hover {
    background: rgba(123, 104, 238, 0.1);
    color: var(--pg33-primary);
}

.pg33-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Main Content */
.pg33-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

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

/* Slider/Banner */
.pg33-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--pg33-radius);
    margin-bottom: 2rem;
}

.pg33-slide {
    display: none;
    cursor: pointer;
}

.pg33-slide:first-child {
    display: block;
}

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

.pg33-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

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

.sitea27-dot-active {
    background: var(--pg33-primary);
    width: 20px;
    border-radius: 4px;
}

/* Section Titles */
.pg33-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pg33-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.pg33-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--pg33-gradient);
    border-radius: 2px;
}

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

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

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

.pg33-game-item:hover {
    transform: translateY(-3px);
}

.pg33-game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--pg33-radius-sm);
    margin: 0 auto 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pg33-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg33-game-name {
    font-size: 1.1rem;
    color: var(--pg33-text);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Content Sections */
.pg33-content-section {
    background: var(--pg33-bg-alt);
    border-radius: var(--pg33-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pg33-content-section h2 {
    font-size: 1.6rem;
    color: var(--pg33-primary);
    margin-bottom: 1rem;
}

.pg33-content-section p {
    font-size: 1.3rem;
    color: var(--pg33-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pg33-content-section p:last-child {
    margin-bottom: 0;
}

/* Feature List */
.pg33-feature-list {
    list-style: none;
}

.pg33-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(123, 104, 238, 0.1);
}

.pg33-feature-list li:last-child {
    border-bottom: none;
}

.pg33-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--pg33-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pg33-feature-icon i {
    font-size: 1.8rem;
    color: var(--pg33-white);
}

/* Promo Links */
.pg33-promo-link {
    color: var(--pg33-primary);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.pg33-promo-btn {
    display: inline-block;
    background: var(--pg33-gradient);
    color: var(--pg33-white);
    padding: 1rem 2rem;
    border-radius: var(--pg33-radius);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

/* Cards */
.pg33-card {
    background: var(--pg33-bg-alt);
    border-radius: var(--pg33-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(123, 104, 238, 0.1);
}

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

/* Testimonials */
.pg33-testimonial {
    background: var(--pg33-bg-alt);
    border-radius: var(--pg33-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--pg33-primary);
}

.pg33-testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pg33-primary);
    margin-bottom: 0.5rem;
}

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

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

.pg33-payment-item {
    background: var(--pg33-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--pg33-radius-sm);
    font-size: 1.2rem;
    color: var(--pg33-text);
    border: 1px solid rgba(123, 104, 238, 0.2);
}

/* Winners Showcase */
.pg33-winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--pg33-bg);
    border-radius: var(--pg33-radius-sm);
    margin-bottom: 0.8rem;
}

.pg33-winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pg33-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--pg33-white);
}

.pg33-winner-info {
    flex: 1;
}

.pg33-winner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pg33-text);
}

.pg33-winner-game {
    font-size: 1.1rem;
    color: var(--pg33-text-muted);
}

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

/* Footer */
.pg33-footer {
    background: var(--pg33-bg-alt);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

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

.pg33-footer-brand p {
    font-size: 1.2rem;
    color: var(--pg33-text-muted);
    line-height: 1.6;
}

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

.pg33-footer-links a {
    background: rgba(123, 104, 238, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: var(--pg33-radius-sm);
    font-size: 1.2rem;
    color: var(--pg33-text);
    transition: all 0.3s ease;
}

.pg33-footer-links a:hover {
    background: var(--pg33-primary);
    color: var(--pg33-white);
}

.pg33-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.2);
}

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

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

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

/* Bottom Navigation - Mobile */
.pg33-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(123, 104, 238, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    padding: 0 0.5rem;
}

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

.pg33-nav-btn {
    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: none;
    background: transparent;
    color: var(--pg33-text-muted);
}

.pg33-nav-btn:hover,
.pg33-nav-btn.active {
    color: var(--pg33-primary);
    transform: scale(1.05);
}

.pg33-nav-btn i {
    font-size: 22px;
    margin-bottom: 2px;
}

.pg33-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

.pg33-nav-btn.active {
    color: var(--pg33-primary);
}

.pg33-nav-btn.active i {
    color: var(--pg33-primary);
}

/* RTP Stats */
.pg33-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pg33-rtp-item {
    background: var(--pg33-bg);
    padding: 1rem;
    border-radius: var(--pg33-radius-sm);
    text-align: center;
}

.pg33-rtp-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pg33-success);
}

.pg33-rtp-label {
    font-size: 1.1rem;
    color: var(--pg33-text-muted);
}

/* FAQ Section */
.pg33-faq-item {
    background: var(--pg33-bg);
    border-radius: var(--pg33-radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

/* App Download CTA */
.pg33-app-cta {
    background: var(--pg33-gradient);
    border-radius: var(--pg33-radius);
    padding: 2rem;
    text-align: center;
}

.pg33-app-cta h3 {
    font-size: 1.6rem;
    color: var(--pg33-white);
    margin-bottom: 1rem;
}

.pg33-app-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.pg33-app-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pg33-app-btn {
    background: var(--pg33-white);
    color: var(--pg33-dark);
    padding: 0.8rem 1.5rem;
    border-radius: var(--pg33-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg33-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .pg33-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

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

    .pg33-game-name {
        font-size: 1rem;
    }
}

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

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

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

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

.pg33-hidden {
    display: none;
}

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

.pg33-animate {
    animation: pg33-fadeIn 0.5s ease forwards;
}
