/* Компактный горизонтальный блок */
.xv-access-stripe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
    padding: 18px 25px;
    background: linear-gradient(90deg, #0f0f1a 0%, #161626 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    position: relative;
    overflow: hidden;
}

.xv-access-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff3838, #1a73e8);
}

.xv-stripe-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.xv-stripe-badge {
    background: linear-gradient(135deg, #ff3838 0%, #ff6b6b 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(255, 56, 56, 0.3);
}

.xv-stripe-text h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #fff;
    line-height: 1.3;
}

.xv-stripe-features {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #b0b0d0;
    flex-wrap: wrap;
}

.xv-dot {
    color: #1a73e8;
    font-weight: bold;
}

.xv-stripe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d5bc2 100%);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.xv-stripe-btn:hover {
    background: linear-gradient(135deg, #0d5bc2 0%, #1a73e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.xv-stripe-btn:active {
    transform: translateY(0);
}

.xv-stripe-btn svg {
    transition: transform 0.3s ease;
}

.xv-stripe-btn:hover svg {
    transform: translateX(3px);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .xv-access-stripe {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin: 20px 15px;
        text-align: center;
    }
    
    .xv-stripe-content {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .xv-stripe-text h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .xv-stripe-features {
        justify-content: center;
        font-size: 12px;
    }
    
    .xv-stripe-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .xv-access-stripe {
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .xv-stripe-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .xv-stripe-text h3 {
        font-size: 15px;
    }
    
    .xv-stripe-features {
        font-size: 11px;
        gap: 6px;
    }
}