/**
 * gbets.click - Main Stylesheet
 * All classes use w7ec5- prefix for namespace isolation
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --w7ec5-primary: #87CEEB;
    --w7ec5-secondary: #34495E;
    --w7ec5-dark: #191970;
    --w7ec5-accent: #48D1CC;
    --w7ec5-bg: #0a0f1a;
    --w7ec5-bg-card: #141c2f;
    --w7ec5-text: #e8f4f8;
    --w7ec5-text-muted: #8fa3b3;
    --w7ec5-border: #2a3a52;
    --w7ec5-gradient: linear-gradient(135deg, #191970 0%, #34495E 100%);
    --w7ec5-glow: 0 0 20px rgba(135, 206, 235, 0.3);
}

/* Base Styles */
* {
    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(--w7ec5-bg);
    color: var(--w7ec5-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    color: var(--w7ec5-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--w7ec5-accent);
}

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

.w7ec5-wrapper {
    padding: 1.5rem 0;
}

/* Header */
.w7ec5-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 15, 26, 0.98) 0%, rgba(10, 15, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--w7ec5-border);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.w7ec5-header-scrolled {
    background: rgba(10, 15, 26, 0.99);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.w7ec5-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.w7ec5-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--w7ec5-primary);
    letter-spacing: 1px;
}

.w7ec5-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

.w7ec5-btn-primary {
    background: var(--w7ec5-gradient);
    color: var(--w7ec5-text);
    box-shadow: var(--w7ec5-glow);
}

.w7ec5-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(135, 206, 235, 0.4);
}

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

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

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

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

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

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

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

.w7ec5-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--w7ec5-border);
}

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

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

.w7ec5-menu-nav li {
    margin-bottom: 0.5rem;
}

.w7ec5-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--w7ec5-text);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.w7ec5-menu-nav a:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--w7ec5-primary);
}

/* Carousel */
.w7ec5-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 1rem;
}

.w7ec5-slides {
    position: relative;
    height: 180px;
}

.w7ec5-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.w7ec5-slide-active {
    opacity: 1;
}

.w7ec5-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.w7ec5-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.w7ec5-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

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

/* Main Content */
.w7ec5-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Section Title */
.w7ec5-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w7ec5-primary);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1rem;
}

.w7ec5-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--w7ec5-accent);
    border-radius: 2px;
}

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

.w7ec5-game-card {
    background: var(--w7ec5-bg-card);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--w7ec5-border);
}

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

.w7ec5-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.w7ec5-game-name {
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--w7ec5-text);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.3);
}

/* Category Tabs */
.w7ec5-category-section {
    margin-bottom: 2rem;
}

.w7ec5-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w7ec5-accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Info Cards */
.w7ec5-info-card {
    background: var(--w7ec5-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--w7ec5-border);
}

.w7ec5-info-card h3 {
    font-size: 1.4rem;
    color: var(--w7ec5-primary);
    margin-bottom: 0.8rem;
}

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

/* Features Grid */
.w7ec5-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.w7ec5-feature-item {
    background: var(--w7ec5-bg-card);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--w7ec5-border);
    transition: all 0.3s ease;
}

.w7ec5-feature-item:hover {
    border-color: var(--w7ec5-primary);
}

.w7ec5-feature-icon {
    font-size: 2.4rem;
    color: var(--w7ec5-accent);
    margin-bottom: 0.6rem;
}

.w7ec5-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--w7ec5-text);
    margin-bottom: 0.4rem;
}

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

/* CTA Section */
.w7ec5-cta {
    background: var(--w7ec5-gradient);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

.w7ec5-cta h2 {
    font-size: 1.6rem;
    color: var(--w7ec5-text);
    margin-bottom: 1rem;
}

.w7ec5-cta-btn {
    display: inline-block;
    background: var(--w7ec5-accent);
    color: var(--w7ec5-dark);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.w7ec5-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(72, 209, 204, 0.4);
}

/* Footer */
.w7ec5-footer {
    background: var(--w7ec5-bg-card);
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--w7ec5-border);
}

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

.w7ec5-footer-desc {
    font-size: 1.2rem;
    color: var(--w7ec5-text-muted);
    max-width: 320px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

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

.w7ec5-footer-link {
    padding: 0.5rem 1rem;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 6px;
    font-size: 1.1rem;
    color: var(--w7ec5-text);
    transition: all 0.3s ease;
}

.w7ec5-footer-link:hover {
    background: var(--w7ec5-primary);
    color: var(--w7ec5-dark);
}

.w7ec5-footer-copyright {
    text-align: center;
    font-size: 1rem;
    color: var(--w7ec5-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--w7ec5-border);
}

/* Mobile Bottom Navigation */
.w7ec5-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(20, 28, 47, 0.98) 0%, rgba(10, 15, 26, 0.99) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--w7ec5-border);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
}

.w7ec5-nav-item {
    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-radius: 12px;
}

.w7ec5-nav-item:hover {
    background: rgba(135, 206, 235, 0.1);
}

.w7ec5-nav-item.active {
    background: rgba(72, 209, 204, 0.15);
}

.w7ec5-nav-item.active .w7ec5-nav-icon {
    color: var(--w7ec5-accent);
}

.w7ec5-nav-icon {
    font-size: 22px;
    color: var(--w7ec5-text);
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.w7ec5-nav-item:hover .w7ec5-nav-icon {
    color: var(--w7ec5-primary);
    transform: scale(1.1);
}

.w7ec5-nav-text {
    font-size: 10px;
    color: var(--w7ec5-text-muted);
    text-align: center;
    transition: all 0.3s ease;
}

.w7ec5-nav-item:hover .w7ec5-nav-text,
.w7ec5-nav-item.active .w7ec5-nav-text {
    color: var(--w7ec5-primary);
}

/* Testimonials */
.w7ec5-testimonials {
    margin: 1.5rem 0;
}

.w7ec5-testimonial-item {
    background: var(--w7ec5-bg-card);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--w7ec5-accent);
}

.w7ec5-testimonial-text {
    font-size: 1.2rem;
    color: var(--w7ec5-text);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.w7ec5-testimonial-author {
    font-size: 1rem;
    color: var(--w7ec5-primary);
    font-weight: 600;
}

/* Payment Methods */
.w7ec5-payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

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

/* Winners Showcase */
.w7ec5-winners {
    background: var(--w7ec5-bg-card);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1rem 0;
}

.w7ec5-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--w7ec5-border);
}

.w7ec5-winner-item:last-child {
    border-bottom: none;
}

.w7ec5-winner-name {
    font-size: 1.2rem;
    color: var(--w7ec5-text);
}

.w7ec5-winner-amount {
    font-size: 1.2rem;
    color: var(--w7ec5-accent);
    font-weight: 700;
}

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

.w7ec5-rtp-item {
    background: var(--w7ec5-bg-card);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--w7ec5-border);
}

.w7ec5-rtp-game {
    font-size: 1.1rem;
    color: var(--w7ec5-text);
    margin-bottom: 0.4rem;
}

.w7ec5-rtp-value {
    font-size: 1.6rem;
    color: var(--w7ec5-accent);
    font-weight: 700;
}

/* Promotional Link Styles */
.w7ec5-promo-link {
    color: var(--w7ec5-accent);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

    .w7ec5-main {
        padding-bottom: 2rem;
    }

    .w7ec5-container {
        max-width: 768px;
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .w7ec5-main {
        padding-bottom: 80px;
    }

    body {
        font-size: 1.3rem;
    }
}

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

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

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

.w7ec5-mt-1 {
    margin-top: 1rem;
}

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