/* Jun88 Theme Custom Styles */

/* Additional custom styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #f39c12;
    color: #ffffff;
}

/* Mobile menu styles */
.nav-mobile {
    display: none;
    background: #16213e;
    padding: 20px;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile .nav-menu {
    flex-direction: column;
    gap: 10px;
}

.header-actions-mobile {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-actions-mobile .btn {
    text-align: center;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #f39c12;
    color: #ffffff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #f39c12;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.game-card,
.promo-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero particles effect placeholder */
.hero-section {
    position: relative;
}

/* Section divider */
.section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
    margin-bottom: 80px;
    opacity: 0.3;
}

.section:first-of-type::before {
    display: none;
}

/* FAQ active state */
.faq-item.active {
    border-color: #f39c12;
}

.faq-item.active .faq-question {
    color: #f39c12;
}

/* Contact cards hover */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
}

/* Page header gradient text */
.page-title {
    background: linear-gradient(135deg, #ffffff 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content wrapper styles */
.content-wrapper h2 {
    position: relative;
    padding-left: 20px;
}

.content-wrapper h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #f39c12, #e74c3c);
    border-radius: 3px;
}

/* Steps list enhancement */
.steps-list li {
    background: rgba(243, 156, 18, 0.05);
    padding: 20px 20px 20px 70px;
    border-radius: 10px;
    border-left: 3px solid #f39c12;
}

.steps-list li::before {
    top: 20px;
}

/* Footer link hover */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .game-card,
    .promo-card {
        padding: 25px 20px;
    }
    
    .content-wrapper h2 {
        font-size: 1.4rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}
