/**
 * phclub.click - Core Stylesheet
 * All classes use prefix: w7e94-
 * Color palette: #ADFF2F | #9AFF9A | #E91E63 | #333333 | #006400
 */

/* CSS Variables with prefix */
:root {
    --w7e94-primary: #ADFF2F;
    --w7e94-secondary: #9AFF9A;
    --w7e94-accent: #E91E63;
    --w7e94-dark: #333333;
    --w7e94-darker: #006400;
    --w7e94-bg: #1a1a2e;
    --w7e94-bg-light: #16213e;
    --w7e94-text: #ffffff;
    --w7e94-text-muted: #b0b0b0;
    --w7e94-gradient: linear-gradient(135deg, #ADFF2F 0%, #9AFF9A 100%);
    --w7e94-shadow: 0 4px 15px rgba(173, 255, 47, 0.3);
}

/* Base reset */
* {
    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(--w7e94-bg);
    color: var(--w7e94-text);
    line-height: 1.5;
    min-height: 100vh;
}

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

/* Header styles */
.w7e94-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--w7e94-darker) 0%, var(--w7e94-dark) 100%);
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

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

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

.w7e94-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w7e94-primary);
    text-shadow: 0 0 10px rgba(173, 255, 47, 0.5);
}

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

.w7e94-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.w7e94-btn-primary {
    background: var(--w7e94-gradient);
    color: var(--w7e94-dark);
}

.w7e94-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--w7e94-shadow);
}

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

.w7e94-btn-outline:hover {
    background: var(--w7e94-primary);
    color: var(--w7e94-dark);
}

.w7e94-menu-toggle {
    background: none;
    border: none;
    color: var(--w7e94-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.w7e94-mobile-menu.game7e3e-active {
    right: 0;
}

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

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

.w7e94-mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--w7e94-text);
    text-decoration: none;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

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

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

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

/* Carousel styles */
.w7e94-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1rem 0;
}

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

.w7e94-slide img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

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

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

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

.w7e94-dot.game7e3e-active,
.w7e94-dot:hover {
    background: var(--w7e94-primary);
}

/* Section styles */
.w7e94-section {
    padding: 2rem 0;
}

.w7e94-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--w7e94-primary);
    text-align: center;
    position: relative;
}

.w7e94-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--w7e94-gradient);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

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

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

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

.w7e94-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.8rem;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.w7e94-game-item:hover img {
    border-color: var(--w7e94-primary);
}

.w7e94-game-name {
    font-size: 1rem;
    color: var(--w7e94-text);
    margin-top: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category badge */
.w7e94-category-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--w7e94-accent);
    color: white;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Card styles */
.w7e94-card {
    background: var(--w7e94-bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(173, 255, 47, 0.2);
}

.w7e94-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--w7e94-primary);
    margin-bottom: 1rem;
}

.w7e94-card-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--w7e94-text-muted);
}

/* Footer styles */
.w7e94-footer {
    background: var(--w7e94-dark);
    padding: 2rem 1.5rem;
    text-align: center;
}

.w7e94-footer-brand {
    font-size: 1.2rem;
    color: var(--w7e94-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.w7e94-footer-links a {
    color: var(--w7e94-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(173, 255, 47, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.w7e94-copyright {
    font-size: 1rem;
    color: var(--w7e94-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Mobile bottom navigation */
.w7e94-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--w7e94-dark) 0%, #1a1a1a 100%);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--w7e94-primary);
}

.w7e94-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

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

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

.w7e94-nav-item i,
.w7e94-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 0.3rem;
}

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

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

/* Feature list */
.w7e94-feature-list {
    list-style: none;
    padding: 0;
}

.w7e94-feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.2rem;
    color: var(--w7e94-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.w7e94-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--w7e94-primary);
}

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

.w7e94-promo-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(173, 255, 47, 0.5);
}

/* Responsive adjustments */
@media (max-width: 430px) {
    .w7e94-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }

    .w7e94-game-name {
        font-size: 0.9rem;
    }
}

/* Desktop navigation */
@media (min-width: 769px) {
    .w7e94-header-inner {
        max-width: 1200px;
    }

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

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

    .w7e94-menu-toggle {
        display: none;
    }
}

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

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

/* Highlight text */
.w7e94-highlight {
    color: var(--w7e94-primary);
    font-weight: 600;
}
