/* 
 * Japan Sports Betting Specific Styles
 */

.text-left { text-align: left; }
.text-red { color: #ef4444 !important; }
.text-white { color: #ffffff !important; }
.text-glow-red { text-shadow: 0 0 15px rgba(239, 68, 68, 0.6); }

.bg-shape-japan {
    width: 600px;
    height: 600px;
    background: rgba(239, 68, 68, 0.15); /* Red glow for Japan theme */
    top: -200px;
    right: -200px;
}
.bg-shape-japan-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -100px;
}

.japan-hero {
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(0,0,0,0.5));
}

/* Betting Layout */
.betting-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .betting-layout {
        grid-template-columns: 1fr;
    }
}

/* Sports Feed */
.sports-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sport-category {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.sport-category:hover {
    transform: translateX(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.sport-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Match Cards */
.match-card {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.match-info {
    font-size: 1.1rem;
    font-weight: 600;
}
.match-info .vs {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 10px;
}

.odds-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-odds {
    background: var(--bg-surface);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
}

.btn-odds:hover, .btn-odds.selected {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

/* Bet Slip Sidebar */
.bet-slip-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
}

.slip-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background: #ef4444;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
}

.slip-content {
    padding: 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slip-item {
    background: rgba(0,0,0,0.3);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.slip-item .remove-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
}

.slip-item .remove-btn:hover {
    color: #ef4444;
}

.slip-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.1);
}

.stake-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.return-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.btn-red {
    background: #ef4444;
    color: white;
}
.btn-red:hover {
    background: #dc2626;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
}
