/**
 * Super King - Main Stylesheet
 * Prefix: g2e6- (all classes and variables)
 * Website: super-king.click
 * Color Palette: #0E1621 | #800080 | #00CED1 | #0097A7 | #0000CD
 */

/* CSS Variables */
:root {
    --g2e6-bg-dark: #0E1621;
    --g2e6-purple: #800080;
    --g2e6-cyan: #00CED1;
    --g2e6-teal: #0097A7;
    --g2e6-blue: #0000CD;
    --g2e6-text-light: #FFFFFF;
    --g2e6-text-gray: #B0B0B0;
    --g2e6-border: rgba(0, 206, 209, 0.3);
    --g2e6-gradient: linear-gradient(135deg, #800080 0%, #0000CD 100%);
    --g2e6-shadow: 0 4px 20px rgba(0, 206, 209, 0.2);
}

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

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--g2e6-bg-dark);
    color: var(--g2e6-text-light);
    line-height: 1.5;
    min-height: 100vh;
}

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

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

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

/* Header Styles */
.g2e6-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--g2e6-bg-dark) 0%, rgba(14, 22, 33, 0.95) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--g2e6-border);
    backdrop-filter: blur(10px);
}

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

.g2e6-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

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

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

.g2e6-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.g2e6-btn-outline:hover {
    background: var(--g2e6-cyan);
    color: var(--g2e6-bg-dark);
}

.g2e6-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--g2e6-cyan);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Desktop Navigation */
.g2e6-nav-desktop {
    display: flex;
    gap: 2rem;
}

.g2e6-nav-link {
    color: var(--g2e6-text-gray);
    font-size: 1.4rem;
    transition: color 0.3s;
}

.g2e6-nav-link:hover {
    color: var(--g2e6-cyan);
}

/* Mobile Menu */
.g2e6-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g2e6-bg-dark);
    z-index: 9999;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--g2e6-border);
}

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

.g2e6-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.g2e6-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.g2e6-mobile-nav a {
    color: var(--g2e6-text-light);
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.g2e6-mobile-nav a:hover {
    background: rgba(0, 206, 209, 0.1);
    color: var(--g2e6-cyan);
}

.g2e6-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--g2e6-cyan);
    font-size: 2.4rem;
    cursor: pointer;
}

/* Main Content */
main {
    padding-top: 70px;
}

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

/* Hero Carousel */
.g2e6-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

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

/* Section Styles */
.g2e6-section {
    padding: 2rem 1.5rem;
}

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

.g2e6-subtitle {
    font-size: 1.4rem;
    color: var(--g2e6-text-gray);
    margin-bottom: 1rem;
}

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

.g2e6-game-card {
    background: rgba(128, 0, 128, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--g2e6-border);
}

.g2e6-game-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 206, 209, 0.15);
    border-color: var(--g2e6-cyan);
}

.g2e6-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

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

/* Category Section */
.g2e6-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.g2e6-category-icon {
    width: 28px;
    height: 28px;
    color: var(--g2e6-cyan);
}

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

.g2e6-feature-card {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.2) 0%, rgba(0, 0, 205, 0.2) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--g2e6-border);
}

.g2e6-feature-icon {
    font-size: 2.4rem;
    color: var(--g2e6-cyan);
    margin-bottom: 1rem;
}

.g2e6-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.g2e6-feature-desc {
    font-size: 1.2rem;
    color: var(--g2e6-text-gray);
    line-height: 1.4;
}

/* Testimonials */
.g2e6-testimonial {
    background: rgba(0, 206, 209, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--g2e6-purple);
}

.g2e6-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--g2e6-text-light);
}

.g2e6-testimonial-author {
    font-size: 1.2rem;
    color: var(--g2e6-cyan);
    font-weight: 600;
}

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

.g2e6-payment-item {
    background: rgba(128, 0, 128, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--g2e6-border);
}

.g2e6-payment-icon {
    font-size: 2rem;
    color: var(--g2e6-cyan);
}

/* Footer */
.g2e6-footer {
    background: linear-gradient(180deg, rgba(14, 22, 33, 0.95) 0%, var(--g2e6-bg-dark) 100%);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--g2e6-border);
}

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

.g2e6-footer-desc {
    font-size: 1.2rem;
    color: var(--g2e6-text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.g2e6-footer-link {
    font-size: 1.2rem;
    color: var(--g2e6-cyan);
    padding: 0.5rem 1rem;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
}

.g2e6-footer-link:hover {
    background: var(--g2e6-cyan);
    color: var(--g2e6-bg-dark);
}

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

.g2e6-footer-promo .g2e6-btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
}

.g2e6-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--g2e6-text-gray);
    padding-top: 1rem;
    border-top: 1px solid var(--g2e6-border);
}

/* Mobile Bottom Navigation */
.g2e6-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(14, 22, 33, 0.98) 0%, var(--g2e6-bg-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    border-top: 1px solid var(--g2e6-border);
    backdrop-filter: blur(10px);
}

.g2e6-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;
    border-radius: 12px;
    padding: 0.5rem;
}

.g2e6-nav-item:hover {
    background: rgba(0, 206, 209, 0.1);
}

.g2e6-nav-item.active {
    background: rgba(128, 0, 128, 0.2);
}

.g2e6-nav-item.active .g2e6-nav-icon {
    color: var(--g2e6-cyan);
}

.g2e6-nav-item.active .g2e6-nav-label {
    color: var(--g2e6-cyan);
}

.g2e6-nav-icon {
    font-size: 24px;
    color: var(--g2e6-text-gray);
    margin-bottom: 0.3rem;
    transition: color 0.3s;
}

.g2e6-nav-label {
    font-size: 10px;
    color: var(--g2e6-text-gray);
    transition: color 0.3s;
}

/* FAQ Section */
.g2e6-faq-item {
    background: rgba(128, 0, 128, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.g2e6-faq-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.g2e6-faq-header:hover {
    background: rgba(0, 206, 209, 0.1);
}

.g2e6-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--g2e6-text-light);
}

.g2e6-faq-icon {
    font-size: 1.6rem;
    color: var(--g2e6-cyan);
    transition: transform 0.3s;
}

.g2e6-icon-rotate {
    transform: rotate(180deg);
}

.g2e6-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.g2e6-faq-open {
    max-height: 500px;
}

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

/* RTP Table */
.g2e6-rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
}

.g2e6-rtp-table th,
.g2e6-rtp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--g2e6-border);
}

.g2e6-rtp-table th {
    background: rgba(128, 0, 128, 0.2);
    color: var(--g2e6-cyan);
    font-weight: 600;
}

.g2e6-rtp-table td {
    color: var(--g2e6-text-light);
}

.g2e6-rtp-high {
    color: #00FF00;
    font-weight: 600;
}

/* Winners Section */
.g2e6-winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 206, 209, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

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

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

.g2e6-winner-name {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

/* Promo Card */
.g2e6-promo-card {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.3) 0%, rgba(0, 0, 205, 0.3) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--g2e6-border);
}

.g2e6-promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--g2e6-cyan);
}

.g2e6-promo-desc {
    font-size: 1.2rem;
    color: var(--g2e6-text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (min-width: 769px) {
    .g2e6-bottom-nav {
        display: none;
    }

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

    .g2e6-nav-desktop {
        display: flex;
    }

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

@media (max-width: 768px) {
    .g2e6-nav-desktop {
        display: none;
    }

    .g2e6-menu-toggle {
        display: block;
    }

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

    .g2e6-game-card {
        padding: 0.6rem;
    }

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

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

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

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

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

.g2e6-hidden {
    display: none;
}

/* Link Styles */
.g2e6-text-link {
    color: var(--g2e6-cyan);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.g2e6-text-link:hover {
    color: var(--g2e6-purple);
    text-decoration: underline;
}

/* App Download Section */
.g2e6-app-cta {
    background: linear-gradient(135deg, var(--g2e6-purple) 0%, var(--g2e6-blue) 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.g2e6-app-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.g2e6-app-desc {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--g2e6-text-gray);
}

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

/* Achievement Badge */
.g2e6-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 206, 209, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    color: var(--g2e6-cyan);
    margin: 0.3rem;
}

.g2e6-badge i {
    font-size: 1.4rem;
}
