.hero-banner-reference {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 50%, #1a202c 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-reference {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 50%;
}

.hero-brand {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
}

.hero-subtitle-green {
    font-size: 24px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 16px;
}

.hero-signature {
    font-size: 18px;
    font-weight: 400;
    color: #e2e8f0;
    font-style: italic;
}

.hero-silhouettes {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.silhouette-1, .silhouette-2 {
    width: 120px;
    height: 160px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    display: inline-block;
    margin-left: 12px;
    position: relative;
}

.silhouette-1::after, .silhouette-2::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.game-categories-reference {
    margin-bottom: 20px;
}

.category-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.category-label {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.category-tabs-horizontal {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.category-tabs-horizontal::-webkit-scrollbar {
    display: none;
}

.category-tab-ref {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab-ref:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #475569;
}

.category-tab-ref.active {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.featured-games-container {
    margin-bottom: 24px;
}

.games-scroll-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.games-scroll-row::-webkit-scrollbar {
    display: none;
}

.game-card-ref {
    flex-shrink: 0;
    width: 80px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.game-card-ref:hover {
    transform: translateY(-2px);
}

.game-thumbnail-ref {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 8px;
    position: relative;
    overflow: hidden;
}

.game-thumbnail-ref::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.game-title-ref {
    font-size: 9px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-cards-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.promo-card-olahraga {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.promo-card-kasino {
    background: linear-gradient(135deg, #4b5563, #374151);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.promo-card-content-left {
    flex: 1;
    z-index: 2;
    position: relative;
}

.promo-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-card-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    opacity: 0.9;
}

.promo-card-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.promo-card-image-right {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    position: relative;
}

.soccer-player-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.soccer-player-image::after {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.dragon-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.dragon-image::after {
    content: '🐉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.event-populer-section {
    margin-bottom: 32px;
}

.section-header-ref {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title-ref {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.section-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.section-link-ref {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
}

.section-link-ref:hover {
    color: #374151;
}

.section-link-ref img {
    width: 12px;
    height: 12px;
}

.matches-grid-ref {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.match-card-ref {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
}

.match-card-ref:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.match-league {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.match-league::before {
    content: '⚽';
    font-size: 10px;
}

.match-teams-ref {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.team-ref {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
}

.team-logo-placeholder {
    width: 24px;
    height: 24px;
    background: #f3f4f6;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
}

.vs-ref {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 0 8px;
}

.match-time-ref {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 12px;
}

.match-odds-ref {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.odd {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odd:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.more-odds {
    background: #22c55e;
    color: white;
    border: 1px solid #22c55e;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.game-section-ref {
    margin-bottom: 32px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-promo-ref {
    display: flex;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.section-image-left, .section-image-right {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.section-title-large {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.section-arrow {
    font-size: 24px;
    color: #22c55e;
    font-weight: bold;
}

.dealer-character {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    position: relative;
}

.dealer-character::after {
    content: '👩‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.shark-character {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-radius: 50%;
    position: relative;
}

.shark-character::after {
    content: '🦈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.lottery-balls {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    position: relative;
}

.lottery-balls::after {
    content: '🎱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.virtual-cards {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    position: relative;
}

.virtual-cards::after {
    content: '🃏';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.games-row-ref {
    display: flex;
    gap: 12px;
    padding: 0 24px 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.games-row-ref::-webkit-scrollbar {
    display: none;
}

.game-card-small {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.game-card-small:hover {
    transform: translateY(-2px);
}

.game-card-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.game-title-small {
    font-size: 8px;
    font-weight: 700;
    color: white;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    padding: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner-reference {
        height: 180px;
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: 24px;
    }
    
    .hero-subtitle-green {
        font-size: 18px;
    }
    
    .promo-cards-large {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .matches-grid-ref {
        grid-template-columns: 1fr;
    }
    
    .section-promo-ref {
        padding: 16px;
    }
    
    .section-content-right {
        padding: 0 16px;
    }
    
    .games-row-ref {
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .hero-content-reference {
        max-width: 70%;
    }
    
    .hero-silhouettes {
        right: 20px;
    }
    
    .silhouette-1, .silhouette-2 {
        width: 80px;
        height: 100px;
    }
    
    .section-title-large {
        font-size: 20px;
    }
}
