/* Header V2 styles */
.about-header-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Reduced gap to move logos closer */
    padding: 20px 0 0px;
}

.dragon-logo img {
    height: 360px;
    /* 240px * 1.5 */
    width: auto;
    filter: brightness(0) invert(1);
    /* Makes black/dark images white */
}

.dragon-logo.left img {
    transform: none;
    /* Already looking right in original? No, let's fix based on feedback */
}

.dragon-logo.right img {
    transform: scaleX(-1);
    /* Flip right one to look left */
}

.subtitle-v2 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.title-v2 {
    font-family: var(--font-accent);
    font-size: 42px;
    /* Consistency */
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: scaleY(1.3);
    text-align: center;
    margin: 0;
}

.about-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
    width: 100%;
}

.about-accordion {
    max-width: 1000px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-trigger {
    width: 100%;
    padding: 30px 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-trigger .icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-trigger .icon::before,
.accordion-trigger .icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.3s ease;
}

.accordion-trigger .icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-trigger .icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.content-inner {
    padding: 0 40px 40px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .about-header-v2 {
        gap: 30px;
    }

    .dragon-logo img {
        height: 100px;
    }

    .title-v2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-header-v2 {
        flex-direction: column;
        gap: 40px;
    }

    .dragon-logo.left img,
    .dragon-logo.right img {
        transform: none;
        /* Reset flip on mobile or adjust? */
    }

    .dragon-logo.right {
        display: none;
    }

    .accordion-trigger {
        padding: 20px;
        font-size: 14px;
    }

    .content-inner {
        padding: 0 20px 25px;
        font-size: 14px;
    }
}

/* Стилизация списков */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    /* Пониже для центрирования */
    width: 12px;
    height: 2px;
    /* Чуть тоньше для аккуратности */
    background-color: var(--text-muted);
    /* Цвет как у текста */
}