/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #fbbf24;
    --accent-dark: #f59e0b;
    --text: #ffffff;
    --text-light: #cbd5e1;
    --success: #10b981;
    --danger: #ef4444;
}
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Utility Classes */
.text-gold { color: var(--accent); }
.text-white { color: var(--text); }
.text-red { color: var(--danger); }
.text-green { color: var(--success); }

/* Header & Navigation */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #334155;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    background: var(--danger);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #475569;
}

.btn-login:hover {
    background: #475569;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark), #d97706);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    background: var(--secondary);
    padding: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid #334155;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 160px 0 80px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: left;
    max-width: 500px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 1.5rem;
}

/* Section Common Styles */
.section {
    padding: 20px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--accent);
    text-align: left;
    line-height: 1.4;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: left;
}

/* About Section */
.about-section {
    background: var(--secondary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.highlight-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    text-align: left;
}

.highlight-box .section-subtitle {
    text-align: left;
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: #334155;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #475569;
    transition: all 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-align: left;
    font-size: 1.1rem;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.6;
}

/* Games Section - FIXED ALIGNMENT */
.games-section {
    background: var(--primary);
}

.games-section .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-section .section-subtitle {
    text-align: center;
    margin: 2rem auto 1rem;
}

.games-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 3rem;
}

.games-track {
    display: flex;
    gap: 20px;
    animation: slide 30s linear infinite;
    width: max-content;
}

.game-card {
    flex: 0 0 280px;
    background: var(--secondary);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.game-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.game-info {
    padding: 1.5rem;
    text-align: left;
}

.game-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.game-provider {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    text-align: left;
}

.game-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.game-badge.new {
    background: var(--danger);
    color: white;
}

.game-badge.exclusive {
    background: var(--accent);
    color: var(--primary);
}

.game-badge.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

/* Animation for infinite sliding */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.games-slider:hover .games-track {
    animation-play-state: paused;
}

/* Gradient overlays for seamless looping */
.games-slider::before,
.games-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.games-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.games-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

/* Other Games Section */
.other-games-section {
    background: var(--secondary);
}

.other-games-section .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-category {
    background: #334155;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-category:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
}

/* Bonuses Section */
.bonuses-section {
    background: var(--primary);
}

.bonuses-section .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, #334155, #475569);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.bonus-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.bonus-card.welcome {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.bonus-card.cashback {
    background: linear-gradient(135deg, #059669, #10b981);
}

.bonus-card.vip {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.bonus-text {
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

/* How to Section - FIXED ALIGNMENT */
.how-to-section {
    background: var(--secondary);
}

.how-to-section .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-section .section-subtitle {
    text-align: center;
    margin: 3rem auto 2rem;
}

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

.step-card {
    background: #334155;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
    text-align: center;
}

.step-desc {
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* Payments Section - FIXED ALIGNMENT */
.payments-section {
    background: var(--primary);
}

.payments-section .section-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.payments-section .section-subtitle {
    text-align: center;
    margin: 3rem auto 2rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.payment-method {
    background: var(--secondary);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 1px solid #334155;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-method:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 1.5rem;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.features-grid-small .feature-card {
    text-align: center;
}

.features-grid-small .feature-title {
    text-align: center;
}

.features-grid-small .feature-desc {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: var(--secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    background: #334155;
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    text-align: left;
}

.faq-question:hover {
    background: #3c4a5e;
}

.faq-answer {
    padding: 1.5rem;
    background: #2d3748;
    color: var(--text-light);
    display: none;
    text-align: left;
    line-height: 1.6;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: var(--primary);
    border-top: 1px solid #334155;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-text {
    color: #94a3b8;
    line-height: 1.6;
    text-align: left;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: left;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.license-badge {
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.license-text {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .hero-disclaimer {
        text-align: center;
    }
    
    .hero-disclaimer {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Menu Styles - FIXED */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        z-index: 1000;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--accent);
    }
    
    .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-card {
        flex: 0 0 250px;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods {
        gap: 1rem;
    }
    
    .payment-method {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-category {
        padding: 1.5rem;
    }
    
    .games-slider::before,
    .games-slider::after {
        width: 50px;
    }
    
    /* Mobile FAQ Fixes */
    .faq-question {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 1.25rem;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-buttons .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .game-card {
        flex: 0 0 220px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .highlight-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 0.675rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .mobile-auth .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-image-container {
        margin-top: 20px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .game-card:hover {
        transform: none;
        border-color: transparent;
    }
    
    .feature-card:hover {
        transform: none;
        border-color: #475569;
    }
    
    .bonus-card:hover {
        transform: none;
        border-color: transparent;
    }
    
    .step-card:hover {
        transform: none;
        border-color: transparent;
    }
    
    .game-category:hover {
        transform: none;
        border-color: transparent;
    }
}
/* Simple Glow and Float */
.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

@keyframes simple-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-image:hover {
    animation: simple-float 2s ease-in-out infinite;
  
}
.text-center {
    text-align: center;
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-buttons .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .game-card {
        flex: 0 0 220px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .highlight-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
}
/* For smaller logo in navigation */
.nav-container .logo img {
    width: 120px;
    height: auto;
}

/* For responsive logo */
.nav-container .logo img {
    max-width: 100%;
    height: auto;
    width: clamp(100px, 15vw, 150px);
}
/* styles.css - Juan Play Withdrawal Guide Styles */
/* Unique ID: juan-play-withdrawal-guide */

#juan-play-withdrawal-guide {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.jp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.jp-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.jp-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jp-breadcrumb a:hover {
    color: #D73E3D;
}

.jp-breadcrumb span {
    color: #D73E3D;
    font-weight: 300;
}

/* Header Styles */
.jp-header {
    text-align: center;
    padding: 30px 0;
}

.jp-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a2e;
}

.jp-subtitle {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
    font-weight: 400;
}

.jp-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
}

.jp-meta i {
    margin-right: 5px;
}

/* Main Content */
.jp-main-content {
    padding: 20px 0 40px;
}

/* Section Styles */
.jp-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #D73E3D;
}

.jp-intro {
    font-size: 1.1rem;
    background-color: #f8f9fa;
}

/* Headings - Using the requested color #D73E3D */
.jp-heading {
    color: #D73E3D;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.jp-heading i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Withdrawal Methods Grid */
.jp-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jp-method-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #D73E3D;
}

.jp-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jp-method-icon {
    font-size: 2.5rem;
    color: #D73E3D;
    margin-bottom: 15px;
}

.jp-method-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Steps Styles */
.jp-steps {
    margin-top: 30px;
}

.jp-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.jp-step-number {
    background-color: #D73E3D;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.jp-step-content {
    flex-grow: 1;
}

.jp-step-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Rules Styles */
.jp-rules {
    margin-top: 25px;
}

.jp-rule {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.jp-rule:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jp-rule-icon {
    background-color: rgba(215, 62, 61, 0.1);
    color: #D73E3D;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.jp-rule-content {
    flex-grow: 1;
}

.jp-rule-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Timeline Styles */
.jp-timeline {
    margin: 25px 0;
    border-left: 3px solid #D73E3D;
    padding-left: 25px;
}

.jp-time-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.jp-time-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.jp-time-method {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.jp-time-duration {
    font-weight: 500;
    color: #555;
    font-size: 1.1rem;
}

.jp-note {
    background-color: rgba(215, 62, 61, 0.05);
    border-left: 4px solid #D73E3D;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    margin-top: 25px;
}

/* Issues Styles */
.jp-issues {
    margin-top: 25px;
}

.jp-issue {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.jp-issue:last-child {
    margin-bottom: 0;
}

.jp-issue-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.jp-issue-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.jp-issue-list li {
    margin-bottom: 8px;
}

/* Conclusion */
.jp-conclusion {
    background-color: #f0f7ff;
    border-left: 4px solid #D73E3D;
}

/* CTA Section */
.jp-cta {
    background-color: rgba(215, 62, 61, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(215, 62, 61, 0.2);
}

.jp-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.jp-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Section */
.jp-share {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.jp-share p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.jp-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jp-share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jp-share-btn:nth-child(1):hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

.jp-share-btn:nth-child(2):hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.jp-share-btn:nth-child(3):hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.jp-share-btn:nth-child(4):hover {
    background-color: #D73E3D;
    color: white;
    border-color: #D73E3D;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .jp-main-title {
        font-size: 2.2rem;
    }
    
    .jp-heading {
        font-size: 1.6rem;
    }
    
    .jp-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .jp-step {
        flex-direction: column;
    }
    
    .jp-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jp-rule {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .jp-rule-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jp-cta-buttons {
        flex-direction: column;
    }
    
    .jp-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jp-share-btn {
        width: 200px;
        justify-content: center;
    }
    
    .jp-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
/* ===== BLOG PAGE SPECIFIC STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(rgba(0, 48, 73, 0.9), rgba(0, 71, 110, 0.9)), 
                url('futuristic-casino-architecture.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 60px;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: white;
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.blog-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.blog-search-box input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Main Blog Content */
.blog-main {
    padding-bottom: 60px;
}

/* Blog Controls */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-category-btn {
    padding: 10px 25px;
    border: 2px solid #e0e6ef;
    background: white;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn:hover {
    border-color: #003049;
    color: #003049;
}

.blog-category-btn.active {
    background: #003049;
    color: white;
    border-color: #003049;
}

/* Blog Cards Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #003049;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-date i {
    color: #f77f00;
}

.blog-card-title {
    font-size: 1.5rem;
    color: #003049;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #f77f00;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003049 0%, #00476e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #003049;
    font-size: 0.95rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.blog-read-btn {
    padding: 8px 20px;
    background: #003049;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.blog-read-btn:hover {
    background: #00476e;
}

/* Featured Blog Card */
.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card.featured .blog-card-image {
    height: 100%;
}

/* Newsletter Section */
.blog-newsletter {
    background: linear-gradient(135deg, #003049 0%, #00476e 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #f77f00;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e97100;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e6ef;
    border-radius: 8px;
    background: white;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: #003049;
    color: #003049;
}

.page-btn.active {
    background: #003049;
    color: white;
    border-color: #003049;
}

.page-btn.prev,
.page-btn.next {
    width: auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 20px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-categories {
        justify-content: center;
    }
    
    .blog-search-box {
        width: 100%;
    }
    
    .nav-link.active {
        color: #f77f00;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 50px 20px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== MOBILE MENU & INTERACTION FIXES ===== */

/* Mobile Menu Active State */
.mobile-menu.active {
    display: block !important;
}

/* FAQ Accordion Active State */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    display: block;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        width: 100%;
        overflow-x: hidden;
    }
}

/* Mobile Games Slider Fix */
@media (max-width: 768px) {
    @keyframes slide-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .games-track {
        animation: slide-mobile 20s linear infinite;
    }
}

/* Smooth transitions for all interactive elements */
.game-card,
.feature-card,
.bonus-card,
.step-card,
.game-category {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu button - show only on mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

/* Mobile menu container */
.mobile-menu {
    display: none;
    background: #1a1a1a;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Mobile navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    transition: background 0.3s;
    border-radius: 4px;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-auth {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .desktop-nav, .auth-buttons {
        display: none;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}
/* Center the banner image */
.jp-banner {
    position: relative;
    width: 100%;
    height: 600px; /* Default height for desktop */
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Center the image inside the banner */
.jp-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will center the image while covering the area */
    object-position: center center; /* Explicitly center the image */
    display: block;
}

/* If you're using a container inside .jp-banner */
.jp-banner-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* For the overlay - ensure it covers the entire centered area */
.jp-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    justify-content: center; /* Center overlay content horizontally */
    align-items: center; /* Center overlay content vertically */
    text-align: center; /* Center text */
}

/* Center the text within the overlay */
.jp-banner-text {
    color: white;
    max-width: 600px;
    text-align: center; /* Ensure text is centered */
    padding: 0 20px; /* Add some padding on sides for mobile */
}

.jp-banner-text span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #FFD700;
}

.jp-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .jp-banner {
        height: 250px; /* Reduced height for mobile */
        margin: 15px 0 25px 0;
    }
    
    .jp-banner-text span {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .jp-banner-text p {
        font-size: 0.9rem;
    }
    
    .jp-banner-overlay {
        padding: 0 20px;
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    }
}

@media (max-width: 480px) {
    .jp-banner {
        height: 200px;
        border-radius: 8px;
    }
    
    .jp-banner-text span {
        font-size: 1.3rem;
    }
    
    .jp-banner-text p {
        font-size: 0.85rem;
    }
}

/* ===== JUAN PLAY REGISTRATION GUIDE - UNIQUE STYLES ===== */
/* Unique ID: juan-play-register-guide */

#juan-play-register-guide {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.jp-register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.jp-register-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.jp-register-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jp-register-breadcrumb a:hover {
    color: #D73E3D;
}

.jp-register-breadcrumb span {
    color: #D73E3D;
    font-weight: 500;
}

/* Header Styles */
.jp-register-header {
    text-align: center;
    padding: 30px 0;
}

.jp-register-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a2e;
}

.jp-register-subtitle {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
    font-weight: 400;
}

.jp-register-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
}

.jp-register-meta i {
    margin-right: 5px;
}

/* Main Content */
.jp-register-main-content {
    padding: 20px 0 40px;
}

/* Section Styles */
.jp-register-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #D73E3D;
}

.jp-register-intro {
    font-size: 1.1rem;
    background-color: #f8f9fa;
}

/* Headings - Using the requested color #D73E3D */
.jp-register-heading {
    color: #D73E3D;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.jp-register-heading i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Purpose List */
.jp-register-purpose-list {
    padding-left: 20px;
    margin: 15px 0;
}

.jp-register-purpose-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* Requirements Grid */
.jp-register-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jp-register-requirement-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #D73E3D;
    text-align: center;
}

.jp-register-requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jp-register-requirement-icon {
    font-size: 2.5rem;
    color: #D73E3D;
    margin-bottom: 15px;
}

.jp-register-requirement-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Note Styles */
.jp-register-note {
    background-color: rgba(215, 62, 61, 0.05);
    border-left: 4px solid #D73E3D;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    margin-top: 25px;
}

/* Registration Steps Styles */
.jp-register-steps-container {
    margin-top: 30px;
}

.jp-register-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.jp-register-step-number {
    background-color: #D73E3D;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.jp-register-step-content {
    flex-grow: 1;
}

.jp-register-step-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Registration Details Lists */
.jp-register-details-list,
.jp-register-kyc-list {
    padding-left: 20px;
    margin: 15px 0;
}

.jp-register-details-list li,
.jp-register-kyc-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Features Section */
.jp-register-features {
    margin-top: 25px;
}

.jp-register-feature {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.jp-register-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jp-register-feature-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.jp-register-feature-title i {
    margin-right: 10px;
    color: #D73E3D;
}

/* Game Providers */
.jp-register-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.jp-register-provider-badge {
    background-color: rgba(215, 62, 61, 0.1);
    color: #D73E3D;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(215, 62, 61, 0.2);
}

/* Sports List */
.jp-register-sports-list {
    padding-left: 20px;
    margin: 15px 0;
}

.jp-register-sports-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Payment Methods */
.jp-register-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.jp-register-payment-method {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    font-weight: 500;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.jp-register-payment-method:hover {
    border-color: #D73E3D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(215, 62, 61, 0.1);
}

.jp-register-payment-method i {
    font-size: 1.5rem;
    color: #D73E3D;
}

/* Security Features */
.jp-register-security-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.jp-register-security-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 3px solid #D73E3D;
}

.jp-register-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jp-register-security-icon {
    font-size: 2rem;
    color: #D73E3D;
    margin-bottom: 15px;
}

.jp-register-security-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.jp-register-security-note {
    background-color: rgba(215, 62, 61, 0.05);
    border-left: 4px solid #D73E3D;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    margin-top: 25px;
    font-size: 0.95rem;
}

/* Eligibility List */
.jp-register-eligibility-list {
    margin: 20px 0;
}

.jp-register-eligibility-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.eligibility-check {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

.jp-register-eligibility-item span {
    font-size: 1.05rem;
    color: #333;
}

.jp-register-eligibility-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* Conclusion */
.jp-register-conclusion {
    background-color: #f0f7ff;
    border-left: 4px solid #D73E3D;
}

/* CTA Section */
.jp-register-cta {
    background-color: rgba(215, 62, 61, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(215, 62, 61, 0.2);
}

.jp-register-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.jp-register-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Section */
.jp-register-share {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.jp-register-share p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.jp-register-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jp-register-share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jp-register-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jp-register-share-btn:nth-child(1):hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

.jp-register-share-btn:nth-child(2):hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.jp-register-share-btn:nth-child(3):hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.jp-register-share-btn:nth-child(4):hover {
    background-color: #D73E3D;
    color: white;
    border-color: #D73E3D;
}

/* ===== BANNER STYLES FOR REGISTRATION GUIDE ===== */
.jp-register-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jp-register-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.jp-register-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jp-register-banner-text {
    color: white;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.jp-register-banner-text span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #FFD700;
}

.jp-register-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== HEADER STYLES FOR REGISTRATION GUIDE ===== */
.site-header-register {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-registration {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container-registration {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-register {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.text-white-reg {
    color: white !important;
}

.desktop-nav-register {
    display: flex;
    gap: 30px;
}

.nav-link-reg {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-reg:hover {
    color: #D73E3D;
}

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

.btn-register {
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login-reg {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-login-reg:hover {
    background-color: white;
    color: #1a1a2e;
}

.btn-primary-reg {
    background-color: #D73E3D;
    color: white;
}

.btn-primary-reg:hover {
    background-color: #c23635;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 62, 61, 0.3);
}

.btn-primary-cta {
    background-color: #D73E3D;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-primary-cta:hover {
    background-color: #c23635;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 62, 61, 0.3);
}

.btn-register-cta {
    background-color: #1a1a2e;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-register-cta:hover {
    background-color: #0f0f1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn-reg {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu-reg {
    display: none;
    background: #1a1a1a;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.container-mobile-reg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mobile-nav-link-reg {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    transition: background 0.3s;
    border-radius: 4px;
    font-size: 16px;
}

.mobile-nav-link-reg:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-auth-reg {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

/* ===== FOOTER STYLES FOR REGISTRATION GUIDE ===== */
.footer-register {
    background-color: #1a1a2e;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.container-footer-register {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content-register {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about-register {
    display: flex;
    flex-direction: column;
}

.footer-logo-register {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text-register {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.license-badge-register {
    background-color: rgba(215, 62, 61, 0.2);
    color: #ff6b6b;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    border: 1px solid rgba(215, 62, 61, 0.4);
}

.license-text-register {
    color: #999;
    font-size: 0.9rem;
}

.footer-heading-register {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.footer-links-register {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-register li {
    margin-bottom: 12px;
}

.footer-links-register a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-register a:hover {
    color: #D73E3D;
}

.footer-bottom-register {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d2d44;
    color: #999;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .jp-register-main-title {
        font-size: 2.2rem;
    }
    
    .jp-register-heading {
        font-size: 1.6rem;
    }
    
    .jp-register-requirements-grid,
    .jp-register-security-features {
        grid-template-columns: 1fr;
    }
    
    .jp-register-step {
        flex-direction: column;
    }
    
    .jp-register-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jp-register-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jp-register-cta-buttons {
        flex-direction: column;
    }
    
    .jp-register-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jp-register-share-btn {
        width: 200px;
        justify-content: center;
    }
    
    .jp-register-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* Banner Responsive */
    .jp-register-banner {
        height: 250px;
        margin: 15px 0 25px 0;
    }
    
    .jp-register-banner-text span {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .jp-register-banner-text p {
        font-size: 0.9rem;
    }
    
    /* Header Mobile Menu */
    .mobile-menu-btn-reg {
        display: block;
    }
    
    .desktop-nav-register, .auth-buttons-register {
        display: none;
    }
    
    .footer-content-register {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jp-register-banner {
        height: 200px;
        border-radius: 8px;
    }
    
    .jp-register-banner-text span {
        font-size: 1.3rem;
    }
    
    .jp-register-banner-text p {
        font-size: 0.85rem;
    }
    
    .jp-register-section {
        padding: 20px;
    }
    
    .jp-register-payment-methods {
        grid-template-columns: 1fr;
    }
    
    .jp-register-providers {
        justify-content: center;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-reg {
        display: none !important;
    }
}

/* Mobile menu active state */
.mobile-menu-reg.active {
    display: block !important;
}

/* ===== JUAN PLAY DEPOSIT GUIDE - UNIQUE STYLES ===== */
/* Following the exact same pattern as Registration Guide */

#juanplay-deposit-guide {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.jpd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.jpd-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.jpd-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jpd-breadcrumb a:hover {
    color: #fbbf24;
}

.jpd-breadcrumb span {
    color: #fbbf24;
    font-weight: 500;
}

/* Header Styles */
.jpd-header {
    text-align: center;
    padding: 30px 0;
}

.jpd-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a2e;
}

.jpd-subtitle {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
    font-weight: 400;
}

.jpd-subtitle a {
    color: #fbbf24;
    text-decoration: none;
}

.jpd-subtitle a:hover {
    text-decoration: underline;
}

.jpd-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
}

.jpd-meta i {
    margin-right: 5px;
}

/* Main Content */
.jpd-main-content {
    padding: 20px 0 40px;
}

/* Section Styles */
.jpd-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #fbbf24;
}

.jpd-intro {
    font-size: 1.1rem;
    background-color: #f8f9fa;
}

/* Headings - Using your accent color #fbbf24 */
.jpd-heading {
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.jpd-heading i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.jpd-section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Security Features */
.jpd-security-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jpd-security-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
    text-align: center;
}

.jpd-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpd-security-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.jpd-security-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.jpd-security-note {
    background-color: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    font-style: italic;
    margin-top: 25px;
}

/* Methods Grid */
.jpd-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jpd-method-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
}

.jpd-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpd-method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.jpd-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.gcash-icon { background: linear-gradient(135deg, #00a859, #009849); }
.maya-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bank-icon { background: linear-gradient(135deg, #059669, #047857); }
.grabpay-icon { background: linear-gradient(135deg, #3cba54, #2ca843); }
.crypto-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

.jpd-method-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.jpd-method-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.jpd-method-info {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

.jpd-method-info i {
    margin-right: 5px;
}

/* Steps Container */
.jpd-steps-container {
    margin-top: 30px;
}

.jpd-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.jpd-step-number {
    background-color: #fbbf24;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.jpd-step-content {
    flex-grow: 1;
}

.jpd-step-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Process Note */
.jpd-process-note {
    background-color: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.jpd-process-note i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 2px;
}

.jpd-process-note p {
    margin: 0;
}

/* Post Deposit Content */
.jpd-post-deposit {
    margin-top: 20px;
}

.jpd-activities-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.jpd-activities-list li {
    margin-bottom: 12px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.jpd-activities-list i {
    color: #fbbf24;
}

/* Feature Highlight */
.jpd-feature-highlight {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.jpd-feature-highlight-icon {
    font-size: 2rem;
    color: #fbbf24;
}

.jpd-feature-highlight-content h4 {
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

/* Limits Container */
.jpd-limits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.jpd-limit-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
}

.jpd-limit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpd-limit-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.jpd-limit-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Responsibility Note */
.jpd-responsibility-note {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.jpd-responsibility-note i {
    font-size: 2rem;
    color: #fbbf24;
}

.jpd-responsibility-note h4 {
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

/* Troubleshooting Grid */
.jpd-troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jpd-issue-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
}

.jpd-issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpd-issue-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.jpd-issue-number {
    background-color: #fbbf24;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.jpd-issue-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.jpd-issue-description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.jpd-solution {
    background-color: rgba(251, 191, 36, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.jpd-solution-title {
    color: #fbbf24;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
}

/* Support Contact */
.jpd-support-contact {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.jpd-support-icon {
    font-size: 2.5rem;
    color: #fbbf24;
}

.jpd-support-content h4 {
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

/* Conclusion */
.jpd-conclusion {
    background-color: #f0f7ff;
    border-left: 4px solid #fbbf24;
}

/* Summary Box */
.jpd-summary-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.jpd-summary-point {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.jpd-summary-point:last-child {
    margin-bottom: 0;
}

.jpd-summary-point i {
    font-size: 1.8rem;
    color: #fbbf24;
}

.jpd-summary-point h4 {
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

.jpd-summary-point p {
    margin: 0;
    color: #555;
}

/* CTA Section */
.jpd-cta {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.jpd-cta-content h3 {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.jpd-cta-content h3 i {
    color: #fbbf24;
}

.jpd-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.jpd-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-deposit {
    background-color: #fbbf24;
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-deposit:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Share Section */
.jpd-share {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.jpd-share p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.jpd-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jpd-share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jpd-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jpd-share-btn:nth-child(1):hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

.jpd-share-btn:nth-child(2):hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.jpd-share-btn:nth-child(3):hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.jpd-share-btn:nth-child(4):hover {
    background-color: #fbbf24;
    color: #1a1a2e;
    border-color: #fbbf24;
}

/* ===== BANNER STYLES FOR DEPOSIT GUIDE ===== */
.jpd-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jpd-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.jpd-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jpd-banner-text {
    color: white;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.jpd-banner-text span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #fbbf24;
}

.jpd-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .jpd-main-title {
        font-size: 2.2rem;
    }
    
    .jpd-heading {
        font-size: 1.6rem;
    }
    
    .jpd-security-features,
    .jpd-methods-grid,
    .jpd-limits-container,
    .jpd-troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .jpd-step {
        flex-direction: column;
    }
    
    .jpd-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jpd-cta-buttons {
        flex-direction: column;
    }
    
    .jpd-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jpd-share-btn {
        width: 200px;
        justify-content: center;
    }
    
    .jpd-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* Banner Responsive */
    .jpd-banner {
        height: 250px;
        margin: 15px 0 25px 0;
    }
    
    .jpd-banner-text span {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .jpd-banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .jpd-banner {
        height: 200px;
        border-radius: 8px;
    }
    
    .jpd-banner-text span {
        font-size: 1.5rem;
    }
    
    .jpd-banner-text p {
        font-size: 0.9rem;
    }
    
    .jpd-section {
        padding: 20px;
    }
}

/* Mobile menu active state for consistency */
.mobile-menu.active {
    display: block !important;
}

/* ===== JUAN PLAY APP DOWNLOAD GUIDE - ARTICLE STYLES ONLY ===== */
/* Styles only for the article content, no header/footer styles */

#juanplay-app-guide {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.jpa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.jpa-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.jpa-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jpa-breadcrumb a:hover {
    color: #fbbf24;
}

.jpa-breadcrumb span {
    color: #fbbf24;
    font-weight: 500;
}

/* Header Styles */
.jpa-header {
    text-align: center;
    padding: 30px 0;
}

.jpa-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a2e;
}

.jpa-subtitle {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #555;
    font-weight: 400;
}

.jpa-subtitle a {
    color: #fbbf24;
    text-decoration: none;
}

.jpa-subtitle a:hover {
    text-decoration: underline;
}

.jpa-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
}

.jpa-meta i {
    margin-right: 5px;
}

/* Main Content */
.jpa-main-content {
    padding: 20px 0 40px;
}

/* Section Styles */
.jpa-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #fbbf24;
}

.jpa-intro {
    font-size: 1.1rem;
    background-color: #f8f9fa;
}

/* Headings - Using accent color #fbbf24 */
.jpa-heading {
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.jpa-heading i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.jpa-section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Features Grid */
.jpa-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jpa-feature-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
    text-align: center;
}

.jpa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpa-feature-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.jpa-feature-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Security Warning Box */
.jpa-security-warning {
    margin-top: 30px;
}

.jpa-warning-box {
    background-color: rgba(255, 68, 68, 0.05);
    border-left: 4px solid #ff4444;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.jpa-warning-icon {
    font-size: 2rem;
    color: #ff4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.jpa-warning-content h3 {
    color: #ff4444;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}

.jpa-warning-content a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.jpa-warning-content a:hover {
    text-decoration: underline;
}

/* Steps Container */
.jpa-steps-container {
    margin-top: 30px;
}

.jpa-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.jpa-step-number {
    background-color: #fbbf24;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.jpa-step-content {
    flex-grow: 1;
}

.jpa-step-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.jpa-step-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.jpa-step-content strong {
    color: #1a1a2e;
}

.jpa-step-content a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.jpa-step-content a:hover {
    text-decoration: underline;
}

/* Device Compatibility */
.jpa-device-compatibility {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.jpa-device-compatibility h4 {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jpa-device-compatibility h4 i {
    color: #fbbf24;
}

.jpa-device-compatibility p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* First Steps Cards */
.jpa-first-steps {
    margin-top: 30px;
}

.jpa-step-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
}

.jpa-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.jpa-step-card-number {
    background-color: #fbbf24;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.jpa-step-card-content h3 {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.jpa-step-card-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Troubleshooting Grid */
.jpa-troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jpa-issue-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #fbbf24;
}

.jpa-issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.jpa-issue-header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jpa-issue-title {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.jpa-issue-header i {
    color: #ff4444;
    font-size: 1.2rem;
}

.jpa-issue-solution {
    background-color: rgba(251, 191, 36, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.jpa-issue-solution strong {
    color: #fbbf24;
    display: block;
    margin-bottom: 5px;
}

.jpa-issue-solution p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Support Contact */
.jpa-support-contact {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.jpa-support-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.jpa-support-content h4 {
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}

.jpa-support-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Comparison Table */
.jpa-comparison-table {
    margin-top: 30px;
    overflow-x: auto;
}

.jpa-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.jpa-comparison-table thead {
    background-color: #1a1a2e;
}

.jpa-comparison-table th {
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.jpa-comparison-table tbody tr {
    border-bottom: 1px solid #eee;
}

.jpa-comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.jpa-comparison-table tbody tr:hover {
    background-color: rgba(251, 191, 36, 0.05);
}

.jpa-comparison-table td {
    padding: 15px 20px;
    color: #555;
}

.jpa-comparison-table td strong {
    color: #1a1a2e;
}

.jpa-comparison-table td i {
    margin-right: 8px;
}

.jpa-comparison-table .green {
    color: #10b981;
}

.jpa-comparison-table .red {
    color: #ef4444;
}

.jpa-comparison-table .orange {
    color: #f59e0b;
}

.jpa-comparison-table .fas.fa-check-circle.green {
    color: #10b981;
}

.jpa-comparison-table .fas.fa-times-circle.red {
    color: #ef4444;
}

.jpa-comparison-table .fas.fa-check.orange {
    color: #f59e0b;
}

/* Conclusion */
.jpa-conclusion {
    background-color: #f0f7ff;
    border-left: 4px solid #fbbf24;
}

.jpa-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.jpa-conclusion strong {
    color: #1a1a2e;
}

/* Benefits Summary */
.jpa-benefits-summary {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.jpa-benefit {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.jpa-benefit:last-child {
    margin-bottom: 0;
}

.jpa-benefit i {
    font-size: 1.8rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.jpa-benefit h4 {
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
}

.jpa-benefit p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.jpa-cta {
    background-color: rgba(251, 191, 36, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.jpa-cta-content h3 {
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.jpa-cta-content h3 i {
    color: #fbbf24;
}

.jpa-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.jpa-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download {
    background-color: #fbbf24;
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-download:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Final Note */
.jpa-final-note {
    background-color: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.jpa-final-note i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.jpa-final-note p {
    margin: 0;
    color: #555;
}

.jpa-final-note strong {
    color: #1a1a2e;
}

/* Share Section */
.jpa-share {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.jpa-share p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.jpa-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jpa-share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jpa-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jpa-share-btn:nth-child(1):hover {
    background-color: #4267B2;
    color: white;
    border-color: #4267B2;
}

.jpa-share-btn:nth-child(2):hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.jpa-share-btn:nth-child(3):hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.jpa-share-btn:nth-child(4):hover {
    background-color: #fbbf24;
    color: #1a1a2e;
    border-color: #fbbf24;
}

/* ===== BANNER STYLES FOR APP DOWNLOAD GUIDE ===== */
.jpa-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jpa-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.jpa-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.jpa-banner-text {
    color: white;
    max-width: 600px;
    text-align: center;
    padding: 0 20px;
}

.jpa-banner-text span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: #fbbf24;
}

.jpa-banner-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .jpa-main-title {
        font-size: 2.2rem;
    }
    
    .jpa-heading {
        font-size: 1.6rem;
    }
    
    .jpa-features-grid,
    .jpa-troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .jpa-step {
        flex-direction: column;
    }
    
    .jpa-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .jpa-step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .jpa-step-card-number {
        margin: 0 auto 15px;
    }
    
    .jpa-cta-buttons {
        flex-direction: column;
    }
    
    .jpa-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jpa-share-btn {
        width: 200px;
        justify-content: center;
    }
    
    .jpa-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .jpa-comparison-table table {
        font-size: 0.9rem;
    }
    
    /* Banner Responsive */
    .jpa-banner {
        height: 250px;
        margin: 15px 0 25px 0;
    }
    
    .jpa-banner-text span {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .jpa-banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .jpa-banner {
        height: 200px;
        border-radius: 8px;
    }
    
    .jpa-banner-text span {
        font-size: 1.5rem;
    }
    
    .jpa-banner-text p {
        font-size: 0.9rem;
    }
    
    .jpa-section {
        padding: 20px;
    }
    
    .jpa-warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .jpa-warning-icon {
        margin-bottom: 10px;
    }
    
    .jpa-support-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .jpa-support-icon {
        margin-bottom: 10px;
    }
    
    .jpa-benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .jpa-benefit i {
        margin-bottom: 10px;
    }
}

.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  padding: 15px;
}

.popup-overlay.show{
  display: flex;
}

/* Desktop Size */
.popup-box{
  position: relative;
  width: 400px;
  max-width: 95%;
}

/* Image */
.popup-img{
  width: 100%;
  height: auto;
  max-height: 575px;
  border-radius: 12px;
  display: block;
}

/* Close Button */
.popup-close{
  position: absolute;
  top: -10px;
  right: -10px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 38px;
  z-index: 10;
}

/* 🔥 MOBILE FIX */
@media (max-width: 480px){
  .popup-box{
    width: 90vw;            /* fit screen width */
    max-width: 360px;       /* prevent oversized */
  }

  .popup-img{
    width: 100%;
    height: auto;
    max-height: 80vh;       /* prevent overflow */
    object-fit: contain;    /* no crop on small screens */
  }

  .popup-close{
    top: -8px;
    right: -8px;
  }
}

@keyframes popupShake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-6px); }
  20% { transform: translateX(6px); }
  30% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  50% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  70% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  90% { transform: translateX(-2px); }
}

.popup-img.shake {
  animation: popupShake 0.6s ease-in-out 2;
}