/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 10:19:54 */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&family=Rajdhani:wght@500;700&display=swap');

.wp-block-group.alignfull.has-background {
    position: relative;
}

.wp-block-group.alignfull.has-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Вот оно, наше затемнение */
    z-index: 1;
}

/* Поднимаем контент выше затемнения, чтобы он не стал тусклым */
.wp-block-group.alignfull.has-background > * {
    position: relative;
    z-index: 2;
}

:root {
    --neon-blue: #00d4ff;
    --neon-green: #39ff14;
    --1x-blue: #0056b3;
    --dark-black: #050505;
}

.ufc-bolivia-premium-banner {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: #000 url('http://ufcbolivia.com/wp-content/uploads/2026/04/UFC-hoy-Bolivia-cartelera-y-transmisión-en-vivo.webp') center/cover;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Эффект затемнения и градиента */
.ufc-bolivia-premium-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.7) 50%, 
        transparent 100%);
    z-index: 1;
}

.banner-inner {
    position: relative;
    z-index: 5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.live-indicator {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4d4d;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.location-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--neon-blue);
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-style: italic;
}

.hero-title span {
    background: linear-gradient(to bottom, #fff 0%, #777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px var(--1x-blue));
}

.features-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.f-item {
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-left: 3px solid var(--neon-green);
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-cyber {
    position: relative;
    padding: 20px 40px;
    background: var(--neon-blue);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    border-radius: 0 15px 0 15px;
    transition: 0.3s;
    overflow: hidden;
}

.btn-cyber:hover {
    transform: scale(1.05) skewX(-2deg);
    box-shadow: 0 0 30px var(--neon-blue);
}

.bonus-box p {
    margin: 0;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}

.bonus-box .amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .ufc-bolivia-premium-banner {
        min-height: 550px;
    }
    .hero-title {
        font-size: 40px;
    }
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .features-grid {
        flex-wrap: wrap;
    }
}