/* Frontend Styles */
.infoball-stream-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    color: white;
}

.stream-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stream-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.match-info {
    margin: 0 0 15px 0;
    font-size: 16px;
    opacity: 0.9;
}

.stream-status {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.stream-status .viewers {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.stream-player {
    position: relative;
    background: #000;
}

.video-js {
    width: 100% !important;
    height: auto !important;
}

.stream-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.8);
}

.stream-banner img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.stream-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
}

.stream-placeholder img,
.stream-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-stream {
    text-align: center;
    padding: 40px;
}

.no-stream .icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-stream h3 {
    margin: 0 0 10px 0;
    color: #fff;
}

.no-stream p {
    margin: 0;
    color: #aaa;
}

/* Login Required */
.infoball-login-required {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lock-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #667eea;
}

.infoball-login-required h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.infoball-login-required p {
    margin: 0 0 30px 0;
    color: #666;
}

.stream-preview {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.stream-preview h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.stream-preview p {
    margin: 0;
    color: #666;
}

.login-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-login,
.btn-register {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login {
    background: #667eea;
    color: white;
}

.btn-register {
    background: #f8f9fa;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-login:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.btn-register:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* No Stream */
.infoball-no-stream {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 600px;
}

.infoball-no-stream h3 {
    color: #333;
    margin-bottom: 15px;
}

.infoball-no-stream p {
    color: #666;
}