/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f172a;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== MOBILE-FIRST HEADER STYLES ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1a1a2e;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .logo h1 {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

/* Main Navigation - Hidden on Mobile */
.main-nav {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.btn-login, .btn-register, .btn-home {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    border: none;
}

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

.btn-register {
    background: #ff6b35;
    border: 1px solid #ff6b35;
    color: white;
}

.btn-home {
    background: transparent;
    border: 1px solid #ff6b35;
    color: #ff6b35;
}

.btn-login:hover, .btn-register:hover, .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Mobile Categories Navigation */
.mobile-categories {
    display: block;
    background: #16213e;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 60px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-categories::-webkit-scrollbar {
    display: none;
}

.mobile-categories-scroll {
    display: flex;
    padding: 12px 16px;
    gap: 12px;
    white-space: nowrap;
    min-width: max-content;
}

.mobile-cat-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: 500;
}

.mobile-cat-btn.active {
    background: #ff6b35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-cat-btn:hover {
    background: rgba(255, 107, 53, 0.2);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 140px);
}

/* Sidebar - Hidden on Mobile */
.sidebar {
    display: none;
}

.content-area {
    flex: 1;
    padding: 16px;
    width: 100%;
}

/* ===== CATEGORY CONTENT ===== */
.category-content {
    display: none;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-content.active {
    display: block;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header h2 {
    font-size: 22px;
    color: #ff6b35;
    font-weight: 700;
}

/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ===== HORIZONTAL SCROLLING CONTAINERS ===== */
.category-games-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 8px 4px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-games-container::-webkit-scrollbar {
    display: none;
}

/* Games Grid with Horizontal Scrolling for Mobile */
.games-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 4px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.games-grid::-webkit-scrollbar {
    display: none;
}

/* Game Card Styling */
.game-card {
    flex: 0 0 auto;
    width: 130px;
    min-width: 130px;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 130px;
    height: 130px;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 130px;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.game-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.fallback-icon {
    font-size: 32px;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.game-card:hover .play-icon {
    transform: scale(1.1);
}

.game-content {
    padding: 10px;
}

.game-title {
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-provider {
    font-size: 10px;
    color: #fff;
    font-weight: 500;
}

.play-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.play-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* ===== EVENTS GRID ===== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.event-card {
    background: #1e293b;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.event-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 12px;
    color: white;
}

.team-name {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.vs {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 10px;
    font-weight: 600;
}

.event-time {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 500;
}

.odds-container {
    display: flex;
    gap: 8px;
}

.odd-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.odd-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-1px);
}

.odd-value {
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffcc00;
}

.odd-label {
    font-size: 12px;
    color: #94a3b8;
}

/* ===== PROMOTIONS BANNER ===== */
.promotions-banner {
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-slides {
    display: flex;
    height: 100%;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

.slide-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== PROMOTIONS GRID ===== */
.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.promotion-card {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.promotion-card:hover::before {
    left: 100%;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.promotion-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.promotion-content span {
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.bonus-amount {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-weight: 600;
}

.claim-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.claim-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Specific promotion card styles */
.welcome-bonus {
    background: linear-gradient(135deg, #059669, #10b981);
}

.cashback-offer {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.daily-races {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

/* ===== LIVE FEED ===== */
.live-feed {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    font-size: 25px;
    color: #ff6b35;
    font-weight: 700;
    position: center;
}

.win-feed-container {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 rgba(255, 255, 255, 0.05);
}

.win-feed-container::-webkit-scrollbar {
    width: 6px;
}

.win-feed-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.win-feed-container::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.win-feed-container::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

.win-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #ff8c00;
}

.win-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.win-item.new-item {
    animation: highlightWin 2s ease;
}

@keyframes highlightWin {
    0% { 
        background: rgba(255, 140, 0, 0.3); 
        transform: translateX(-10px);
    }
    50% { 
        background: rgba(255, 140, 0, 0.2);
    }
    100% { 
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(0);
    }
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.win-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: white;
}

.win-amount {
    color: #ffcc00;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.game {
    color: #94a3b8;
    font-size: 12px;
}

.win-odds {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== ARTICLE SECTION ===== */
.article-section {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.9), rgba(13, 21, 32, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-article {
    max-width: 100%;
    line-height: 1.7;
    color: #ff6b00;
}

.content-article h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.article-intro {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.rem;
    color: #ffffff;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    font-weight: 600;
}

.feature-point {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-point h3 {
    font-size: 1.4rem;
    color: #ff8c00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.feature-point p {
    margin-bottom: 15px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-list, .sports-list, .promo-list, .pros-list, .cons-list {
    margin: 15px 0;
    padding-left: 20px;
}

.feature-list li, .sports-list li, .promo-list li, .pros-list li, .cons-list li {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.feature-list li:last-child, .sports-list li:last-child, .promo-list li:last-child, 
.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.sports-list li strong {
    color: #ffcc00;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.payment-method {
    background: rgba(255, 140, 0, 0.2);
    color: #ff8c00;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 140, 0, 0.3);
    transform: translateY(-1px);
}

.get-started {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 0, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.get-started h2 {
    text-align: center;
    color: #ffcc00;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

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

.step {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.step h4 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.step p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pros-cons-section {
    margin: 40px 0;
}

.pros-cons-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.pros-column, .cons-column {
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.pros-column:hover, .cons-column:hover {
    transform: translateY(-2px);
}

.pros-column {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.cons-column {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.pros-column h3, .cons-column h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.pros-column h3 {
    color: #4caf50;
}

.cons-column h3 {
    color: #f44336;
}

.pros-list li {
    color: #4caf50;
}

.cons-list li {
    color: #f44336;
}

.final-thoughts {
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 5px solid #ff8c00;
}

.final-thoughts h2 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.final-thoughts p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-final {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 140, 0, 0.15));
    border-radius: 15px;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ffcc00;
    font-weight: 600;
    line-height: 1.6;
}

.join-now-btn {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.join-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section span {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #fbbf24;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    display: none;
    background: #1e293b;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-title {
    font-size: 16px;
    color: #ff6b35;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    font-weight: 600;
}

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

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    transform: translateX(5px);
}

.sidebar-menu i {
    width: 16px;
    text-align: center;
}

/* ===== TABLET STYLES (768px and up) ===== */
@media (min-width: 768px) {
    .header {
        padding: 12px 24px;
    }
    
    .header .logo h1 {
        font-size: 20px;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .main-nav {
        display: flex;
        gap: 16px;
        margin-left: 24px;
    }
    
    .nav-item {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        white-space: nowrap;
        padding: 8px 12px;
        border-radius: 4px;
        font-weight: 500;
    }
    
    .nav-item.active, .nav-item:hover {
        color: #ff6b35;
        background: rgba(255, 107, 53, 0.1);
    }
    
    .mobile-categories {
        display: none;
    }
    
    .main-content {
        display: flex;
    }
    
    .sidebar {
        display: block;
        width: 250px;
        min-width: 250px;
    }
    
    .content-area {
        padding: 20px;
        width: calc(100% - 250px);
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .games-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        gap: 8px;
    }
    
    
    .category-games-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        gap: 16px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pros-cons-table {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Footer Tablet Styles */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section ul {
        display: block !important;
    }
    
    .article-section {
        padding: 40px;
    }
}

/* ===== DESKTOP STYLES (1024px and up) ===== */
@media (min-width: 1024px) {
    .header {
        padding: 16px 32px;
    }
    
    .main-nav {
        gap: 24px;
        margin-left: 32px;
    }
    
    .nav-item {
        font-size: 15px;
        padding: 8px 16px;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .games-grid {
        grid-template-columns: repeat(10, 1fr);
    }
    
    .category-games-container {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    
    .footer-section {
        flex: 1;
        margin-bottom: 0;
    }
    
    .content-article h1 {
        font-size: 3rem;
    }
}

/* ===== MOBILE STYLES (767px and below) ===== */
@media (max-width: 767px) {
    /* Mobile Sidebar */
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        height: 100vh;
        width: 260px;
        background: #0f172a;
        z-index: 10000;
        padding-top: 80px;
        transition: left 0.3s ease;
        display: block;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .sidebar.open {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Footer Accordion */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-section {
        border-bottom: 1px solid #334155;
        padding: 1rem 0;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        padding: 0.5rem 0;
    }
    
    .footer-section span::after {
        content: '+';
        font-size: 1.2rem;
        color: #fbbf24;
        transition: transform 0.3s;
    }
    
    .footer-section.active span::after {
        content: '-';
    }
    
    .footer-section ul {
        display: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }
    
    .footer-section.active ul {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }

    /* Mobile Article Responsive */
    .article-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    .content-article h1 {
        font-size: 2rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-point {
        padding: 20px;
    }
    
    .feature-point h3 {
        font-size: 1.2rem;
    }
    
    .pros-cons-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .get-started {
        padding: 20px;
    }
    
    .cta-final {
        padding: 20px;
    }
    
    .cta-final p {
        font-size: 1.1rem;
    }
    
    .join-now-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    /* Mobile Header Adjustments */
    .header {
        padding: 10px 12px;
    }
    
    .header .logo h1 {
        font-size: 16px;
    }
    
    .user-actions {
        gap: 6px;
    }
    
    .btn-login, .btn-register, .btn-home {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Mobile Carousel */
    .carousel-container {
        height: 150px;
    }
    
    .carousel-control {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Mobile Live Feed */
    .win-feed-container {
        max-height: 200px;
    }
    
    .win-item {
        padding: 10px;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        font-size: 12px;
    }
}

/* Additional Mobile Optimizations for Small Screens */
@media (max-width: 480px) {
    .article-section {
        padding: 15px;
    }
    
    .content-article h1 {
        font-size: 1.7rem;
    }
    
    .article-intro {
        font-size: 1rem;
    }
    
    .feature-point {
        padding: 15px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .header .logo h1 {
        font-size: 14px;
    }
    
    .btn-login, .btn-register, .btn-home {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .mobile-cat-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .game-card {
        width: 140px;
        min-width: 140px;
    }
    
    .game-image {
        height: 100px;
    }
}

/* ===== ACCESSIBILITY & PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus, 
a:focus, 
.nav-item:focus, 
.mobile-cat-btn:focus, 
.odd-btn:focus, 
.play-btn:focus, 
.claim-btn:focus, 
.join-now-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .game-card, .event-card, .promotion-card {
        border: 2px solid white;
    }
    
    .btn-login, .btn-register, .btn-home {
        border-width: 2px;
    }
}

/* Print styles */
@media print {
    .header, .mobile-categories, .sidebar, .promotions-banner, .live-feed, .footer {
        display: none;
    }
    
    .content-area {
        padding: 0;
    }
    
    .article-section {
        box-shadow: none;
        border: none;
        background: white;
        color: black;
    }
}
/* MOBILE HEADER BUTTONS FIX */
@media (max-width: 767px) {
    .header {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .header .logo h1 {
        font-size: 16px;
    }
    
    .user-actions {
        gap: 6px;
    }
    
    .btn-home, .btn-login, .btn-register {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 70px;
        height: 36px;
        border-radius: 6px;
        font-weight: 600;
    }
    
    @media (max-width: 380px) {
        .btn-home, .btn-login, .btn-register {
            padding: 8px 10px;
            font-size: 11px;
            min-width: 60px;
        }
    }
    
    @media (max-width: 320px) {
        .btn-home, .btn-login, .btn-register {
            padding: 6px 8px;
            font-size: 10px;
            min-width: 55px;
        }
    }
}
@media (max-width: 768px) {
    .promotions-banner {
        display: none !important;
    }
}
/* Default: mobile version hidden */
.mobile-only {
    display: none;
}

/* Desktop version visible by default */
.desktop-only {
    display: block;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}
/* ===== MOBILE PROMO CAROUSEL ===== */
.juan-mobile-promo-carousel {
    display: none;
}

@media (max-width: 768px) {
    .juan-mobile-promo-carousel {
        display: block;
        width: 100%;
        margin: 1rem 0;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    #juanPromoCarousel {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 12px;
    }

    .juan-carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        height: 100%;
    }

    .juan-carousel-slide {
        min-width: 100%;
        height: 100%;
        position: relative;
    }

    .juan-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit:contain;
        display: block;
    }

    .juan-slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        color: white;
        padding: 1rem;
        padding-top: 2rem;
    }

    .juan-slide-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #fbbf24;
    }

    .juan-slide-subtitle {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Carousel Controls */
    .juan-carousel-controls {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        display: flex;
        gap: 0.5rem;
        z-index: 10;
    }

    .juan-carousel-btn {
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .juan-carousel-btn:hover {
        background: white;
        transform: scale(1.1);
    }

    /* Carousel Indicators */
    .juan-carousel-indicators {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
    }

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

    .juan-carousel-indicator.active {
        background: #fbbf24;
        transform: scale(1.2);
    }

    /* Auto-play pause on hover */
    #juanPromoCarousel:hover .juan-carousel-controls,
    #juanPromoCarousel:hover .juan-carousel-indicators {
        opacity: 1;
    }
}
/* juan sports blogs - SPECIFIC TO BLOG POSTS ONLY */

/* Article Banner Styles */
.article-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    margin: 25px 0 35px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-banner:hover img {
    transform: scale(1.03);
}

/* Article Content Styles - ONLY FOR JUAN SPORTS BLOG */
.registration-guide {
    padding: 20px 0 40px;
}

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

/* USE SPECIFIC CLASS FOR BLOG ARTICLES */
.juan-blog-article {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.juan-blog-article h1 {
    color: #CC562A;
    font-size: 2.4rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFCC00;
}

.juan-blog-article h2 {
    color: #CC562A;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #0055A4;
    font-weight: 600;
}

.juan-blog-article p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.juan-blog-article strong {
    color: #0055A4;
    font-weight: 700;
}

.juan-blog-article ul, .juan-blog-article ol {
    margin: 20px 0 25px 30px;
    padding-left: 10px;
}

.juan-blog-article ul li {
    list-style-type: none;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.juan-blog-article ul li:before {
    content: "•";
    color: #CC562A;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.juan-blog-article ol {
    counter-reset: step-counter;
}

.juan-blog-article ol li {
    list-style-type: none;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    counter-increment: step-counter;
    color: #333;
}

.juan-blog-article ol li:before {
    content: counter(step-counter);
    background: #0055A4;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

/* Step sections highlighting */
.juan-blog-article h2:nth-child(n+7):nth-child(-n+12) {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.08) 0%, rgba(206, 17, 38, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFCC00;
    margin-top: 30px;
}

/* Common Issues section */
.juan-blog-article h2:nth-child(13) {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #CE1126;
}

/* Final Thoughts section */
.juan-blog-article h2:last-of-type {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.1) 0%, rgba(0, 85, 164, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0055A4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .juan-blog-article {
        padding: 30px;
    }
    
    .juan-blog-article h1 {
        font-size: 2rem;
    }
    
    .juan-blog-article h2 {
        font-size: 1.6rem;
    }
    
    .article-banner {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .juan-blog-article {
        padding: 25px 20px;
    }
    
    .juan-blog-article h1 {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .juan-blog-article h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }
    
    .juan-blog-article p {
        font-size: 1rem;
        text-align: left;
    }
    
    .article-banner {
        height: 220px;
        margin: 15px 0 25px 0;
    }
    
    .juan-blog-article ul, .juan-blog-article ol {
        margin-left: 20px;
    }
    
    .juan-blog-article ol li {
        padding-left: 30px;
    }
}

@media (max-width: 576px) {
    .juan-blog-article h1 {
        font-size: 1.6rem;
    }
    
    .juan-blog-article h2 {
        font-size: 1.3rem;
        padding-left: 10px;
    }
    
    .article-banner {
        height: 180px;
        border-radius: 8px;
    }
    
    .juan-blog-article {
        padding: 20px 15px;
    }
    
    .juan-blog-article ul li, .juan-blog-article ol li {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .article-banner {
        display: none;
    }
    
    .juan-blog-article {
        box-shadow: none;
        padding: 0;
    }
    
    .juan-blog-article h1 {
        color: black;
        border-bottom: 2px solid #333;
    }
    
    .juan-blog-article h2 {
        color: black;
        border-left: 2px solid #666;
    }
}
/* ===== BLOG ARTICLE STYLES ===== */
.blog-article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.article-header h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.meta {
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.article-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body h3 {
    color: #ffcc00;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-body ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 20px;
}

.article-body ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.article-body ul li:before {
    content: "✓";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta {
    text-align: center;
    margin: 40px 0 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 204, 0, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.article-footer a {
    color: #ffcc00;
    text-decoration: none;
}

.article-footer a:hover {
    text-decoration: underline;
}

/* ===== BLOG GRID SECTION ===== */
.blog-grid-section {
    margin: 60px 0;
}

.blog-grid-title {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.blog-grid-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
}

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

.blog-card {
    background: #1e293b;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .card-content h3 {
    color: #ffcc00;
}

/* ===== RESPONSIVE BLOG STYLES ===== */
@media (max-width: 768px) {
    .blog-article {
        padding: 20px;
        margin: 20px 0;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 15px;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
    }
    
    .meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .card-image {
        height: 160px;
    }
}

/* =========================
   MAIN POST CONTAINER
========================= */
.jsd-blog-post {
    max-width: 1100px;
    margin: 40px auto;
    background: #f3f4f6;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* =========================
   HEADER & TITLE
========================= */
.jsd-post-header {
    margin-bottom: 40px;
}

.jsd-post-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #b45309;
    text-align: center;
    margin-bottom: 24px;
}

/* =========================
   IMAGE BANNER
========================= */
.jsd-image-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.jsd-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.jsd-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #ffffff;
    font-size: 0.9rem;
}

/* =========================
   META INFO
========================= */
.jsd-post-meta-description {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #374151;
}

.jsd-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* =========================
   SECTIONS
========================= */
.jsd-post-section {
    margin-top: 48px;
}

.jsd-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 14px;
}

.jsd-section-text {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 12px;
}

/* =========================
   STEP GUIDE
========================= */
.jsd-step-list {
    list-style: none;
    margin-top: 24px;
}

.jsd-step-item {
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.jsd-step-number {
    min-width: 40px;
    height: 40px;
    background: #b45309;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jsd-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.jsd-step-description {
    font-size: 0.95rem;
    color: #4b5563;
}

/* =========================
   METHODS GRID
========================= */
.jsd-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.jsd-method-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.jsd-method-icon {
    font-size: 2rem;
    color: #b45309;
    margin-bottom: 12px;
}

.jsd-method-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.jsd-method-description {
    font-size: 0.95rem;
    color: #4b5563;
}

/* =========================
   LIMITS
========================= */
.jsd-limits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.jsd-limit-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.jsd-limit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.jsd-limit-list {
    list-style: none;
}

.jsd-limit-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

/* =========================
   PROCESSING TIMES
========================= */
.jsd-processing-list {
    margin-top: 16px;
}

.jsd-processing-item {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* =========================
   TIPS
========================= */
.jsd-tips-list {
    margin-left: 20px;
    margin-top: 12px;
}

.jsd-tip-item {
    margin-bottom: 8px;
    color: #374151;
}

/* =========================
   FOOTER
========================= */
.jsd-post-footer {
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.jsd-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.jsd-post-tag {
    background: #b45309;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-decoration: none;
}

.jsd-post-navigation {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.jsd-nav-link {
    color: #4dabf7;
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .jsd-blog-post {
        padding: 20px;
    }

    .jsd-post-title {
        font-size: 1.7rem;
    }
}
/* ===== BLOG PAGE SPECIFIC STYLES ===== */
/* These styles only affect blog pages and don't interfere with other pages */

/* Blog page container for centered layout */
.blog-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog article container */
.blog-page-article {
    max-width: 800px;
    margin: 40px auto;
    background: #1e293b;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Blog grid section */
.blog-page-grid-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-page-grid-title {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.blog-page-grid-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsive adjustments for blog page */
@media (max-width: 768px) {
    .blog-page-container {
        padding: 0 15px;
    }
    
    .blog-page-article {
        padding: 25px;
        margin: 20px auto;
    }
    
    .blog-page-grid-section {
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .blog-page-grid-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .blog-page-article {
        padding: 20px;
    }
    
    .blog-page-grid-title {
        font-size: 1.4rem;
    }
}
/* wihtdrawal blog post */
/* 
JUAN SPORTS WITHDRAWAL GUIDE CSS

*/

/* Fixed width container - NOT FULL WIDTH */
.blog-post-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
}

.blog-content-wrapper {
    width: 100%;
}

/* H1 - Article Main Title with #CC562A color */
.article-main-title {
    font-size: 2.2rem;
    color: #CC562A; /* Your requested color */
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Banner Image */
.article-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta Information */
.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Tags */
.article-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.article-tag {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Main container for sections */
.juan-sports-guide {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Sections - Fixed width within container */
.jsg-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    width: 100%;
}

.jsg-section h2 {
    color: #1a2980;
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsg-section h2 i {
    color: #26d0ce;
    font-size: 1.4rem;
}

.jsg-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.jsg-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26d0ce;
}

.jsg-intro strong {
    color: #1a2980;
    font-weight: 600;
}

/* Cards - Fixed grid within container */
.jsg-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsg-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #26d0ce;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.jsg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsg-card-icon {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.jsg-card h3 {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsg-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Steps */
.jsg-steps {
    margin-top: 25px;
}

.jsg-step {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
}

.jsg-step-number {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 2px 6px rgba(26, 41, 128, 0.2);
}

.jsg-step-content {
    background-color: #f8f9ff;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #26d0ce;
    flex-grow: 1;
    border: 1px solid #e9ecef;
}

.jsg-step-content h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsg-step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.jsg-method {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.jsg-method:hover {
    transform: translateY(-3px);
}

.jsg-method-ewallet {
    background-color: #f0f9ff;
    border-top: 4px solid #3498db;
}

.jsg-method-bank {
    background-color: #f0fff4;
    border-top: 4px solid #2ecc71;
}

.jsg-method-card {
    background-color: #fff8f0;
    border-top: 4px solid #e67e22;
}

.jsg-method-crypto {
    background-color: #f5f0ff;
    border-top: 4px solid #9b59b6;
}

.jsg-method-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a2980;
}

.jsg-method h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.jsg-method-subtitle {
    color: #666;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-style: italic;
}

.jsg-method p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.jsg-minimum {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    border: 1px solid #e9ecef;
}

.jsg-minimum .label {
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
}

.jsg-minimum .value {
    color: #1a2980;
    font-weight: bold;
    font-size: 1rem;
}

/* Limits & Tables */
.jsg-limits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.jsg-limits-container h3 {
    color: #1a2980;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.jsg-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsg-table th {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.jsg-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
}

.jsg-table tr:nth-child(even) {
    background-color: #f8f9ff;
}

.jsg-table tr:hover {
    background-color: #f0f7ff;
}

.jsg-processing-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #f8f9ff;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #26d0ce;
    align-items: center;
    border: 1px solid #e9ecef;
}

.jsg-processing-method {
    font-weight: bold;
    color: #1a2980;
    min-width: 120px;
    font-size: 0.95rem;
}

.jsg-processing-item div:last-child {
    color: #555;
    font-size: 0.9rem;
}

.jsg-note {
    margin-top: 15px;
    padding: 15px;
    background-color: #fff8e6;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
    font-style: italic;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Tips */
.jsg-tips-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jsg-tips {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsg-tips-prevention {
    background-color: #fff8e6;
    border-top: 4px solid #f39c12;
}

.jsg-tips-responsible {
    background-color: #f0fff4;
    border-top: 4px solid #2ecc71;
}

.jsg-tips h3 {
    color: #1a2980;
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.jsg-tips p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.jsg-tips ul {
    padding-left: 18px;
    margin: 15px 0;
}

.jsg-tips li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* CTA Box */
.jsg-cta {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(26, 41, 128, 0.15);
}

.jsg-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.jsg-cta p {
    color: #e6f7ff;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.jsg-cta a {
    color: #c8e6ff;
    text-decoration: none;
    font-weight: 500;
}

.jsg-cta a:hover {
    text-decoration: underline;
}

.jsg-button {
    display: inline-block;
    background-color: white;
    color: #1a2980;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.jsg-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-post-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .jsg-limits-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .jsg-tips-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .article-main-title {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .article-tags {
        justify-content: center;
    }
    
    .article-banner {
        margin: 15px 0 20px;
    }
    
    .jsg-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .jsg-section h2 {
        font-size: 1.4rem;
    }
    
    .jsg-cards, .jsg-methods {
        grid-template-columns: 1fr;
    }
    
    .jsg-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .jsg-step-number {
        margin-right: 0;
        margin-bottom: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .jsg-processing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .jsg-processing-method {
        min-width: auto;
    }
    
    .jsg-cta {
        padding: 20px 15px;
    }
    
    .jsg-cta h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .article-main-title {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .jsg-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .jsg-section h2 {
        font-size: 1.3rem;
    }
    
    .jsg-intro {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .jsg-card, .jsg-method {
        padding: 18px 15px;
    }
    
    .jsg-button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .article-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* Juan Sports App Article Styles - Fixed Width */
.juanapp-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.juanapp-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* H1 - Article Main Title with #CC562A color */
.juanapp-title {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px auto 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
    max-width: 800px;
}

/* Banner Image - Fixed Width */
.juanapp-banner {
    margin: 20px auto 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.juanapp-banner-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.juanapp-banner-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    max-width: 800px;
}

/* Article Meta Information */
.juanapp-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    max-width: 800px;
}

.juanapp-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.juanapp-category {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Article Introduction - Fixed Width */
.juanapp-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26d0ce;
    margin: 20px auto 30px;
    text-align: center;
    max-width: 800px;
}

.juanapp-intro strong {
    color: #1a2980;
    font-weight: 600;
}

/* Main container for sections */
.juanapp-article {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections - Fixed width within container */
.juanapp-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.juanapp-heading {
    color: #1a2980;
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    max-width: 800px;
}

.juanapp-heading i {
    color: #26d0ce;
    font-size: 1.4rem;
}

.juanapp-paragraph {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 800px;
}

/* Feature List - Fixed Width */
.juanapp-features {
    margin: 15px 0 20px 20px;
    padding-left: 0;
    max-width: 760px;
}

.juanapp-feature {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    max-width: 760px;
}

.juanapp-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #26d0ce;
    font-weight: bold;
}

/* Security Grid - Fixed Width */
.juanapp-protection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-protect {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #26d0ce;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
    max-width: 800px;
}

.juanapp-protect:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-protect-icon {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.juanapp-protect-title {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juanapp-protect-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Sports Categories Grid - Fixed Width */
.juanapp-sportslist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-sport {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
    border-top: 4px solid #26d0ce;
    max-width: 800px;
}

.juanapp-sport:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-sport-name {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juanapp-sport-detail {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Interface Features Grid - Fixed Width */
.juanapp-interface {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-ui {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #3498db;
    max-width: 800px;
}

.juanapp-ui:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-ui i {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 15px;
    display: block;
}

.juanapp-ui h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juanapp-ui p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Live Betting Features - Fixed Width */
.juanapp-livebet {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-livefeature {
    background-color: #f0fff4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #2ecc71;
    max-width: 800px;
}

.juanapp-livefeature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-livefeature h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.juanapp-livefeature p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-left: 28px;
}

/* Payment Methods Grid - Fixed Width */
.juanapp-paymethods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-pay {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #9b59b6;
    max-width: 800px;
}

.juanapp-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-pay-icon {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 15px;
    display: block;
}

.juanapp-pay-name {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juanapp-pay-info {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Bonuses Grid - Fixed Width */
.juanapp-promos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-promo {
    background-color: #fff8e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #f39c12;
    max-width: 800px;
}

.juanapp-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-promo h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.juanapp-promo p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.juanapp-promo-icon {
    font-size: 1.2rem;
}

/* Content Hub Grid - Fixed Width */
.juanapp-infohub {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-info {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #3498db;
    max-width: 800px;
}

.juanapp-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-info i {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 15px;
    display: block;
}

.juanapp-info h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juanapp-info p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* User Profiles Grid - Fixed Width */
.juanapp-audience {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
    max-width: 800px;
}

.juanapp-user {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #26d0ce;
    max-width: 800px;
}

.juanapp-user:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanapp-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.juanapp-user-header i {
    color: #1a2980;
    font-size: 1.4rem;
}

.juanapp-user-header h3 {
    color: #1a2980;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.juanapp-user-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Conclusion Section - Fixed Width */
.juanapp-final {
    font-style: italic;
    color: #1a2980;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    max-width: 800px;
}

/* FAQ Section - Fixed Width */
.juanapp-questions {
    margin-top: 20px;
    max-width: 800px;
}

.juanapp-question {
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    max-width: 800px;
}

.juanapp-q-button {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8f9ff;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2980;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    max-width: 800px;
}

.juanapp-q-button:hover {
    background-color: #eef2ff;
}

.juanapp-q-button.active {
    background-color: #eef2ff;
}

.juanapp-q-button.active i {
    transform: rotate(180deg);
}

.juanapp-answer {
    padding: 15px 20px;
    background-color: white;
    border-top: 1px solid #e9ecef;
    display: none;
    max-width: 800px;
}

.juanapp-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.juanapp-q-button i {
    transition: transform 0.3s ease;
}

/* Responsive Design - Fixed Width */
@media (max-width: 992px) {
    .juanapp-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .juanapp-protection,
    .juanapp-sportslist,
    .juanapp-interface,
    .juanapp-livebet,
    .juanapp-paymethods,
    .juanapp-promos,
    .juanapp-infohub,
    .juanapp-audience {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        max-width: 90%;
    }
    
    .juanapp-section,
    .juanapp-title,
    .juanapp-banner,
    .juanapp-banner-img,
    .juanapp-intro,
    .juanapp-final,
    .juanapp-questions,
    .juanapp-question,
    .juanapp-q-button,
    .juanapp-answer {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .juanapp-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .juanapp-title {
        font-size: 1.8rem;
        margin: 20px auto 15px;
        padding: 0 5px;
        max-width: 95%;
    }
    
    .juanapp-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        max-width: 95%;
    }
    
    .juanapp-banner {
        margin: 15px auto 20px;
        max-width: 95%;
    }
    
    .juanapp-section {
        padding: 20px 18px;
        margin-bottom: 25px;
        max-width: 95%;
    }
    
    .juanapp-heading {
        font-size: 1.4rem;
        max-width: 95%;
    }
    
    .juanapp-protection,
    .juanapp-sportslist,
    .juanapp-interface,
    .juanapp-livebet,
    .juanapp-paymethods,
    .juanapp-promos,
    .juanapp-infohub,
    .juanapp-audience {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 95%;
    }
    
    .juanapp-q-button {
        padding: 12px 15px;
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .juanapp-intro,
    .juanapp-final,
    .juanapp-features,
    .juanapp-feature {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .juanapp-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .juanapp-title {
        font-size: 1.5rem;
        margin: 15px auto 10px;
        max-width: 100%;
    }
    
    .juanapp-section {
        padding: 18px 15px;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .juanapp-heading {
        font-size: 1.3rem;
        max-width: 100%;
    }
    
    .juanapp-intro {
        font-size: 0.95rem;
        padding: 15px;
        max-width: 100%;
    }
    
    .juanapp-ui,
    .juanapp-pay,
    .juanapp-promo,
    .juanapp-info,
    .juanapp-user {
        padding: 18px 15px;
        max-width: 100%;
    }
    
    .juanapp-category {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .juanapp-protection,
    .juanapp-sportslist,
    .juanapp-interface,
    .juanapp-livebet,
    .juanapp-paymethods,
    .juanapp-promos,
    .juanapp-infohub,
    .juanapp-audience {
        max-width: 100%;
    }
}

/* Fixed Width Container - NOT FULL WIDTH */
.blog-post-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Article Container */
.juanbonus-article {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Title */
.juanbonus-title {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Banner Image */
.juanbonus-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-sizing: border-box;
}

.juanbonus-banner-text {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    padding: 0 10px;
    background-color: #f8f9ff;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
    max-width: 90%;
    margin: 15px auto;
    border-left: 4px solid #26d0ce;
    box-sizing: border-box;
}

/* Article Meta */
.juanbonus-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Introduction */
.juanbonus-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26d0ce;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-intro a {
    color: #1a2980;
    font-weight: 600;
    text-decoration: none;
}

.juanbonus-intro a:hover {
    text-decoration: underline;
}

/* Article Tags */
.juanbonus-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-tag {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
    box-sizing: border-box;
}

/* Section Styles - Fixed width within container */
.juanbonus-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-heading {
    color: #1a2980;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2ff;
    max-width: 100%;
    box-sizing: border-box;
}

/* Icon Header */
.juanbonus-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #1a2980;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-icon-header i {
    color: #26d0ce;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.juanbonus-icon-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #444;
}

/* Paragraph */
.juanbonus-paragraph {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Highlight Box */
.juanbonus-highlight {
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26d0ce;
    margin: 20px 0;
    border: 1px solid #e9ecef;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-highlight h4 {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features List */
.juanbonus-features {
    list-style: none;
    padding-left: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-feature {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #26d0ce;
    font-weight: bold;
}

/* Grid Layouts - Fixed within container */
.juanbonus-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-surprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Grid Items */
.juanbonus-sport-card,
.juanbonus-benefit,
.juanbonus-surprise,
.juanbonus-app-feature {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-sport-card:hover,
.juanbonus-benefit:hover,
.juanbonus-surprise:hover,
.juanbonus-app-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanbonus-sport-card i,
.juanbonus-benefit i,
.juanbonus-surprise i,
.juanbonus-app-feature i {
    font-size: 1.8rem;
    color: #1a2980;
    margin-bottom: 10px;
    display: block;
}

.juanbonus-benefit i {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.juanbonus-sport-card h4,
.juanbonus-benefit h4,
.juanbonus-surprise h4,
.juanbonus-app-feature h4 {
    color: #1a2980;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    word-wrap: break-word;
}

/* Border Colors */
.juanbonus-benefit {
    border-top: 4px solid #26d0ce;
}

.juanbonus-surprise {
    border-top: 4px solid #ff6b6b;
}

.juanbonus-app-feature {
    border-top: 4px solid #4ecdc4;
}

/* Events Container */
.juanbonus-events-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-event-category {
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-event-category h4 {
    color: #1a2980;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8ff;
}

.juanbonus-event-list {
    list-style: none;
    padding-left: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-event-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.juanbonus-event-list li i {
    position: absolute;
    left: 0;
    color: #26d0ce;
    width: 20px;
    text-align: center;
}

/* Reasons Grid */
.juanbonus-love-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-reason {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 4px solid #26d0ce;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-reason:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juanbonus-reason i {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 12px;
    display: block;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.juanbonus-reason h4 {
    color: #1a2980;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Section */
.juanbonus-cta {
    margin-top: 30px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-final {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-cta-box {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 41, 128, 0.15);
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-cta-box i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: #c8e6ff;
}

.juanbonus-cta-box h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
}

/* FAQ Section */
.juanbonus-questions {
    margin-top: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-question {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-q-button {
    width: 100%;
    padding: 18px 20px;
    background-color: #f8f9ff;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2980;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-q-button:hover {
    background-color: #f0f2ff;
}

.juanbonus-q-button i {
    transition: transform 0.3s ease;
    color: #26d0ce;
}

.juanbonus-q-button.active i {
    transform: rotate(180deg);
}

.juanbonus-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    max-width: 100%;
    box-sizing: border-box;
}

.juanbonus-answer.active {
    padding: 20px;
    max-height: 500px;
}

.juanbonus-answer p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-post-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .juanbonus-events-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .juanbonus-love-reasons {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .juanbonus-title {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .juanbonus-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .juanbonus-tags {
        justify-content: center;
    }
    
    .juanbonus-banner {
        margin: 15px 0 20px;
    }
    
    .juanbonus-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .juanbonus-heading {
        font-size: 1.4rem;
    }
    
    .juanbonus-sports-grid,
    .juanbonus-benefits-grid,
    .juanbonus-surprise-grid,
    .juanbonus-app-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .juanbonus-love-reasons {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .juanbonus-icon-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .juanbonus-cta-box {
        padding: 20px 15px;
    }
    
    .juanbonus-cta-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .juanbonus-title {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .juanbonus-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .juanbonus-heading {
        font-size: 1.3rem;
    }
    
    .juanbonus-intro {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .juanbonus-sports-grid,
    .juanbonus-benefits-grid,
    .juanbonus-surprise-grid,
    .juanbonus-app-grid {
        grid-template-columns: 1fr;
    }
    
    .juanbonus-love-reasons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .juanbonus-sport-card,
    .juanbonus-benefit,
    .juanbonus-surprise,
    .juanbonus-app-feature,
    .juanbonus-reason {
        padding: 18px 15px;
    }
    
    .juanbonus-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .juanbonus-cta-box h3 {
        font-size: 1.1rem;
    }
    
    .juanbonus-q-button {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
}

/* 
JUAN SPORTS 36.5 BONUS GUIDE CSS
*/

/* Fixed width container - NOT FULL WIDTH */
.blog-post-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
}

.blog-content-wrapper {
    width: 100%;
}

/* H1 - Article Main Title with #CC562A color */
.article-main-title {
    font-size: 2.2rem;
    color: #CC562A; /* Your requested color */
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Banner Image */
.article-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta Information */
.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Tags */
.article-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.article-tag {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Main container for sections */
.juan-sports-guide {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Sections - Fixed width within container */
.jsb-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    width: 100%;
}

.jsb-section h2 {
    color: #1a2980;
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsb-section h2 i {
    color: #CC562A; /* Changed to match title color */
    font-size: 1.4rem;
}

.jsb-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.jsb-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A; /* Changed to match title color */
}

.jsb-intro strong {
    color: #1a2980;
    font-weight: 600;
}

/* Benefits list */
.jsb-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0 25px;
}

.jsb-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

.jsb-benefit i {
    color: #CC562A;
    font-size: 1.1rem;
}

.jsb-benefit span {
    color: #444;
    font-weight: 500;
}

/* Sports Markets */
.jsb-markets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsb-market {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.jsb-market:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsb-market h3 {
    color: #1a2980;
    margin-bottom: 12px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsb-market h3 i {
    color: #CC562A;
    font-size: 1.2rem;
}

.jsb-market p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Target Audience */
.jsb-audience {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsb-audience-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
}

.jsb-audience-item i {
    color: #CC562A;
    font-size: 1.5rem;
    margin-top: 3px;
}

.jsb-audience-item h4 {
    color: #1a2980;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsb-audience-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Why Players Love It */
.jsb-love-reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 25px;
}

.jsb-love-reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9ff;
    padding: 15px;
    border-radius: 8px;
    min-width: 120px;
    border: 1px solid #e2e8ff;
}

.jsb-love-reason i {
    color: #CC562A;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.jsb-love-reason span {
    color: #1a2980;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

/* Cards - Fixed grid within container */
.jsb-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsb-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #CC562A; /* Changed to match title color */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.jsb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsb-card-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22); /* Changed to orange gradient */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.4rem;
}

.jsb-card h3 {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsb-card p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Steps */
.jsb-steps {
    margin-top: 25px;
}

.jsb-step {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
}

.jsb-step-number {
    background: linear-gradient(135deg, #CC562A, #e67e22); /* Changed to orange gradient */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 2px 6px rgba(204, 86, 42, 0.2);
}

.jsb-step-content {
    background-color: #f8f9ff;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #CC562A; /* Changed to match title color */
    flex-grow: 1;
    border: 1px solid #e9ecef;
}

.jsb-step-content h3 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsb-step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tips Container */
.jsb-tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsb-tips {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    background-color: #f8f9ff;
    border-top: 4px solid #CC562A;
    transition: transform 0.3s ease;
}

.jsb-tips:hover {
    transform: translateY(-3px);
}

.jsb-tips h3 {
    color: #1a2980;
    margin-bottom: 12px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsb-tips h3 i {
    color: #CC562A;
    font-size: 1.1rem;
}

.jsb-tips p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* CTA Box */
.jsb-cta {
    background: linear-gradient(135deg, #CC562A, #e67e22); /* Changed to orange gradient */
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(204, 86, 42, 0.15);
}

.jsb-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.jsb-cta p {
    color: #fff8e6;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.jsb-cta a {
    color: #ffe6cc;
    text-decoration: none;
    font-weight: 500;
}

.jsb-cta a:hover {
    text-decoration: underline;
}

.jsb-button {
    display: inline-block;
    background-color: white;
    color: #CC562A;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    border: none;
}

.jsb-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #CC562A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-post-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .jsb-markets, .jsb-audience, .jsb-cards, .jsb-tips-container, .jsb-benefits {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-post-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .article-main-title {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .article-tags {
        justify-content: center;
    }
    
    .article-banner {
        margin: 15px 0 20px;
    }
    
    .jsb-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .jsb-section h2 {
        font-size: 1.4rem;
    }
    
    .jsb-markets, .jsb-audience, .jsb-cards, .jsb-tips-container, .jsb-benefits {
        grid-template-columns: 1fr;
    }
    
    .jsb-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .jsb-step-number {
        margin-right: 0;
        margin-bottom: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .jsb-love-reasons {
        gap: 10px;
    }
    
    .jsb-love-reason {
        min-width: 100px;
        padding: 12px 8px;
    }
    
    .jsb-love-reason i {
        font-size: 1.5rem;
    }
    
    .jsb-love-reason span {
        font-size: 0.8rem;
    }
    
    .jsb-cta {
        padding: 20px 15px;
    }
    
    .jsb-cta h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-post-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .article-main-title {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .jsb-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .jsb-section h2 {
        font-size: 1.3rem;
    }
    
    .jsb-intro {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .jsb-card, .jsb-market, .jsb-audience-item, .jsb-tips {
        padding: 18px 15px;
    }
    
    .jsb-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .article-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* ===== JUAN SPORTS LIVE ARTICLE STYLES ===== */

/* Fixed width container - NOT FULL WIDTH */
.juan-live-article-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.juan-live-article-wrapper {
    width: 100%;
}

/* H1 - Article Main Title with #CC562A color */
.juan-live-main-title {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Banner Image */
.juan-live-banner-section {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.juan-live-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta Information */
.juan-live-meta-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.juan-live-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Tags */
.juan-live-tag-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.juan-live-tag-badge {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Introduction Section */
.juan-live-intro-section {
    margin-bottom: 35px;
}

.juan-live-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin-bottom: 25px;
}

.juan-live-intro-text a {
    color: #1a2980;
    font-weight: 600;
    text-decoration: none;
}

.juan-live-intro-text a:hover {
    text-decoration: underline;
}

.juan-live-subheading {
    color: #1a2980;
    font-size: 1.6rem;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.juan-live-subheading i {
    color: #CC562A;
    font-size: 1.4rem;
}

.juan-live-paragraph {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Content Sections */
.juan-live-content-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
    width: 100%;
}

.juan-live-section-title {
    color: #1a2980;
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.juan-live-section-title i {
    color: #CC562A;
    font-size: 1.4rem;
}

.juan-live-section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.juan-live-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Feature Highlight */
.juan-live-feature-highlight {
    background-color: #f8f9ff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.juan-live-feature-highlight p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.juan-live-feature-highlight i {
    color: #CC562A;
    margin-top: 3px;
}

/* Features Grid */
.juan-live-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.juan-live-feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.juan-live-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juan-live-feature-icon {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 15px;
    display: block;
}

.juan-live-feature-title {
    color: #1a2980;
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.juan-live-feature-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Benefits List */
.juan-live-benefits-list {
    margin: 25px 0;
}

.juan-live-benefit-item {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
    gap: 15px;
}

.juan-live-benefit-number {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(204, 86, 42, 0.2);
}

.juan-live-benefit-content {
    background-color: #f8f9ff;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    flex-grow: 1;
    border: 1px solid #e9ecef;
}

.juan-live-benefit-heading {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juan-live-benefit-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Market List */
.juan-live-market-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.juan-live-market-item {
    background-color: rgba(204, 86, 42, 0.1);
    color: #CC562A;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Step Guide */
.juan-live-step-guide {
    margin: 25px 0;
}

.juan-live-process-step {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
    gap: 15px;
}

.juan-live-step-indicator {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(204, 86, 42, 0.2);
}

.juan-live-step-details {
    background-color: #f8f9ff;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    flex-grow: 1;
    border: 1px solid #e9ecef;
}

.juan-live-step-title {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.juan-live-step-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Sport Categories */
.juan-live-sport-categories {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.juan-live-sport-category {
    background-color: rgba(26, 41, 128, 0.1);
    color: #1a2980;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Odds Factors */
.juan-live-odds-factors {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.juan-live-factor {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.juan-live-factor:before {
    content: "•";
    color: #CC562A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Note Box */
.juan-live-note-box {
    background-color: rgba(76, 175, 80, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 4px solid #4CAF50;
    margin: 15px 0;
}

.juan-live-note-box p {
    margin: 0;
    color: #2e7d32;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.juan-live-note-box i {
    color: #4CAF50;
}

/* Sports Display */
.juan-live-sports-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.juan-live-sport-display-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.juan-live-sport-display-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juan-live-sport-symbol {
    font-size: 2.5rem;
    color: #1a2980;
    margin-bottom: 15px;
}

.juan-live-sport-name {
    color: #1a2980;
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.juan-live-sport-leagues {
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.juan-live-sport-markets {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Info Note */
.juan-live-info-note {
    background-color: #f8f9ff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #1a2980;
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.juan-live-info-note i {
    color: #1a2980;
    margin-top: 3px;
}

.juan-live-info-note strong {
    color: #1a2980;
    font-weight: 600;
}

/* Advantage Collection */
.juan-live-advantage-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.juan-live-advantage-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 4px solid #CC562A;
}

.juan-live-advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juan-live-advantage-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.juan-live-advantage-icon {
    font-size: 1.8rem;
    color: #CC562A;
}

.juan-live-advantage-title {
    color: #1a2980;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.juan-live-advantage-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Tips Collection */
.juan-live-tips-collection {
    margin: 25px 0;
}

.juan-live-tip-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f8f9ff;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.juan-live-tip-card:hover {
    transform: translateY(-2px);
}

.juan-live-tip-indicator {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.juan-live-tip-info {
    flex-grow: 1;
}

.juan-live-tip-heading {
    color: #1a2980;
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.juan-live-tip-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Player Grid */
.juan-live-player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0 25px;
}

.juan-live-player-trait {
    background-color: #f8f9ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.juan-live-player-trait:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.juan-live-trait-icon {
    font-size: 1.8rem;
    color: #CC562A;
    margin-bottom: 10px;
    display: block;
}

.juan-live-trait-name {
    color: #1a2980;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Feature Note */
.juan-live-feature-note {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #FFC107;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.juan-live-feature-note i {
    color: #FFC107;
}

/* Call to Action */
.juan-live-call-to-action {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(204, 86, 42, 0.15);
}

.juan-live-cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.juan-live-cta-message {
    color: #fff8e6;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.juan-live-action-button {
    display: inline-block;
    background-color: white;
    color: #CC562A;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.juan-live-action-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #CC562A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .juan-live-article-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .juan-live-features-grid,
    .juan-live-sports-display,
    .juan-live-advantage-collection {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .juan-live-player-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .juan-live-article-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .juan-live-main-title {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .juan-live-meta-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .juan-live-tag-container {
        justify-content: center;
    }
    
    .juan-live-banner-section {
        margin: 15px 0 20px;
    }
    
    .juan-live-content-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .juan-live-section-title {
        font-size: 1.4rem;
    }
    
    .juan-live-features-grid,
    .juan-live-sports-display,
    .juan-live-advantage-collection,
    .juan-live-player-grid {
        grid-template-columns: 1fr;
    }
    
    .juan-live-benefit-item,
    .juan-live-process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .juan-live-benefit-number,
    .juan-live-step-indicator {
        margin-bottom: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .juan-live-market-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .juan-live-call-to-action {
        padding: 20px 15px;
    }
    
    .juan-live-cta-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .juan-live-article-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .juan-live-main-title {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .juan-live-content-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .juan-live-section-title {
        font-size: 1.3rem;
    }
    
    .juan-live-intro-text {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .juan-live-feature-card,
    .juan-live-sport-display-card,
    .juan-live-advantage-card,
    .juan-live-tip-card,
    .juan-live-player-trait {
        padding: 18px 15px;
    }
    
    .juan-live-action-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .juan-live-tag-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .juan-live-market-list {
        grid-template-columns: 1fr;
    }
}

/* ===== JUAN BINGO DEPOSIT GUIDE STYLES ===== */

/* Deposit Guide Fixed Container */
.deposit-guide-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* H1 - Article Main Title */
.deposit-main-heading {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Banner Image */
.deposit-banner-container {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.deposit-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Introduction */
.deposit-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin-bottom: 25px;
}

.deposit-highlight {
    color: #CC562A;
    font-weight: 600;
}

/* Section Titles */
.deposit-section-title {
    color: #1a2980;
    font-size: 1.6rem;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2ff;
    font-weight: 600;
}

/* Lists */
.deposit-benefits-list,
.deposit-rules-list,
.deposit-tips-list,
.security-features-list,
.support-channels-list,
.support-info-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.deposit-benefits-list li,
.deposit-rules-list li,
.deposit-tips-list li,
.security-features-list li,
.support-channels-list li,
.support-info-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.deposit-benefits-list li:before,
.deposit-rules-list li:before,
.deposit-tips-list li:before,
.security-features-list li:before,
.support-channels-list li:before,
.support-info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #CC562A;
    font-weight: bold;
}

/* Deposit Methods Table */
.deposit-methods-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.deposit-methods-table th {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.deposit-methods-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
}

.deposit-methods-table tr:nth-child(even) {
    background-color: #f8f9ff;
}

.deposit-methods-table tr:hover {
    background-color: #f0f7ff;
}

/* Note Box */
.deposit-note-box {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 4px solid #FFC107;
    margin: 15px 0;
}

.deposit-note-box p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Steps Container */
.deposit-steps-container {
    margin: 25px 0;
}

.deposit-steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.deposit-steps-list li {
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
    counter-increment: step-counter;
}

.deposit-steps-list li:before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 2px 6px rgba(204, 86, 42, 0.2);
}

.deposit-steps-list li strong {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
}

.deposit-steps-list li br + * {
    margin-top: 8px;
    display: inline-block;
}

/* Deposit Issue Headings */
.deposit-issue-heading {
    color: #1a2980;
    font-size: 1.3rem;
    margin: 20px 0 10px;
    font-weight: 600;
}

/* Security Features */
.security-features-list li:before {
    content: "🔒";
}

/* Bonus Table */
.deposit-bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.deposit-bonus-table th {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.deposit-bonus-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-question {
    color: #1a2980;
    font-size: 1.3rem;
    margin: 25px 0 10px;
    font-weight: 600;
}

.faq-answer {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-list {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
}

.faq-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-list li:before {
    content: "•";
    color: #CC562A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .deposit-guide-container {
        max-width: 90%;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .deposit-guide-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .deposit-main-heading {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .deposit-section-title {
        font-size: 1.4rem;
    }
    
    .deposit-methods-table,
    .deposit-bonus-table {
        display: block;
        overflow-x: auto;
    }
    
    .deposit-steps-list li {
        padding-left: 30px;
    }
    
    .deposit-steps-list li:before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .deposit-guide-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .deposit-main-heading {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .deposit-section-title {
        font-size: 1.3rem;
    }
    
    .deposit-intro {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .deposit-steps-list li {
        padding-left: 25px;
    }
    
    .deposit-steps-list li:before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

/* ===== JUAN SPORTS CASINO ARTICLE STYLES ===== */

/* Fixed Container */
.jsc-article-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.jsc-content-wrapper {
    width: 100%;
}

/* Main Heading */
.jsc-main-heading {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Hero Banner */
.jsc-hero-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.jsc-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta */
.jsc-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.jsc-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tag Container */
.jsc-tag-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.jsc-article-tag {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Introduction Section */
.jsc-intro-section {
    margin-bottom: 35px;
}

.jsc-lead-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin-bottom: 15px;
}

.jsc-brand-link {
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
}

.jsc-brand-link:hover {
    text-decoration: underline;
}

.jsc-feature-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
    border: 1px solid #e2e8ff;
}

/* Definition Section */
.jsc-definition-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-definition-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Game Categories */
.jsc-game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsc-category-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.jsc-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsc-category-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.jsc-category-title {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsc-category-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Games Section */
.jsc-games-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

/* Game Detail Container */
.jsc-game-detail-container {
    margin-top: 25px;
}

.jsc-game-type {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.jsc-game-type:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jsc-game-type-title {
    color: #1a2980;
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsc-game-type-title i {
    color: #CC562A;
    font-size: 1.2rem;
}

.jsc-game-type-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Feature List */
.jsc-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.jsc-feature-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.jsc-feature-list li i {
    position: absolute;
    left: 0;
    color: #CC562A;
    width: 20px;
    text-align: center;
}

.jsc-game-type-summary {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 3px solid #CC562A;
}

/* Registration Section */
.jsc-registration-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-registration-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsc-reg-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.jsc-reg-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jsc-reg-content h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsc-reg-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Payments Section */
.jsc-payments-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-payment-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jsc-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsc-payment-method {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.jsc-payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsc-payment-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.gcash-icon {
    background: linear-gradient(135deg, #00a86b, #00d494);
}

.maya-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.bank-icon {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.wallet-icon {
    background: linear-gradient(135deg, #e17055, #fab1a0);
}

.jsc-payment-method h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsc-payment-method p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.jsc-payment-note {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 15px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

/* Bonuses Section */
.jsc-bonuses-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-bonus-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jsc-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsc-bonus-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 4px solid #CC562A;
}

.jsc-bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsc-bonus-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.jsc-bonus-header i {
    color: #CC562A;
    font-size: 1.4rem;
}

.jsc-bonus-header h4 {
    color: #1a2980;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsc-bonus-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.jsc-bonus-note {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 15px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

/* Mobile Section */
.jsc-mobile-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsc-mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.jsc-mobile-icon {
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jsc-mobile-content h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsc-mobile-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Security Section */
.jsc-security-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsc-security-item {
    background-color: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #CC562A;
}

.jsc-security-item h4 {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jsc-security-item h4 i {
    color: #CC562A;
}

.jsc-security-item p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Support Section */
.jsc-support-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsc-support-channel {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.jsc-support-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsc-support-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.jsc-support-channel h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsc-support-channel p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.jsc-support-summary {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

/* Advantages Section */
.jsc-advantages-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-advantages-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jsc-advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.jsc-advantage {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

.jsc-advantage i {
    color: #CC562A;
    font-size: 1.1rem;
}

.jsc-advantage span {
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.jsc-advantages-conclusion {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    padding: 12px 15px;
    background-color: #f8f9ff;
    border-radius: 6px;
    border-left: 4px solid #CC562A;
}

/* Conclusion Section */
.jsc-conclusion-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsc-conclusion-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.jsc-recommendation {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding: 15px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
}

/* CTA Container */
.jsc-cta-container {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(204, 86, 42, 0.15);
}

.jsc-cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.jsc-cta-title i {
    font-size: 1.2rem;
}

.jsc-cta-text {
    color: #fff8e6;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.jsc-cta-button {
    display: inline-block;
    background-color: white;
    color: #CC562A;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.jsc-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #CC562A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Casino Article */
@media (max-width: 992px) {
    .jsc-article-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .jsc-game-categories,
    .jsc-registration-features,
    .jsc-payment-methods,
    .jsc-bonus-grid,
    .jsc-mobile-features,
    .jsc-security-grid,
    .jsc-support-channels,
    .jsc-advantages-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .jsc-article-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .jsc-main-heading {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .jsc-article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .jsc-tag-container {
        justify-content: center;
    }
    
    .jsc-hero-banner {
        margin: 15px 0 20px;
    }
    
    .jsc-definition-section,
    .jsc-games-section,
    .jsc-registration-section,
    .jsc-payments-section,
    .jsc-bonuses-section,
    .jsc-mobile-section,
    .jsc-security-section,
    .jsc-support-section,
    .jsc-advantages-section,
    .jsc-conclusion-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .jsc-section-title {
        font-size: 1.4rem;
    }
    
    .jsc-game-categories,
    .jsc-registration-features,
    .jsc-payment-methods,
    .jsc-bonus-grid,
    .jsc-mobile-features,
    .jsc-security-grid,
    .jsc-support-channels,
    .jsc-advantages-container {
        grid-template-columns: 1fr;
    }
    
    .jsc-game-type-title {
        font-size: 1.2rem;
    }
    
    .jsc-cta-container {
        padding: 20px 15px;
    }
    
    .jsc-cta-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .jsc-article-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .jsc-main-heading {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .jsc-definition-section,
    .jsc-games-section,
    .jsc-registration-section,
    .jsc-payments-section,
    .jsc-bonuses-section,
    .jsc-mobile-section,
    .jsc-security-section,
    .jsc-support-section,
    .jsc-advantages-section,
    .jsc-conclusion-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .jsc-section-title {
        font-size: 1.3rem;
    }
    
    .jsc-lead-paragraph {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .jsc-category-card,
    .jsc-payment-method,
    .jsc-bonus-card,
    .jsc-support-channel,
    .jsc-security-item,
    .jsc-advantage {
        padding: 18px 15px;
    }
    
    .jsc-cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .jsc-article-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* ===== JUAN SPORTS PH ARTICLE STYLES ===== */

/* Fixed Container */
.jsph-article-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.jsph-content-wrapper {
    width: 100%;
}

/* Main Heading */
.jsph-main-heading {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 20px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0 10px;
}

/* Hero Banner */
.jsph-hero-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.jsph-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta */
.jsph-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.jsph-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tag Container */
.jsph-tag-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.jsph-article-tag {
    background-color: #f8f9ff;
    color: #1a2980;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border: 1px solid #e2e8ff;
}

/* Introduction Section */
.jsph-intro-section {
    margin-bottom: 35px;
}

.jsph-lead-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
    margin-bottom: 15px;
}

.jsph-feature-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
    border: 1px solid #e2e8ff;
}

/* Definition Section */
.jsph-definition-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-definition-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Content Categories */
.jsph-content-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsph-category-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #CC562A;
}

.jsph-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsph-category-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.jsph-category-title {
    color: #1a2980;
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsph-category-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Section Title */
.jsph-section-title {
    color: #1a2980;
    font-size: 1.8rem;
    margin: 35px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #CC562A;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jsph-section-title i {
    color: #CC562A;
    font-size: 1.6rem;
}

/* Distribution Section */
.jsph-distribution-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

/* Platforms Container */
.jsph-platforms-container {
    margin-top: 25px;
}

.jsph-platform-type {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.jsph-platform-type:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jsph-platform-type-title {
    color: #1a2980;
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.jsph-platform-type-title i {
    color: #CC562A;
    font-size: 1.2rem;
}

.jsph-platform-type-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Coverage Section */
.jsph-coverage-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

/* Sports Grid */
.jsph-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsph-sport-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.jsph-sport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsph-sport-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.4rem;
}

.jsph-sport-name {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsph-sport-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Engagement Section */
.jsph-engagement-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-engagement-features {
    margin-top: 25px;
}

.jsph-engagement-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.jsph-engagement-feature:last-child {
    margin-bottom: 0;
}

.jsph-engagement-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jsph-engagement-content h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsph-engagement-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Usage Section */
.jsph-usage-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-usage-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jsph-usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsph-usage-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.jsph-step-number {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jsph-step-content h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsph-step-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Comparison Section */
.jsph-comparison-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-comparison-intro {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.jsph-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
    margin: 25px 0;
}

.jsph-comparison-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-left: 4px solid #CC562A;
}

.jsph-comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.jsph-comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.jsph-comparison-header i {
    color: #CC562A;
    font-size: 1.4rem;
}

.jsph-comparison-header h4 {
    color: #1a2980;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.jsph-comparison-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.jsph-comparison-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.jsph-comparison-list li i {
    position: absolute;
    left: 0;
    color: #CC562A;
    width: 20px;
    text-align: center;
}

/* Responsibility Section */
.jsph-responsibility-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-responsibility-points {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 25px;
}

.jsph-responsibility-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.jsph-responsibility-icon {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.jsph-responsibility-content h4 {
    color: #1a2980;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.jsph-responsibility-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Conclusion Section */
.jsph-conclusion-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

.jsph-conclusion-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Special Boxes */
.jsph-platform-purpose,
.jsph-coverage-summary,
.jsph-usage-tip,
.jsph-comparison-note,
.jsph-important-note,
.jsph-recommendation {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding: 15px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #CC562A;
}

.jsph-recommendation {
    margin-bottom: 20px;
}

/* Clarification Box */
.jsph-clarification-box {
    background-color: #f8f9ff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e8ff;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
}

.jsph-clarification-box i {
    color: #CC562A;
    font-size: 1.2rem;
    margin-top: 3px;
}

.jsph-clarification-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.jsph-clarification-box strong {
    color: #1a2980;
}

/* CTA Container */
.jsph-cta-container {
    background: linear-gradient(135deg, #CC562A, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(204, 86, 42, 0.15);
}

.jsph-cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.jsph-cta-title i {
    font-size: 1.2rem;
}

.jsph-cta-text {
    color: #fff8e6;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.jsph-social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.jsph-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: #CC562A;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.jsph-social-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #CC562A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Sports Article */
@media (max-width: 992px) {
    .jsph-article-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .jsph-content-categories,
    .jsph-sports-grid,
    .jsph-usage-steps,
    .jsph-comparison-grid,
    .jsph-responsibility-points {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .jsph-article-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .jsph-main-heading {
        font-size: 1.8rem;
        margin: 20px 0 15px;
        padding: 0 5px;
    }
    
    .jsph-article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .jsph-tag-container {
        justify-content: center;
    }
    
    .jsph-hero-banner {
        margin: 15px 0 20px;
    }
    
    .jsph-definition-section,
    .jsph-distribution-section,
    .jsph-coverage-section,
    .jsph-engagement-section,
    .jsph-usage-section,
    .jsph-comparison-section,
    .jsph-responsibility-section,
    .jsph-conclusion-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .jsph-section-title {
        font-size: 1.4rem;
    }
    
    .jsph-content-categories,
    .jsph-sports-grid,
    .jsph-usage-steps,
    .jsph-comparison-grid,
    .jsph-responsibility-points {
        grid-template-columns: 1fr;
    }
    
    .jsph-platform-type-title {
        font-size: 1.2rem;
    }
    
    .jsph-cta-container {
        padding: 20px 15px;
    }
    
    .jsph-cta-title {
        font-size: 1.2rem;
    }
    
    .jsph-social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jsph-social-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .jsph-article-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .jsph-main-heading {
        font-size: 1.5rem;
        margin: 15px 0 10px;
    }
    
    .jsph-definition-section,
    .jsph-distribution-section,
    .jsph-coverage-section,
    .jsph-engagement-section,
    .jsph-usage-section,
    .jsph-comparison-section,
    .jsph-responsibility-section,
    .jsph-conclusion-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .jsph-section-title {
        font-size: 1.3rem;
    }
    
    .jsph-lead-paragraph {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .jsph-category-card,
    .jsph-sport-card,
    .jsph-comparison-card,
    .jsph-engagement-feature,
    .jsph-usage-step,
    .jsph-responsibility-point {
        padding: 18px 15px;
    }
    
    .jsph-social-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .jsph-article-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* ===== JUAN SPORTS WIN ARTICLE STYLES ===== */

/* Fixed Container */
.jswin-article-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.jswin-content-wrapper {
    width: 100%;
}

/* Main Heading */
.jswin-main-heading {
    font-size: 2.2rem;
    color: #CC562A;
    text-align: center;
    margin: 30px 0 15px;
    line-height: 1.3;
    font-weight: 800;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Subtitle */
.jswin-subtitle {
    color: #2d3748;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 25px;
    font-style: italic;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero Banner */
.jswin-hero-banner {
    margin: 20px 0 25px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.jswin-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Article Meta */
.jswin-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.jswin-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tag Container */
.jswin-tag-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.jswin-article-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.jswin-section {
    margin-bottom: 35px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e9ecef;
}

/* Section Title */
.jswin-section-title {
    color: #1a2980;
    font-size: 1.8rem;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4299e1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.jswin-section-title i {
    color: #CC562A;
    font-size: 1.6rem;
}

.jswin-section-subtitle {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features Grid */
.jswin-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.jswin-feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-top: 4px solid #4299e1;
}

.jswin-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.jswin-feature-icon {
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.jswin-feature-title {
    color: #CC562A;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.jswin-feature-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Highlight Box */
.jswin-highlight-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 4px solid #4299e1;
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.jswin-highlight-title {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jswin-highlight-title i {
    color: #4299e1;
    font-size: 1.2rem;
}

.jswin-highlight-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps Container */
.jswin-steps-container {
    margin: 25px 0;
}

.jswin-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.jswin-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jswin-step-number {
    background: linear-gradient(135deg, #f56565 0%, #ed8936 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.jswin-step-number i {
    font-size: 1.2rem;
}

.jswin-step-content {
    flex: 1;
}

.jswin-step-title {
    color: #CC562A;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.jswin-step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.jswin-cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    margin: 40px 0 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.15);
}

.jswin-cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.jswin-cta-text {
    color: #e2e8f0;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jswin-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.jswin-cta-btn-primary,
.jswin-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.jswin-cta-btn-primary {
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    color: white;
    border: 2px solid #4299e1;
}

.jswin-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.jswin-cta-btn-primary:hover {
    background: linear-gradient(135deg, #3182ce 0%, #5a67d8 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(66, 153, 225, 0.3);
}

.jswin-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

/* Paragraph Text */
.jswin-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.jswin-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .jswin-article-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .jswin-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .jswin-article-container {
        max-width: 95%;
        padding: 0 12px;
        margin: 20px auto;
    }
    
    .jswin-main-heading {
        font-size: 1.8rem;
        margin: 20px 0 10px;
        padding: 0 5px;
    }
    
    .jswin-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .jswin-article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .jswin-tag-container {
        justify-content: center;
    }
    
    .jswin-hero-banner {
        margin: 15px 0 20px;
    }
    
    .jswin-section {
        padding: 20px 18px;
        margin-bottom: 25px;
    }
    
    .jswin-section-title {
        font-size: 1.5rem;
    }
    
    .jswin-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jswin-cta-section {
        padding: 30px 20px;
        margin: 30px 0 20px;
    }
    
    .jswin-cta-title {
        font-size: 1.5rem;
    }
    
    .jswin-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jswin-cta-btn-primary,
    .jswin-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .jswin-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .jswin-step-number {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .jswin-article-container {
        max-width: 100%;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    .jswin-main-heading {
        font-size: 1.6rem;
        margin: 15px 0 10px;
    }
    
    .jswin-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .jswin-section {
        padding: 18px 15px;
        margin-bottom: 20px;
    }
    
    .jswin-section-title {
        font-size: 1.3rem;
    }
    
    .jswin-feature-card {
        padding: 20px 15px;
    }
    
    .jswin-feature-title {
        font-size: 1.1rem;
    }
    
    .jswin-feature-desc {
        font-size: 0.9rem;
    }
    
    .jswin-cta-section {
        padding: 25px 15px;
    }
    
    .jswin-cta-title {
        font-size: 1.3rem;
    }
    
    .jswin-cta-text {
        font-size: 1rem;
    }
    
    .jswin-cta-btn-primary,
    .jswin-cta-btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .jswin-article-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .jswin-highlight-box {
        padding: 20px 15px;
    }
    
    .jswin-highlight-title {
        font-size: 1.1rem;
    }
}

