/*
 * Jun88 Theme Stylesheet
 * Theme: Jun88 Theme
 */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0f0f1e;
}

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

a:hover {
    color: #e67e22;
}

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

/* Container */
.jx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.jx-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.jx-header .jx-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.jx-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.jx-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f39c12;
    margin: 3px 0;
    transition: 0.3s;
}

.jx-nav-desktop .jx-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.jx-nav-desktop .jx-menu a {
    color: #ffffff;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.jx-nav-desktop .jx-menu a:hover {
    color: #f39c12;
}

.jx-auth {
    display: flex;
    gap: 15px;
}

.jx-btn-login,
.jx-btn-register {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jx-btn-login {
    color: #f39c12;
    border: 2px solid #f39c12;
}

.jx-btn-login:hover {
    background-color: #f39c12;
    color: #1a1a2e;
}

.jx-btn-register {
    background-color: #f39c12;
    color: #1a1a2e;
}

.jx-btn-register:hover {
    background-color: #e67e22;
}

.jx-nav-mobile {
    display: none;
    background-color: #1a1a2e;
    padding: 20px;
}

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

.jx-menu-mobile {
    list-style: none;
}

.jx-menu-mobile li {
    margin-bottom: 15px;
}

.jx-menu-mobile a {
    color: #ffffff;
    display: block;
    padding: 10px 0;
}

/* Hero Section */
.jx-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jx-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
}

.jx-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.jx-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jx-hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.jx-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.jx-btn-primary,
.jx-btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.jx-btn-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.jx-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    color: #1a1a2e;
}

.jx-btn-secondary {
    background: transparent;
    color: #f39c12;
    border: 2px solid #f39c12;
}

.jx-btn-secondary:hover {
    background-color: #f39c12;
    color: #1a1a2e;
}

/* Inner Hero */
.jx-hero-inner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.jx-hero-inner h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.jx-hero-inner p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

/* Brand Intro */
.jx-brand-intro {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-brand-intro h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 30px;
}

.jx-brand-intro p {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Advantages */
.jx-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-advantages h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.jx-advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

.jx-advantage-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.jx-advantage-card h3 {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-advantage-card p {
    color: #cccccc;
    line-height: 1.7;
}

/* Games Section */
.jx-games {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-games h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-game-card {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.jx-game-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.jx-game-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.jx-game-card p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* CTA Section */
.jx-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    text-align: center;
}

.jx-cta h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.jx-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.jx-cta .jx-btn-primary {
    background: #1a1a2e;
    color: #f39c12;
}

.jx-cta .jx-btn-primary:hover {
    background: #0f0f1e;
    color: #f39c12;
}

/* FAQ Section */
.jx-faq {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-faq h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.jx-faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #f39c12;
}

.jx-faq-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.jx-faq-item p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Footer */
.jx-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(243, 156, 18, 0.3);
}

.jx-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.jx-footer-brand h3 {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.jx-footer-brand p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.jx-footer-nav h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.jx-footer-menu {
    list-style: none;
}

.jx-footer-menu li {
    margin-bottom: 10px;
}

.jx-footer-menu a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.jx-footer-menu a:hover {
    color: #f39c12;
}

.jx-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jx-footer-bottom p {
    color: #777777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Steps Section */
.jx-steps {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-steps h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.jx-step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.jx-step-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-step-card p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Timeline Section */
.jx-timeline {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-timeline h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-timeline-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.jx-timeline-list::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #f39c12 0%, #e67e22 100%);
}

.jx-timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.jx-timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 30px;
    z-index: 1;
}

.jx-timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-timeline-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.jx-timeline-content p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Features Section */
.jx-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-features h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.jx-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-feature-item h3 {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-feature-item p {
    color: #cccccc;
    line-height: 1.7;
}

/* Tips Section */
.jx-tips {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-tips h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-tip-box {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.jx-tip-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-tip-box p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Cards Section */
.jx-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-cards h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.jx-card-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

.jx-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.jx-card-item h3 {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-card-item p {
    color: #cccccc;
    line-height: 1.7;
}

/* Requirements Section */
.jx-requirements {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-requirements h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-requirement-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
}

.jx-requirement-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-requirement-box p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Promotions */
.jx-promo-featured {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-promo-featured h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.jx-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.jx-promo-highlight {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
}

.jx-promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.jx-promo-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.jx-promo-card p {
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.jx-promo-list {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-promo-list h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-promo-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.jx-promo-item {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-promo-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.jx-promo-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.jx-promo-content p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Terms Section */
.jx-terms {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-terms h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-term-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-term-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-term-box p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Guide Categories */
.jx-guide-cats {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-guide-cats h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-guide-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

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

.jx-guide-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-guide-card p {
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 15px;
}

.jx-link {
    color: #f39c12;
    font-weight: 600;
}

.jx-link:hover {
    text-decoration: underline;
}

/* Detailed Guides */
.jx-detailed-guides {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-guide-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-guide-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jx-guide-section h2 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 30px;
}

.jx-guide-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.jx-guide-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Methods */
.jx-contact-methods {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-contact-methods h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.jx-contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.jx-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.jx-contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.jx-contact-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-contact-card p {
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 15px;
}

.jx-contact-status {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Support Topics */
.jx-support-topics {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.jx-support-topics h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.jx-topic-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
}

.jx-topic-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.jx-topic-item p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Working Hours */
.jx-working-hours {
    padding: 80px 0;
    background-color: #0f0f1e;
}

.jx-working-hours h2 {
    font-size: 2.2rem;
    color: #f39c12;
    text-align: center;
    margin-bottom: 50px;
}

.jx-hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jx-hours-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.jx-hours-box h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.jx-hours-box p {
    color: #aaaaaa;
    line-height: 1.7;
}

/* Image Styles */
.jx-hero-image,
.jx-brand-image,
.jx-advantages-image,
.jx-games-image,
.jx-cta-image,
.jx-faq-images,
.jx-tips-image,
.jx-requirements-image,
.jx-terms-image,
.jx-faq-image {
    margin: 30px 0;
    text-align: center;
}

.jx-hero-image img,
.jx-brand-image img,
.jx-advantages-image img,
.jx-games-image img,
.jx-cta-image img,
.jx-faq-images img,
.jx-tips-image img,
.jx-requirements-image img,
.jx-terms-image img,
.jx-faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.jx-hero-image img:hover,
.jx-brand-image img:hover,
.jx-advantages-image img:hover,
.jx-games-image img:hover,
.jx-cta-image img:hover,
.jx-faq-images img:hover,
.jx-tips-image img:hover,
.jx-requirements-image img:hover,
.jx-terms-image img:hover,
.jx-faq-image img:hover {
    transform: scale(1.02);
}

.jx-faq-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.jx-faq-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .jx-toggle {
        display: flex;
    }

    .jx-nav-desktop {
        display: none;
    }

    .jx-auth {
        display: none;
    }

    .jx-hero {
        padding: 120px 0 60px;
    }

    .jx-hero h1 {
        font-size: 2rem;
    }

    .jx-hero p {
        font-size: 1rem;
    }

    .jx-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .jx-hero-inner h1 {
        font-size: 1.8rem;
    }

    .jx-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jx-timeline-list::before {
        left: 20px;
    }

    .jx-timeline-marker {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
        margin-right: 20px;
    }

    .jx-promo-item {
        flex-direction: column;
        text-align: center;
    }

    .jx-promo-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .jx-hero h1 {
        font-size: 1.6rem;
    }

    .jx-advantages-grid,
    .jx-games-grid,
    .jx-steps-grid,
    .jx-features-grid,
    .jx-tips-content,
    .jx-cards-grid,
    .jx-requirements-content,
    .jx-promo-grid,
    .jx-promo-items,
    .jx-terms-content,
    .jx-guide-grid,
    .jx-contact-grid,
    .jx-topics-grid,
    .jx-hours-content {
        grid-template-columns: 1fr;
    }
}
