
/* Основной контейнер */
.webpanel-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

 /* Основной блок WebPanel */
.webpanel-block {
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.webpanel-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

 /* Заголовок */
.webpanel-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.webpanel-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--curent-color), transparent);
}

 /* Подзаголовок */
.webpanel-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px auto;
    line-height: 1.6;
    max-width: 600px;
}

 /* Статусная метка */
.status-tag {
    display: inline-block;
    background-color: var(--color-tag-red-bg);
    color: var(--color-tag-red-color);
    border: 1px solid var(--color-tag-red-border);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

 /* Элементы интерфейса */
.interface-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.interface-item {
    background-color: rgba(31, 43, 64, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    min-width: 180px;
    transition: all 0.3s;
}

.interface-item:hover {
    background-color: rgba(31, 43, 64, 0.8);
    transform: translateY(-3px);
}

.item-title {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-value {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.webpanel-block a[href] {
    padding: 0.5em 1em;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 24px;
}
.webpanel-block a[href]:hover {
    background-color: rgba(31, 43, 64, 0.8);
    transform: translateY(-3px);
}

 /* Анимация для заголовка */
@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 20px rgba(224, 65, 65, 0.4); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
}

.webpanel-title {
    animation: pulse 3s infinite ease-in-out;
}

 /* Адаптивность */
@media (max-width: 768px) {
    .webpanel-title {
        font-size: 3rem;
    }
    
    .webpanel-block {
        padding: 40px 20px;
        width: 95%;
    }
    
    .interface-elements {
        flex-direction: column;
        align-items: center;
    }
    
    .interface-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .webpanel-title {
        font-size: 2.2rem;
    }
    
    .webpanel-subtitle {
        font-size: 1rem;
    }
}