.power-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    perspective: 1000px;
    font-family: 'Arial Black', sans-serif;
    padding: 20px;
    display: inline-flex;
}

.power-icon {
    position: relative;
    width: 60px;
    height: 80px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

/* Основная вертикальная часть */
.main-bar {
    width: 25px;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #6b21a8 100%);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), inset 2px 2px 5px rgba(255,255,255,0.4);
    position: absolute;
}

/* Треугольная часть */
.triangle {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 35px solid #7c3aed;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.8));
}

.power-text {
    color: white;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Анимация при наведении */
.power-logo-container:hover .power-icon {
    transform: rotateY(15deg) scale(1.1);
}