/* Jun88 Theme Styles */

/* Reset and 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: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

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

.primary-nav .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.primary-nav .nav-menu a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-login, .btn-register {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-register {
    background: #fbbf24;
    color: #1e3a8a;
    border: 1px solid #fbbf24;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: #1e40af;
    padding: 20px;
}

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

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

.mobile-menu-list li {
    margin: 10px 0;
}

.mobile-menu-list a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.mobile-actions a {
    text-align: center;
    padding: 12px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #fbbf24;
    color: #1e3a8a;
}

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

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background: #fff;
}

section h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

section h3 {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 15px;
}

section p {
    margin-bottom: 15px;
    color: #555;
}

/* Features Grid */
.features-grid, .games-list, .steps-grid, .faq-list, .methods-grid, .issues-list, .promo-cards, .promo-details, .vip-tiers, .events-timeline, .terms-list, .claim-steps, .beginner-path, .games-guide, .tips-collection, .security-checklist, .channels, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card, .game-item, .step-card, .faq-item, .method-card, .issue-item, .promo-card-large, .promo-card, .tier-card, .event-item, .term-item, .claim-step, .path-step, .game-guide-card, .tip-box, .check-item, .channel, .faq-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover, .game-item:hover, .step-card:hover, .faq-item:hover, .method-card:hover, .issue-item:hover, .promo-card:hover, .tier-card:hover, .event-item:hover, .term-item:hover, .claim-step:hover, .path-step:hover, .game-guide-card:hover, .tip-box:hover, .check-item:hover, .channel:hover, .faq-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Steps */
.step-number, .step-num, .step-icon, .w-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Promo Section */
.promo-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.promo-item {
    text-align: center;
}

.promo-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.promo-label {
    color: #666;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.page-hero.alt-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
}

.page-hero.promo-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
}

.page-hero.guide-hero {
    background: linear-gradient(135deg, #059669 0%, #3b82f6 100%);
}

/* CTA Section */
.cta-section, .login-cta, .register-cta, .promo-cta, .guide-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2, .cta-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p, .cta-box p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
}

/* Footer */
.main-footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-brand h3, .footer-nav h3, .footer-contact h3 {
    color: #fbbf24;
    margin-bottom: 20px;
}

.footer-brand p, .footer-contact p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin: 10px 0;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
}

.footer-seo {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.8;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: #fff;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 2rem;
    color: #1e3a8a;
}

.entry-content {
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .primary-nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .features-grid, .games-list, .steps-grid, .faq-list, .methods-grid, .issues-list, .promo-cards, .promo-details, .vip-tiers, .events-timeline, .terms-list, .claim-steps, .beginner-path, .games-guide, .tips-collection, .security-checklist, .channels, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* VIP Tiers Colors */
.tier-header {
    padding: 20px;
    border-radius: 8px 8px 0 0;
    color: #fff;
}

.tier-header.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.tier-header.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
}

.tier-header.gold {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
}

.tier-header.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #b0c4de 100%);
}

.tier-benefits {
    padding: 20px;
}

.tier-benefits ul {
    list-style: none;
}

.tier-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #555;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

/* Badge */
.badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Promo Amount */
.promo-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 15px 0;
}

.promo-terms {
    list-style: none;
    margin-top: 15px;
}

.promo-terms li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.promo-terms li::before {
    content: "✓ ";
    color: #22c55e;
    font-weight: bold;
}

/* Timeline */
.timeline-item, .event-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.event-date {
    background: #3b82f6;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-date .period {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Requirements List */
.requirement-list, .terms-list ul {
    list-style: none;
    margin: 20px 0;
}

.requirement-list li, .terms-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.requirement-list li::before, .terms-list li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Highlight Value */
.highlight-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 10px 0;
}

/* Daily Content */
.daily-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.daily-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

/* Form Fields Guide */
.form-fields .field-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Withdraw Steps */
.withdraw-steps .w-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.withdraw-steps .w-step:last-child {
    border-bottom: none;
}

/* Guide Content */
.guide-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.guide-content li {
    margin: 8px 0;
    color: #555;
}

/* Benefits Wrapper */
.benefits-wrapper .benefit-block {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.process-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* Verification Steps */
.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.verify-step {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

/* Tips Collection */
.tips-collection .tip-box {
    border-left: 4px solid #3b82f6;
}

/* Security Checklist */
.security-checklist .check-item {
    border-left: 4px solid #22c55e;
}

/* Transaction Tabs */
.transaction-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.methods-list .method-detail {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Path Steps */
.path-step {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* FAQ Box */
.faq-grid .faq-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

/* Image Styles */
.hero-image,
.intro-image,
.features-image,
.games-image,
.promo-image,
.guide-image,
.faq-image,
.login-image,
.register-image,
.promo-image-main,
.guide-image-main {
    margin: 20px 0;
    text-align: center;
}

.hero-image img,
.intro-image img,
.features-image img,
.games-image img,
.promo-image img,
.guide-image img,
.faq-image img,
.login-image img,
.register-image img,
.promo-image-main img,
.guide-image-main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Hero Section with Image */
.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

/* Brand Intro with Image */
.brand-intro .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-image {
    flex: 1;
}

.intro-content {
    flex: 1;
}

/* Responsive Images */
@media (max-width: 768px) {
    .hero-section .container,
    .brand-intro .container {
        flex-direction: column;
    }
    
    .hero-image,
    .intro-image {
        order: -1;
    }
}
