/* Betting Blocked Notice Styling */
.betting-blocked-notice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.betting-blocked-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffa726, #ff6b6b);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.notice-content {
    max-width: 500px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.betting-blocked-notice h3 {
    color: #495057;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.betting-blocked-notice p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .betting-blocked-notice {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .notice-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .betting-blocked-notice h3 {
        font-size: 20px;
    }
    
    .betting-blocked-notice p {
        font-size: 14px;
    }
}

/* Sidebar Notice Styling */
.betting-blocked-notice.sidebar-notice {
    padding: 20px 15px;
    margin: 0 0 20px 0;
    border-radius: 12px;
}

.sidebar-notice .notice-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.sidebar-notice h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.sidebar-notice p {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .betting-blocked-notice {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-color: #4a5568;
    }
    
    .betting-blocked-notice h3 {
        color: #e2e8f0;
    }
    
    .betting-blocked-notice p {
        color: #a0aec0;
    }
    
    .sidebar-notice h4 {
        color: #e2e8f0;
    }
    
    .sidebar-notice p {
        color: #a0aec0;
    }
}