/**
 * Tipster Restricted Bets Styling
 * Styles για locked/restricted bet cards με blur effect
 */

/* Restricted bet card */
.tipster-bet-card--restricted {
    position: relative;
}

.tipster-bet-card--restricted > div:not(.tipster-minimal-lock) {
    filter: blur(3px);
    opacity: 0.5;
}

.tipster-minimal-lock {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Premium Badge - Top Left */
.tipster-premium-badge-lock {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tipster-premium-badge-lock svg {
    color: #000;
    flex-shrink: 0;
}

/* Auth Buttons Container - Center */
.tipster-auth-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Minimal Auth Buttons */
.tipster-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    min-width: 120px;
}

/* Σύνδεση Button (Login) */
.tipster-auth-btn--login {
    background: rgba(59, 130, 246, 0.95);
    color: #fff !important;
}

.tipster-auth-btn--login:hover {
    background: rgba(37, 99, 235, 1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Εγγραφή Button (Register) */
.tipster-auth-btn--register {
    background: rgba(16, 185, 129, 0.95);
    color: #fff !important;
}

.tipster-auth-btn--register:hover {
    background: rgba(5, 150, 105, 1);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tipster-premium-badge-lock {
        font-size: 10px;
        padding: 4px 10px;
    }

    .tipster-auth-btn {
        font-size: 12px;
        padding: 8px 24px;
        min-width: 100px;
    }

    .tipster-auth-buttons {
        gap: 10px;
    }
}
