/**
 * Playtime Game - Main Stylesheet
 * CSS class prefix: g03e-
 * Website: playtimegame.cfd
 */

/* CSS Variables */
:root {
    --g03e-primary: #FF5722;
    --g03e-secondary: #1E1E1E;
    --g03e-accent: #87CEEB;
    --g03e-highlight: #FFEB3B;
    --g03e-light: #FFCCCB;
    --g03e-bg-dark: #1E1E1E;
    --g03e-bg-card: #2A2A2A;
    --g03e-text-light: #FFFFFF;
    --g03e-text-muted: #B0B0B0;
    --g03e-gradient: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--g03e-bg-dark);
    color: var(--g03e-text-light);
    line-height: 1.5;
    font-size: 1.4rem;
}

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

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

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

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

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

.g03e-logo-text {
    color: var(--g03e-text-light);
    font-size: 1.4rem;
    font-weight: 700;
}

.g03e-header-actions {
    display: flex;
    gap: 0.6rem;
}

.g03e-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.g03e-btn-primary {
    background: var(--g03e-gradient);
    color: var(--g03e-text-light);
}

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

.g03e-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.g03e-menu-toggle {
    background: none;
    border: none;
    color: var(--g03e-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
}

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

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

.g03e-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g03e-mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.g03e-mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--g03e-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.g03e-mobile-menu a:hover {
    color: var(--g03e-primary);
}

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

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

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

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

/* Slider/Carousel */
.g03e-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

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

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

.g03e-slide img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.g03e-slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

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

.g03e-dot-active {
    background: var(--g03e-primary);
}

/* Section Styles */
.g03e-section {
    padding: 2rem 0;
}

.g03e-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--g03e-text-light);
    border-left: 4px solid var(--g03e-primary);
    padding-left: 1rem;
}

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

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

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

.g03e-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 0.4rem;
}

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

/* Category Title */
.g03e-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--g03e-accent);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Cards */
.g03e-card {
    background: var(--g03e-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.g03e-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--g03e-highlight);
}

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

.g03e-promo-link:hover {
    color: var(--g03e-highlight);
}

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

.g03e-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
}

/* Footer */
.g03e-footer {
    background: var(--g03e-bg-card);
    padding: 2rem 0 8rem;
    margin-top: 2rem;
}

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

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

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

.g03e-footer-link {
    color: var(--g03e-text-light);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 87, 34, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.g03e-footer-link:hover {
    background: var(--g03e-primary);
}

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

/* Bottom Navigation */
.g03e-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--g03e-bg-card);
    border-top: 1px solid rgba(255, 87, 34, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

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

.g03e-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;
    color: var(--g03e-text-muted);
}

.g03e-nav-item:hover,
.g03e-nav-item-active {
    color: var(--g03e-primary);
    transform: scale(1.1);
}

.g03e-nav-item i,
.g03e-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.g03e-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Utility Classes */
.g03e-text-center { text-align: center; }
.g03e-mt-2 { margin-top: 2rem; }
.g03e-mb-2 { margin-bottom: 2rem; }
.g03e-py-2 { padding-top: 2rem; padding-bottom: 2rem; }

/* Features List */
.g03e-features {
    display: grid;
    gap: 1rem;
}

.g03e-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.g03e-feature-icon i {
    font-size: 20px;
    color: var(--g03e-text-light);
}

.g03e-feature-content h4 {
    margin: 0 0 0.4rem;
    font-size: 1.3rem;
    color: var(--g03e-text-light);
}

.g03e-feature-content p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--g03e-text-muted);
}

/* Testimonials */
.g03e-testimonial {
    background: var(--g03e-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.g03e-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.g03e-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--g03e-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.g03e-testimonial-name {
    font-weight: 600;
    font-size: 1.3rem;
}

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

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

.g03e-payment-item {
    background: var(--g03e-bg-card);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--g03e-text-light);
}

/* Winners Section */
.g03e-winners-list {
    display: grid;
    gap: 0.8rem;
}

.g03e-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--g03e-bg-card);
    padding: 1rem;
    border-radius: 8px;
}

.g03e-winner-game {
    font-weight: 600;
    color: var(--g03e-text-light);
}

.g03e-winner-amount {
    color: var(--g03e-highlight);
    font-weight: 700;
}

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

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

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

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

    .g03e-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1.1rem;
    }
}
