/**
 * jiliaa - CSS Design Stylesheet
 * Prefix: v5e6-
 * Colors: #FF9500 | #FFB74D | #FFBF00 | #0E1621
 */

/* CSS Variables */
:root {
    --v5e6-primary: #FF9500;
    --v5e6-secondary: #FFB74D;
    --v5e6-accent: #FFBF00;
    --v5e6-dark: #0E1621;
    --v5e6-light: #FFFFFF;
    --v5e6-gray: #8A9199;
    --v5e6-border: rgba(255, 149, 0, 0.3);
    --v5e6-gradient: linear-gradient(135deg, #FF9500, #FFBF00);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Container */
.v5e6-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
.v5e6-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--v5e6-dark);
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--v5e6-border);
}

.v5e6-header-scrolled {
    background: rgba(14, 22, 33, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.v5e6-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

.v5e6-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v5e6-logo img {
    width: 32px;
    height: 32px;
}

.v5e6-logo-text {
    font-size: 22px;
    font-weight: 700;
    background: var(--v5e6-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v5e6-header-buttons {
    display: flex;
    gap: 10px;
}

.v5e6-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.v5e6-btn-register {
    background: var(--v5e6-gradient);
    color: var(--v5e6-dark);
}

.v5e6-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

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

.v5e6-btn-login:hover {
    background: var(--v5e6-primary);
    color: var(--v5e6-dark);
}

.v5e6-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--v5e6-primary);
    font-size: 24px;
    cursor: pointer;
}

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

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

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

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

.v5e6-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--v5e6-light);
    font-size: 28px;
    cursor: pointer;
}

.v5e6-menu-links {
    list-style: none;
}

.v5e6-menu-links li {
    margin-bottom: 15px;
}

.v5e6-menu-links a {
    display: block;
    padding: 12px 16px;
    color: var(--v5e6-light);
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.v5e6-menu-links a:hover {
    background: rgba(255, 149, 0, 0.15);
    color: var(--v5e6-primary);
}

.v5e6-no-scroll {
    overflow: hidden;
}

/* Hero Slider */
.v5e6-hero {
    position: relative;
    margin-top: 60px;
    height: 200px;
    overflow: hidden;
}

.v5e6-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.v5e6-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.v5e6-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(14, 22, 33, 0.9));
}

.v5e6-slide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--v5e6-primary);
}

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

/* Section Titles */
.v5e6-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--v5e6-light);
    position: relative;
    padding-left: 15px;
}

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

/* Game Categories */
.v5e6-categories {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 15px 0;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.v5e6-categories::-webkit-scrollbar {
    display: none;
}

.v5e6-category-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid var(--v5e6-border);
    border-radius: 25px;
    color: var(--v5e6-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v5e6-category-tab:hover,
.v5e6-tab-active {
    background: var(--v5e6-gradient);
    color: var(--v5e6-dark);
    border-color: transparent;
}

/* Game Grid */
.v5e6-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.v5e6-game-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.v5e6-game-item:hover {
    transform: translateY(-5px);
}

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

.v5e6-game-name {
    padding: 8px;
    font-size: 11px;
    text-align: center;
    color: var(--v5e6-light);
    background: rgba(14, 22, 33, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Info Sections */
.v5e6-info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--v5e6-border);
}

.v5e6-info-section h2 {
    color: var(--v5e6-primary);
    font-size: 18px;
    margin-bottom: 15px;
}

.v5e6-info-section p {
    color: var(--v5e6-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.v5e6-info-section ul {
    list-style: none;
    padding-left: 0;
}

.v5e6-info-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--v5e6-gray);
    font-size: 14px;
}

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

/* CTA Buttons */
.v5e6-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--v5e6-gradient);
    color: var(--v5e6-dark);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.v5e6-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4);
}

/* Footer */
.v5e6-footer {
    background: var(--v5e6-dark);
    padding: 40px 16px 20px;
    border-top: 1px solid var(--v5e6-border);
}

.v5e6-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.v5e6-footer-column h4 {
    color: var(--v5e6-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.v5e6-footer-column a {
    display: block;
    color: var(--v5e6-gray);
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.v5e6-footer-column a:hover {
    color: var(--v5e6-primary);
}

.v5e6-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.v5e6-partners img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.v5e6-partners img:hover {
    opacity: 1;
}

.v5e6-copyright {
    text-align: center;
    color: var(--v5e6-gray);
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--v5e6-border);
}

/* Mobile Bottom Navigation */
.v5e6-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--v5e6-dark);
    border-top: 1px solid var(--v5e6-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 10px;
}

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

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

.v5e6-nav-item .material-icons,
.v5e6-nav-item ion-icon,
.v5e6-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.v5e6-nav-item span {
    font-size: 11px;
}

/* Desktop - Hide Bottom Nav */
@media (min-width: 769px) {
    .v5e6-bottom-nav {
        display: none;
    }

    main {
        padding-bottom: 0;
    }

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

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

    .v5e6-header {
        padding: 15px 0;
    }

    .v5e6-hero {
        height: 350px;
    }

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .v5e6-header-buttons {
        gap: 6px;
    }

    .v5e6-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .v5e6-logo-text {
        font-size: 18px;
    }

    .v5e6-hero {
        height: 180px;
    }

    .v5e6-section-title {
        font-size: 18px;
    }

    .v5e6-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .v5e6-game-name {
        font-size: 10px;
        padding: 6px;
    }
}

/* Testimonials */
.v5e6-testimonial {
    background: rgba(255, 149, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--v5e6-primary);
}

.v5e6-testimonial-text {
    font-style: italic;
    color: var(--v5e6-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.v5e6-testimonial-author {
    color: var(--v5e6-primary);
    font-size: 13px;
    font-weight: 600;
}

/* Payment Methods */
.v5e6-payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.v5e6-payment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.v5e6-payment-item i {
    font-size: 24px;
    color: var(--v5e6-primary);
    margin-bottom: 6px;
}

.v5e6-payment-item span {
    display: block;
    font-size: 11px;
    color: var(--v5e6-gray);
}

/* FAQ Accordion */
.v5e6-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.v5e6-faq-question {
    padding: 15px;
    color: var(--v5e6-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v5e6-faq-question i {
    color: var(--v5e6-primary);
}

.v5e6-faq-answer {
    padding: 0 15px 15px;
    color: var(--v5e6-gray);
    font-size: 13px;
    line-height: 1.6;
}

/* Promotions Card */
.v5e6-promo-card {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 191, 0, 0.1));
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid var(--v5e6-border);
}

.v5e6-promo-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--v5e6-primary);
    margin-bottom: 10px;
}

.v5e6-promo-desc {
    font-size: 13px;
    color: var(--v5e6-gray);
    margin-bottom: 15px;
}

/* Winners Showcase */
.v5e6-winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 10px;
}

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

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

.v5e6-winner-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--v5e6-light);
}

.v5e6-winner-game {
    font-size: 12px;
    color: var(--v5e6-gray);
}

.v5e6-winner-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--v5e6-primary);
}

/* App Download Section */
.v5e6-app-section {
    background: linear-gradient(135deg, var(--v5e6-dark), rgba(255, 149, 0, 0.1));
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.v5e6-app-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--v5e6-primary);
    margin-bottom: 10px;
}

.v5e6-app-desc {
    font-size: 14px;
    color: var(--v5e6-gray);
    margin-bottom: 20px;
}

.v5e6-app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.v5e6-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--v5e6-gradient);
    color: var(--v5e6-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.v5e6-app-btn:hover {
    transform: scale(1.05);
}

/* Internal Links */
.v5e6-internal-link {
    color: var(--v5e6-primary);
    text-decoration: underline;
}

.v5e6-internal-link:hover {
    color: var(--v5e6-secondary);
}
