/* jljl88 app CSS Styles */
/* All classes use s96f- prefix to avoid conflicts */

:root {
    --s96f-primary: #5F9EA0;
    --s96f-dark: #0F0F23;
    --s96f-gold: #D4AF37;
    --s96f-yellow: #FFE135;
    --s96f-accent: #FF5722;
    --s96f-bg: #0F0F23;
    --s96f-text: #FFE135;
    --s96f-border: rgba(212, 175, 55, 0.3);
    --s96f-shadow: rgba(0, 0, 0, 0.5);
    --s96f-gradient: linear-gradient(135deg, #5F9EA0 0%, #D4AF37 100%);
}

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

html {
    font-size: 62.5%;
}

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

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

/* Header Styles */
.s96f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0F0F23 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--s96f-shadow);
}

.s96f-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    height: 56px;
}

.s96f-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--s96f-yellow);
}

.s96f-logo img {
    width: 28px;
    height: 28px;
}

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

/* Button Styles */
.s96f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    background: var(--s96f-gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.s96f-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

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

.s96f-btn-secondary:hover {
    background: var(--s96f-gold);
    color: var(--s96f-dark);
}

/* Mobile Menu */
.s96f-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.s96f-menu-icon,
.s96f-close-icon {
    width: 24px;
    height: 24px;
    color: var(--s96f-yellow);
}

.pro46c-close-icon {
    display: none;
}

.s96f-mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--s96f-dark);
    border-top: 1px solid var(--s96f-border);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.pro46c-hidden {
    transform: translateX(-100%);
}

.pro46c-show {
    transform: translateX(0);
}

.s96f-mobile-menu-list {
    list-style: none;
    padding: 1rem 0;
}

.s96f-mobile-menu-item {
    border-bottom: 1px solid var(--s96f-border);
}

.s96f-mobile-menu-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--s96f-text);
    text-decoration: none;
    font-size: 1.4rem;
    transition: background 0.3s ease;
}

.s96f-mobile-menu-link:hover {
    background: rgba(95, 158, 160, 0.1);
}

/* Carousel */
.s96f-carousel {
    position: relative;
    width: 100%;
    margin: 7rem auto 3rem;
    overflow: hidden;
    border-radius: 12px;
}

.s96f-carousel-wrapper {
    position: relative;
    height: 200px;
}

.pro46c-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

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

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

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

.pro46c-indicator.pro46c-active {
    width: 24px;
    border-radius: 4px;
    background: var(--s96f-yellow);
}

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

.s96f-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.s96f-game-card:hover {
    transform: scale(1.05);
}

.s96f-game-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 8px var(--s96f-shadow);
}

.s96f-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s96f-game-name {
    font-size: 1.1rem;
    color: var(--s96f-text);
    text-align: center;
    line-height: 1.2;
}

/* Sections */
.s96f-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--s96f-border);
}

.s96f-section-title {
    font-size: 2rem;
    color: var(--s96f-yellow);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.s96f-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--s96f-gradient);
    border-radius: 2px;
}

/* Cards */
.s96f-card {
    background: linear-gradient(135deg, rgba(95, 158, 160, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid var(--s96f-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.s96f-card-title {
    font-size: 1.6rem;
    color: var(--s96f-gold);
    margin-bottom: 1rem;
}

.s96f-card-content {
    color: var(--s96f-text);
    line-height: 1.6;
}

/* Feature List */
.s96f-feature-list {
    list-style: none;
    padding: 0;
}

.s96f-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
}

.s96f-feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--s96f-gold);
    font-weight: bold;
    font-size: 1.6rem;
}

/* Bottom Navigation */
.s96f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--s96f-dark);
    border-top: 1px solid var(--s96f-border);
    z-index: 999;
    height: 60px;
}

.s96f-bottom-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro46c-bottom-nav-item {
    flex: 1;
    height: 100%;
}

.pro46c-bottom-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--s96f-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pro46c-bottom-nav-item.pro46c-active a {
    color: var(--s96f-gold);
}

.s96f-nav-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.s96f-nav-text {
    font-size: 1rem;
}

/* Footer */
.s96f-footer {
    padding: 3rem 0 8rem;
    background: var(--s96f-dark);
}

.s96f-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.s96f-footer-link {
    color: var(--s96f-text);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.s96f-footer-link:hover {
    color: var(--s96f-gold);
}

.s96f-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.s96f-partner-icon {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s96f-partner-icon:hover {
    opacity: 1;
}

.s96f-copyright {
    text-align: center;
    color: var(--s96f-text);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Ripple Effect */
.pro46c-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Tooltip */
.pro46c-tooltip {
    position: absolute;
    background: var(--s96f-dark);
    color: var(--s96f-yellow);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.2rem;
    white-space: nowrap;
    z-index: 2000;
    box-shadow: 0 2px 8px var(--s96f-shadow);
}

/* Responsive */
@media (max-width: 430px) {
    .s96f-container {
        padding: 0 1rem;
    }
    
    .s96f-game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .s96f-game-icon {
        width: 60px;
        height: 60px;
    }
    
    .s96f-game-name {
        font-size: 1rem;
    }
}

/* Loading Animation */
.s96f-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--s96f-border);
    border-top-color: var(--s96f-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.s96f-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--s96f-accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
}