/**
 * jilittt.click - Main Stylesheet
 * All classes use prefix "g0f1-" for namespace isolation
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --g0f1-primary: #BF360C;
    --g0f1-secondary: #FFAA00;
    --g0f1-bg: #0A0A0A;
    --g0f1-bg-light: #1a1a1a;
    --g0f1-text: #ffffff;
    --g0f1-text-muted: #b0b0b0;
    --g0f1-border: #333333;
    --g0f1-success: #4CAF50;
    --g0f1-danger: #f44336;
    --g0f1-gradient: linear-gradient(135deg, #BF360C 0%, #FFAA00 100%);
    --g0f1-shadow: 0 4px 20px rgba(191, 54, 12, 0.3);
    --g0f1-radius: 12px;
    --g0f1-radius-sm: 8px;
}

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

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--g0f1-bg);
    color: var(--g0f1-text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--g0f1-primary);
}

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

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

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

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

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

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

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

.g0f1-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.g0f1-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(191, 54, 12, 0.4);
}

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

.g0f1-btn-outline:hover {
    background: var(--g0f1-secondary);
    color: var(--g0f1-bg);
}

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

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

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

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

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

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

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

.g0f1-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--g0f1-text);
    font-size: 1.5rem;
    border-radius: var(--g0f1-radius-sm);
    transition: all 0.3s ease;
}

.g0f1-menu-nav a:hover {
    background: rgba(191, 54, 12, 0.2);
    color: var(--g0f1-secondary);
}

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

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

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

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

/* Carousel */
.g0f1-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--g0f1-radius);
    margin: 1.6rem 0;
}

.g0f1-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.g0f1-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.g0f1-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--g0f1-radius);
}

.g0f1-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.g0f1-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g0f1-dot-active {
    background: var(--g0f1-secondary);
    transform: scale(1.2);
}

/* Sections */
.g0f1-section {
    padding: 2rem 1.6rem;
}

.g0f1-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--g0f1-text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.g0f1-section-title i {
    color: var(--g0f1-primary);
}

/* Games Grid */
.g0f1-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

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

.g0f1-game-card-title {
    font-size: 1.1rem;
    padding: 0.6rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--g0f1-text);
}

/* Category Header */
.g0f1-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(191, 54, 12, 0.3) 0%, transparent 100%);
    border-left: 4px solid var(--g0f1-primary);
    border-radius: 0 var(--g0f1-radius-sm) var(--g0f1-radius-sm) 0;
}

.g0f1-category-header i {
    font-size: 2.4rem;
    color: var(--g0f1-secondary);
}

.g0f1-category-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--g0f1-text);
}

/* Cards */
.g0f1-card {
    background: var(--g0f1-bg-light);
    border-radius: var(--g0f1-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--g0f1-border);
}

.g0f1-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--g0f1-secondary);
}

.g0f1-card-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--g0f1-text-muted);
}

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

.g0f1-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--g0f1-bg-light);
    border-radius: var(--g0f1-radius-sm);
    border: 1px solid var(--g0f1-border);
}

.g0f1-feature-item i {
    font-size: 2rem;
    color: var(--g0f1-primary);
}

.g0f1-feature-item span {
    font-size: 1.3rem;
    color: var(--g0f1-text);
}

/* Testimonials */
.g0f1-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.g0f1-testimonial {
    background: var(--g0f1-bg-light);
    border-radius: var(--g0f1-radius);
    padding: 1.5rem;
    border-left: 4px solid var(--g0f1-secondary);
}

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

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

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

.g0f1-payment-item {
    background: var(--g0f1-bg-light);
    border-radius: var(--g0f1-radius-sm);
    padding: 1rem 1.5rem;
    border: 1px solid var(--g0f1-border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g0f1-payment-item i {
    font-size: 2.4rem;
    color: var(--g0f1-secondary);
}

.g0f1-payment-item span {
    font-size: 1.3rem;
    color: var(--g0f1-text);
}

/* Winners Showcase */
.g0f1-winners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.g0f1-winner-card {
    background: linear-gradient(135deg, rgba(191, 54, 12, 0.2) 0%, rgba(255, 170, 0, 0.2) 100%);
    border-radius: var(--g0f1-radius);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--g0f1-primary);
}

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

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

.g0f1-winner-player {
    font-size: 1.1rem;
    color: var(--g0f1-text);
    opacity: 0.8;
}

/* App Download */
.g0f1-app-download {
    background: linear-gradient(135deg, rgba(191, 54, 12, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: var(--g0f1-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--g0f1-primary);
}

.g0f1-app-download h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--g0f1-text);
}

.g0f1-app-download p {
    font-size: 1.4rem;
    color: var(--g0f1-text-muted);
    margin-bottom: 1.5rem;
}

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

.g0f1-app-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--g0f1-bg);
    border-radius: var(--g0f1-radius-sm);
    border: 1px solid var(--g0f1-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g0f1-app-btn:hover {
    border-color: var(--g0f1-secondary);
    transform: translateY(-2px);
}

.g0f1-app-btn i {
    font-size: 2.4rem;
    color: var(--g0f1-secondary);
}

.g0f1-app-btn-text {
    text-align: left;
}

.g0f1-app-btn-text small {
    font-size: 1rem;
    color: var(--g0f1-text-muted);
    display: block;
}

.g0f1-app-btn-text span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--g0f1-text);
}

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

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

.g0f1-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: var(--g0f1-radius-sm);
    padding: 0.5rem;
}

.g0f1-nav-item:hover {
    background: rgba(191, 54, 12, 0.2);
}

.g0f1-nav-item.active {
    background: rgba(255, 170, 0, 0.15);
}

.g0f1-nav-item.active .g0f1-nav-icon {
    color: var(--g0f1-secondary);
}

.g0f1-nav-item.active .g0f1-nav-label {
    color: var(--g0f1-secondary);
}

.g0f1-nav-icon {
    font-size: 24px;
    color: var(--g0f1-text-muted);
    margin-bottom: 0.2rem;
    transition: color 0.3s ease;
}

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

/* Footer */
.g0f1-footer {
    background: var(--g0f1-bg-light);
    padding: 2rem 1.6rem;
    margin-top: 2rem;
    border-top: 1px solid var(--g0f1-border);
}

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

.g0f1-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.g0f1-footer-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--g0f1-bg);
    border-radius: var(--g0f1-radius-sm);
    border: 1px solid var(--g0f1-border);
    transition: all 0.3s ease;
}

.g0f1-footer-links a:hover {
    border-color: var(--g0f1-primary);
    color: var(--g0f1-secondary);
}

.g0f1-footer-partners {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.g0f1-footer-partners img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.g0f1-footer-partners img:hover {
    opacity: 1;
}

.g0f1-footer-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--g0f1-text-muted);
}

/* Promo Links */
.g0f1-promo-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--g0f1-gradient);
    color: var(--g0f1-text);
    border-radius: var(--g0f1-radius-sm);
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.g0f1-promo-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--g0f1-shadow);
}

/* Text Utilities */
.g0f1-text-primary {
    color: var(--g0f1-primary);
}

.g0f1-text-secondary {
    color: var(--g0f1-secondary);
}

.g0f1-text-bold {
    font-weight: 700;
}

/* FAQ Section */
.g0f1-faq-item {
    background: var(--g0f1-bg-light);
    border-radius: var(--g0f1-radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--g0f1-border);
    overflow: hidden;
}

.g0f1-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--g0f1-text);
    background: rgba(191, 54, 12, 0.1);
    cursor: pointer;
}

.g0f1-faq-answer {
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
    color: var(--g0f1-text-muted);
    line-height: 1.6;
}

/* Steps List */
.g0f1-steps {
    counter-reset: step;
}

.g0f1-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.g0f1-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--g0f1-gradient);
    color: var(--g0f1-text);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.g0f1-step-content {
    flex: 1;
}

.g0f1-step-content h4 {
    font-size: 1.5rem;
    color: var(--g0f1-text);
    margin-bottom: 0.5rem;
}

.g0f1-step-content p {
    font-size: 1.3rem;
    color: var(--g0f1-text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 430px) {
    .g0f1-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .g0f1-game-card-title {
        font-size: 1rem;
        padding: 0.4rem;
    }

    .g0f1-features-list {
        grid-template-columns: 1fr;
    }

    .g0f1-winners {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .g0f1-header-inner {
        max-width: 1200px;
    }

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

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

    .g0f1-features-list {
        grid-template-columns: repeat(4, 1fr);
    }

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