/**
 * Legendlink Maya - Main Stylesheet
 * Version: 1.0.0
 * Prefix: g07e-
 */

/* CSS Variables */
:root {
    --g07e-primary: #DC143C;
    --g07e-secondary: #FF69B4;
    --g07e-accent: #AFEEEE;
    --g07e-bg-dark: #2C3E50;
    --g07e-bg-light: #ADD8E6;
    --g07e-text-light: #FFFFFF;
    --g07e-text-dark: #2C3E50;
    --g07e-gradient: linear-gradient(135deg, #DC143C 0%, #FF69B4 100%);
    --g07e-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --g07e-radius: 12px;
    --g07e-transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--g07e-text-light);
    background: var(--g07e-bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--g07e-transition);
}

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

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

/* Header */
.g07e-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(44, 62, 80, 0.98) 0%, rgba(44, 62, 80, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--g07e-transition);
}

.g07e-header-scrolled {
    background: rgba(44, 62, 80, 0.99);
    box-shadow: var(--g07e-shadow);
}

.g07e-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

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

.g07e-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.g07e-header-actions {
    display: flex;
    gap: 1rem;
}

.g07e-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    border-radius: var(--g07e-radius);
    cursor: pointer;
    transition: var(--g07e-transition);
    min-height: 44px;
    min-width: 44px;
}

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

.g07e-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

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

.g07e-btn-outline:hover {
    background: var(--g07e-accent);
    color: var(--g07e-text-dark);
}

.g07e-menu-toggle {
    background: none;
    border: none;
    color: var(--g07e-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

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

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

.g07e-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: var(--g07e-transition);
}

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

.g07e-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(175, 238, 238, 0.2);
}

.g07e-menu-close {
    background: none;
    border: none;
    color: var(--g07e-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.g07e-nav-list {
    list-style: none;
}

.g07e-nav-item {
    margin-bottom: 0.5rem;
}

.g07e-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--g07e-text-light);
    font-size: 1.5rem;
    border-radius: 8px;
    transition: var(--g07e-transition);
}

.g07e-nav-link:hover {
    background: rgba(220, 20, 60, 0.2);
    color: var(--g07e-secondary);
}

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

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

/* Carousel */
.g07e-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

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

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

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

.g07e-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.g07e-dot-active {
    background: var(--g07e-primary);
    width: 24px;
    border-radius: 4px;
}

/* Sections */
.g07e-section {
    padding: 2.5rem 0;
}

.g07e-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--g07e-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.g07e-game-card {
    background: rgba(175, 238, 238, 0.1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--g07e-transition);
}

.g07e-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--g07e-shadow);
}

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

.g07e-game-name {
    font-size: 1.1rem;
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--g07e-accent);
}

/* Category Badge */
.g07e-category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--g07e-gradient);
    color: var(--g07e-text-light);
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Features Section */
.g07e-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.g07e-feature-card {
    background: rgba(173, 216, 230, 0.1);
    border-radius: var(--g07e-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--g07e-transition);
}

.g07e-feature-card:hover {
    background: rgba(173, 216, 230, 0.2);
    transform: translateY(-3px);
}

.g07e-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--g07e-secondary);
}

.g07e-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--g07e-accent);
}

.g07e-feature-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.g07e-cta {
    background: var(--g07e-gradient);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    margin: 2rem 1rem;
}

.g07e-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.g07e-cta-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.g07e-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--g07e-text-light);
    color: var(--g07e-primary);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 30px;
    transition: var(--g07e-transition);
}

.g07e-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.g07e-footer {
    background: rgba(44, 62, 80, 0.95);
    padding: 2rem 1rem;
    text-align: center;
}

.g07e-footer-brand {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--g07e-accent);
}

.g07e-footer-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.g07e-footer-link {
    padding: 0.6rem 1.2rem;
    background: rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--g07e-text-light);
    transition: var(--g07e-transition);
}

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

.g07e-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(175, 238, 238, 0.2);
}

.g07e-footer-nav a {
    font-size: 1.3rem;
    color: var(--g07e-accent);
}

.g07e-footer-nav a:hover {
    color: var(--g07e-secondary);
}

.g07e-copyright {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 1rem;
    border-top: 1px solid rgba(175, 238, 238, 0.1);
}

/* Bottom Navigation */
.g07e-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(44, 62, 80, 0.98) 0%, rgba(44, 62, 80, 1) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.g07e-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--g07e-transition);
    padding: 0.5rem;
}

.g07e-nav-btn:hover,
.g07e-nav-btn-active {
    color: var(--g07e-secondary);
    transform: scale(1.1);
}

.g07e-nav-btn-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.g07e-nav-btn-text {
    font-size: 10px;
    font-weight: 500;
}

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

.g07e-promo-text:hover {
    color: var(--g07e-accent);
    text-decoration: underline;
}

/* Info Card */
.g07e-info-card {
    background: rgba(173, 216, 230, 0.1);
    border-radius: var(--g07e-radius);
    padding: 1.5rem;
    margin: 1rem;
}

.g07e-info-card h3 {
    font-size: 1.6rem;
    color: var(--g07e-accent);
    margin-bottom: 1rem;
}

.g07e-info-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* List Styles */
.g07e-list {
    list-style: none;
    padding: 0;
}

.g07e-list li {
    padding: 1rem;
    border-bottom: 1px solid rgba(175, 238, 238, 0.1);
    font-size: 1.3rem;
}

.g07e-list li:last-child {
    border-bottom: none;
}

/* Testimonial */
.g07e-testimonial {
    background: rgba(220, 20, 60, 0.1);
    border-left: 4px solid var(--g07e-primary);
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 0 12px 12px 0;
}

.g07e-testimonial-text {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Payment Methods */
.g07e-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

.g07e-payment-item {
    background: rgba(175, 238, 238, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.g07e-payment-item i {
    font-size: 2.5rem;
    color: var(--g07e-accent);
    margin-bottom: 0.5rem;
}

.g07e-payment-name {
    font-size: 1.1rem;
    color: var(--g07e-text-light);
}

/* Winner Showcase */
.g07e-winner-card {
    display: flex;
    align-items: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 1rem;
    gap: 1rem;
}

.g07e-winner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--g07e-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

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

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

.g07e-winner-game {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* Utility Classes */
.g07e-text-center { text-align: center; }
.g07e-text-left { text-align: left; }
.g07e-mb-1 { margin-bottom: 1rem; }
.g07e-mb-2 { margin-bottom: 2rem; }
.g07e-mt-1 { margin-top: 1rem; }
.g07e-mt-2 { margin-top: 2rem; }
.g07e-p-1 { padding: 1rem; }
.g07e-p-2 { padding: 2rem; }

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

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