/**
 * g1011.click - Core CSS Stylesheet
 * All classes use prefix "wc6ee-" for namespace isolation
 * Color palette: #2C3E50 | #E0FFFF | #B0E0E6 | #48D1CC | #0097A7
 * Mobile-first responsive design (max-width: 430px viewport)
 */

/* === CSS Variables === */
:root {
    --wc6ee-primary: #0097A7;
    --wc6ee-primary-dark: #2C3E50;
    --wc6ee-primary-light: #E0FFFF;
    --wc6ee-accent: #48D1CC;
    --wc6ee-accent-soft: #B0E0E6;
    --wc6ee-bg: #1a2332;
    --wc6ee-bg-card: #243447;
    --wc6ee-bg-dark: #0f1923;
    --wc6ee-text: #E0FFFF;
    --wc6ee-text-muted: #B0E0E6;
    --wc6ee-text-dark: #2C3E50;
    --wc6ee-border: #48D1CC;
    --wc6ee-gold: #FFD700;
    --wc6ee-success: #00C853;
    --wc6ee-radius: 8px;
    --wc6ee-radius-lg: 16px;
    --wc6ee-shadow: 0 4px 20px rgba(0, 151, 167, 0.25);
    --wc6ee-transition: all 0.3s ease;
    font-size: 62.5%;
}

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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--wc6ee-bg);
    color: var(--wc6ee-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--wc6ee-accent);
    transition: var(--wc6ee-transition);
}

/* === Header === */
.wc6ee-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--wc6ee-primary-dark), #1a3a4a);
    border-bottom: 2px solid var(--wc6ee-primary);
    padding: 0 1.2rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.wc6ee-logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.wc6ee-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.wc6ee-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wc6ee-accent);
    letter-spacing: 0.5px;
}

.wc6ee-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wc6ee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: none;
    border-radius: var(--wc6ee-radius);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc6ee-transition);
    min-height: 36px;
    min-width: 44px;
    text-align: center;
}

.wc6ee-btn-register {
    background: linear-gradient(135deg, var(--wc6ee-primary), var(--wc6ee-accent));
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 151, 167, 0.4);
}

.wc6ee-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 151, 167, 0.6);
}

.wc6ee-btn-login {
    background: transparent;
    color: var(--wc6ee-accent);
    border: 1.5px solid var(--wc6ee-accent);
}

.wc6ee-btn-login:hover {
    background: rgba(72, 209, 204, 0.15);
}

.wc6ee-btn-promo {
    background: linear-gradient(135deg, var(--wc6ee-gold), #FFA000);
    color: var(--wc6ee-primary-dark);
    font-weight: 700;
    padding: 12px 28px;
    font-size: 1.5rem;
    border-radius: var(--wc6ee-radius-lg);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.wc6ee-btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

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

.wc6ee-btn-outline:hover {
    background: var(--wc6ee-primary);
    color: #fff;
}

/* === Mobile Menu === */
.wc6ee-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--wc6ee-accent);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 4px;
    min-width: 44px;
    min-height: 44px;
}

@media (max-width: 768px) {
    .wc6ee-hamburger { display: flex; align-items: center; justify-content: center; }
    .wc6ee-desktop-nav { display: none; }
}

.wc6ee-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    z-index: 9999;
    background: var(--wc6ee-bg-dark);
    transition: right 0.35s ease;
    padding: 20px;
    overflow-y: auto;
}

.wc6ee-menu-active {
    right: 0 !important;
}

.wc6ee-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
}

.wc6ee-overlay-active {
    display: block !important;
}

.wc6ee-menu-close {
    background: none;
    border: none;
    color: var(--wc6ee-text);
    font-size: 2.4rem;
    cursor: pointer;
    float: right;
    margin-bottom: 16px;
}

.wc6ee-menu-links {
    clear: both;
    padding-top: 20px;
}

.wc6ee-menu-links a {
    display: block;
    padding: 14px 0;
    color: var(--wc6ee-text);
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(72, 209, 204, 0.15);
    transition: var(--wc6ee-transition);
}

.wc6ee-menu-links a:hover {
    color: var(--wc6ee-accent);
    padding-left: 8px;
}

/* === Desktop Navigation === */
.wc6ee-desktop-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wc6ee-desktop-nav a {
    color: var(--wc6ee-text-muted);
    font-size: 1.3rem;
    font-weight: 500;
    transition: var(--wc6ee-transition);
}

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

/* === Main Content === */
.wc6ee-main {
    padding-top: 56px;
    min-height: 100vh;
}

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

.wc6ee-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

.wc6ee-wrapper {
    max-width: 100%;
    padding: 0 1rem;
}

/* === Carousel === */
.wc6ee-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 var(--wc6ee-radius-lg) var(--wc6ee-radius-lg);
}

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

.wc6ee-slide {
    min-width: 100%;
    display: none;
    cursor: pointer;
}

.wc6ee-slide-active {
    display: block;
}

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

/* === Sections === */
.wc6ee-section {
    padding: 24px 0;
}

.wc6ee-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wc6ee-accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(72, 209, 204, 0.3);
}

.wc6ee-section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wc6ee-text);
    margin-bottom: 12px;
}

/* === Game Grid === */
.wc6ee-game-category-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--wc6ee-primary);
    margin: 20px 0 12px;
    padding-left: 10px;
    border-left: 3px solid var(--wc6ee-primary);
}

.wc6ee-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 8px 0;
}

@media (min-width: 381px) {
    .wc6ee-game-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
    .wc6ee-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.wc6ee-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: var(--wc6ee-bg-card);
    border-radius: var(--wc6ee-radius);
    cursor: pointer;
    transition: var(--wc6ee-transition);
    border: 1px solid transparent;
}

.wc6ee-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--wc6ee-primary);
    box-shadow: var(--wc6ee-shadow);
}

.wc6ee-game-card img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 6px;
    object-fit: cover;
}

.wc6ee-game-card span {
    font-size: 1.1rem;
    color: var(--wc6ee-text-muted);
    text-align: center;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === Info Cards === */
.wc6ee-card {
    background: var(--wc6ee-bg-card);
    border-radius: var(--wc6ee-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(72, 209, 204, 0.15);
}

.wc6ee-card h3 {
    color: var(--wc6ee-accent);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.wc6ee-card p {
    color: var(--wc6ee-text-muted);
    line-height: 1.6;
    font-size: 1.3rem;
}

.wc6ee-card ul {
    padding-left: 18px;
    color: var(--wc6ee-text-muted);
    font-size: 1.3rem;
    line-height: 1.8;
}

.wc6ee-highlight-box {
    background: linear-gradient(135deg, rgba(0, 151, 167, 0.15), rgba(72, 209, 204, 0.1));
    border: 1px solid var(--wc6ee-primary);
    border-radius: var(--wc6ee-radius-lg);
    padding: 20px;
    margin: 16px 0;
}

/* === Footer === */
.wc6ee-footer {
    background: var(--wc6ee-bg-dark);
    padding: 24px 0 32px;
    border-top: 1px solid rgba(72, 209, 204, 0.2);
}

.wc6ee-footer-desc {
    color: var(--wc6ee-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wc6ee-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.wc6ee-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(72, 209, 204, 0.1);
    border-radius: 20px;
    color: var(--wc6ee-accent);
    font-size: 1.2rem;
    border: 1px solid rgba(72, 209, 204, 0.2);
}

.wc6ee-footer-links a:hover {
    background: rgba(72, 209, 204, 0.2);
}

.wc6ee-footer-copy {
    color: rgba(176, 224, 230, 0.5);
    font-size: 1.1rem;
    text-align: center;
    margin-top: 12px;
}

/* === Bottom Navigation === */
.wc6ee-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: linear-gradient(180deg, var(--wc6ee-primary-dark), #0f1923);
    border-top: 2px solid var(--wc6ee-primary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
}

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

.wc6ee-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--wc6ee-text-muted);
    font-size: 1rem;
    cursor: pointer;
    min-width: 60px;
    min-height: 56px;
    transition: var(--wc6ee-transition);
    padding: 4px 2px;
}

.wc6ee-bottom-nav-btn:hover,
.wc6ee-bottom-nav-btn:focus {
    color: var(--wc6ee-accent);
    transform: scale(1.1);
}

.wc6ee-bottom-nav-btn .wc6ee-nav-icon {
    font-size: 22px;
    margin-bottom: 2px;
}

.wc6ee-bottom-nav-btn .wc6ee-nav-label {
    font-size: 1rem;
    line-height: 1.2;
}

.wc6ee-nav-active {
    color: var(--wc6ee-accent) !important;
}

.wc6ee-nav-active .wc6ee-nav-icon {
    filter: drop-shadow(0 0 6px rgba(72, 209, 204, 0.5));
}

/* === Utility Classes === */
.wc6ee-text-center { text-align: center; }
.wc6ee-text-accent { color: var(--wc6ee-accent); }
.wc6ee-text-gold { color: var(--wc6ee-gold); }
.wc6ee-text-primary { color: var(--wc6ee-primary); }
.wc6ee-mt-8 { margin-top: 8px; }
.wc6ee-mt-16 { margin-top: 16px; }
.wc6ee-mb-8 { margin-bottom: 8px; }
.wc6ee-mb-16 { margin-bottom: 16px; }
.wc6ee-p-16 { padding: 16px; }
.wc6ee-hidden { display: none; }

/* === Promo Link Styles === */
.wc6ee-promo-text {
    color: var(--wc6ee-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc6ee-transition);
}

.wc6ee-promo-text:hover {
    color: #fff;
    text-decoration: underline;
}

/* === FAQ Section === */
.wc6ee-faq-item {
    background: var(--wc6ee-bg-card);
    border-radius: var(--wc6ee-radius);
    padding: 16px;
    margin-bottom: 10px;
    border-left: 3px solid var(--wc6ee-primary);
}

.wc6ee-faq-item h3 {
    color: var(--wc6ee-accent);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.wc6ee-faq-item p {
    color: var(--wc6ee-text-muted);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* === Testimonials === */
.wc6ee-testimonial {
    background: linear-gradient(135deg, var(--wc6ee-bg-card), rgba(0, 151, 167, 0.1));
    border-radius: var(--wc6ee-radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(72, 209, 204, 0.15);
}

.wc6ee-testimonial-name {
    color: var(--wc6ee-accent);
    font-weight: 600;
    font-size: 1.3rem;
}

.wc6ee-testimonial-text {
    color: var(--wc6ee-text-muted);
    font-size: 1.2rem;
    margin-top: 6px;
    line-height: 1.5;
}

/* === Payment Methods === */
.wc6ee-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.wc6ee-payment-item {
    background: var(--wc6ee-bg-card);
    padding: 10px 16px;
    border-radius: var(--wc6ee-radius);
    color: var(--wc6ee-text-muted);
    font-size: 1.2rem;
    border: 1px solid rgba(72, 209, 204, 0.2);
}

/* === Winner Display === */
.wc6ee-winner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--wc6ee-bg-card);
    border-radius: var(--wc6ee-radius);
    margin-bottom: 6px;
}

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

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

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