*::before,
*::after {
    content: none;
    box-sizing: inherit;
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'JetBrains Mono', monospace;
}

.pg-hd {
    background: linear-gradient(160deg, #1b1624 0%, #221730 55%, #2a1a38 100%);
    border-bottom: 1px solid rgba(196, 60, 181, 0.18);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    position: relative;
    overflow: hidden;
}

.pg-hd::before {
    content: none;
}

.hd-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #C43CB5 0%, #DAA9C3 60%, transparent 100%);
    width: 100%;
}

.hd-inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand-logo-wrap {
    width: 48px;
    height: 48px;
    padding: 4px;
    border: 1px solid rgba(218, 169, 195, 0.30);
    border-radius: 10px;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06), 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(196, 60, 181, 0.06);
}

.brand-logo-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FEFCFD 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.brand-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(218, 169, 195, 0.75);
    letter-spacing: 0.04em;
    text-align: center;
}

.hd-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 60, 181, 0.45), transparent);
}

.pg-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pg-nav li {
    display: flex;
    align-items: center;
}

.pg-nav li+li::before {
    content: none;
}

.nav-sep {
    width: 1px;
    height: 16px;
    background: rgba(196, 60, 181, 0.25);
    display: inline-block;
    margin: 0 4px;
}

.pg-nav a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.80);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease-out, border-color 0.25s ease-out, background-color 0.2s ease-out;
}

.pg-nav a:hover {
    color: #FEFCFD;
    border-color: rgba(196, 60, 181, 0.35);
    background-color: rgba(196, 60, 181, 0.08);
}

.pg-nav a:focus {
    outline: none;
    color: #1b1624;
    background-color: #FEFCFD;
    border-color: #FEFCFD;
}

.pg-nav a.active {
    color: #C43CB5;
    border-color: rgba(196, 60, 181, 0.30);
    background-color: rgba(196, 60, 181, 0.06);
}

@media (max-width: 640px) {
    .hd-inner {
        padding: 24px 16px 16px;
    }

    .pg-nav a {
        font-size: 15px;
        padding: 8px 12px;
    }
}

@media (max-width: 360px) {
    .hd-inner {
        padding: 16px 8px 16px;
    }

    .brand-name {
        font-size: 24px;
    }
}

.pg-ft {
    background: linear-gradient(175deg, #1b1624 0%, #160f20 100%);
    border-top: 1px solid rgba(196, 60, 181, 0.14);
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.ft-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(196, 60, 181, 0.50), rgba(218, 169, 195, 0.30), transparent);
    width: 100%;
}

.ft-inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 48px 32px;
}

.ft-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 96px;
    align-items: flex-start;
}

.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 160px;
}

.ft-logo-wrap {
    width: 44px;
    height: 44px;
    padding: 4px;
    border: 1px solid rgba(218, 169, 195, 0.25);
    border-radius: 10px;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(196, 60, 181, 0.05);
}

.ft-logo-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.ft-brand-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FEFCFD 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ft-slogan {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(218, 169, 195, 0.60);
}

.ft-nav-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ft-nav-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(196, 60, 181, 0.90);
}

.ft-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.65);
    text-decoration: none;
    padding: 4px 0;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease-out, border-color 0.15s ease-out;
}

.ft-nav-links a:hover {
    color: #DAA9C3;
    border-bottom-color: rgba(218, 169, 195, 0.30);
}

.ft-nav-links a:focus {
    outline: none;
    color: #1b1624;
    background-color: #FEFCFD;
    border-radius: 6px;
    padding-left: 8px;
    padding-right: 8px;
}

.ft-bottom {
    margin-top: 48px;
    padding-top: 16px;
    border-top: 1px solid rgba(196, 60, 181, 0.10);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.ft-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(218, 169, 195, 0.40);
}

.ft-email a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(218, 169, 195, 0.55);
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.ft-email a:hover {
    color: #DAA9C3;
}

.ft-email a:focus {
    outline: none;
    color: #1b1624;
    background-color: #FEFCFD;
    border-radius: 6px;
    padding: 2px 8px;
}

@media (max-width: 640px) {
    .ft-inner {
        padding: 32px 16px 24px;
    }

    .ft-grid {
        gap: 32px;
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .ft-inner {
        padding: 24px 8px 16px;
    }
}

.cookie-strip {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 1500;
    width: 280px;
    background: linear-gradient(175deg, #221730 0%, #1b1624 100%);
    border: 1px solid rgba(196, 60, 181, 0.30);
    border-radius: 10px;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-strip[hidden] {
    display: none;
}

.cookie-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.80);
}

.cookie-toggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cookie-toggle-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(218, 169, 195, 0.85);
}

.cookie-switch {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-track {
    position: absolute;
    inset: 0;
    background: rgba(196, 60, 181, 0.15);
    border: 1px solid rgba(196, 60, 181, 0.30);
    border-radius: 48px;
    cursor: pointer;
    transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
}

.cookie-switch input:checked+.cookie-track {
    background: rgba(196, 60, 181, 0.60);
    border-color: rgba(196, 60, 181, 0.80);
    box-shadow: inset 0 1px 3px rgba(196, 60, 181, 0.30);
}

.cookie-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: rgba(254, 252, 253, 0.70);
    border-radius: 48px;
    transition: transform 0.2s ease-out;
}

.cookie-switch input:checked+.cookie-track::after {
    transform: translateX(16px);
    background: #FEFCFD;
}

.cookie-switch input:focus+.cookie-track {
    outline: 2px solid #FEFCFD;
    outline-offset: 2px;
}

.cookie-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    padding: 8px 16px;
    min-height: 44px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    border: 2px solid rgba(196, 60, 181, 0.60);
    background: transparent;
    color: rgba(254, 252, 253, 0.85);
    transition: background-color 0.2s ease-out, border-color 0.15s ease-out, color 0.2s ease-out;
}

.cookie-btn:hover {
    background-color: rgba(196, 60, 181, 0.15);
    border-color: rgba(196, 60, 181, 0.85);
    color: #FEFCFD;
}

.cookie-btn:focus {
    outline: none;
    background-color: #FEFCFD;
    border-color: #FEFCFD;
    color: #1b1624;
}

.cookie-btn:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.20);
}

.cookie-settings-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(218, 169, 195, 0.55);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgba(218, 169, 195, 0.25);
    transition: color 0.2s ease-out;
    width: 100%;
}

.cookie-settings-link:hover {
    color: rgba(218, 169, 195, 0.90);
}

.cookie-settings-link:focus {
    outline: none;
    color: #1b1624;
    background-color: #FEFCFD;
    border-radius: 6px;
    padding: 2px 8px;
}

.cookie-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-mini {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 1500;
    background: linear-gradient(175deg, #221730 0%, #1b1624 100%);
    border: 1px solid rgba(196, 60, 181, 0.30);
    border-radius: 48px;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-mini[hidden] {
    display: none;
}

.cookie-mini-btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.80);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: color 0.2s ease-out, background-color 0.2s ease-out;
}

.cookie-mini-btn:hover {
    color: #FEFCFD;
    background-color: rgba(196, 60, 181, 0.12);
}

.cookie-mini-btn:focus {
    outline: none;
    color: #1b1624;
    background-color: #FEFCFD;
}

@media (max-width: 640px) {
    .cookie-strip {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .cookie-mini {
        left: 16px;
        bottom: 16px;
    }
}

@media (max-width: 360px) {
    .cookie-strip {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .cookie-mini {
        left: 8px;
        bottom: 8px;
    }
}

.policy-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    background: #18202e;
    color: #FEFCFD;
    line-height: 1.8;
    font-size: 16px;
}

.policy-content h1 {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    margin-top: 0;
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-content h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #DAA9C3;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #C43CB5;
}

.policy-content h3 {
    font-size: 24px;
    line-height: 1.55;
    color: #FEFCFD;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content h4 {
    font-size: 16px;
    line-height: 1.55;
    color: #DAA9C3;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.policy-content h5 {
    font-size: 15px;
    line-height: 1.55;
    color: #DAA9C3;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.policy-content h6 {
    font-size: 15px;
    line-height: 1.55;
    color: #DAA9C3;
    margin-top: 16px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 16px;
    color: #e8dde5;
    max-width: 72ch;
}

.policy-content ul,
.policy-content ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    max-width: 72ch;
}

.policy-content ul {
    list-style: none;
    padding-left: 16px;
}

.policy-content ul li {
    position: relative;
    padding-left: 16px;
}

.policy-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #C43CB5;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.policy-content ol {
    list-style: decimal;
}

.policy-content ol li::marker {
    color: #C43CB5;
    font-size: 15px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #e8dde5;
}

.policy-content li ul,
.policy-content li ol {
    margin-top: 8px;
    margin-bottom: 4px;
}

.policy-content em,
.policy-content i {
    color: #DAA9C3;
    font-style: italic;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.policy-content thead {
    background: linear-gradient(135deg, #2a1a2e 0%, #1e1630 100%);
}

.policy-content thead th {
    color: #DAA9C3;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #C43CB5;
    font-weight: 700;
}

.policy-content tbody tr {
    border-bottom: 1px solid rgba(218, 169, 195, 0.12);
    transition: background 0.2s ease-out;
}

.policy-content tbody tr:last-child {
    border-bottom: none;
}

.policy-content tbody tr:hover {
    background: rgba(196, 60, 181, 0.06);
}

.policy-content tbody tr:nth-child(even) {
    background: rgba(218, 169, 195, 0.04);
}

.policy-content tbody tr:nth-child(even):hover {
    background: rgba(196, 60, 181, 0.08);
}

.policy-content td {
    padding: 16px;
    color: #e8dde5;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
}

.policy-content th {
    padding: 16px;
    vertical-align: top;
}

@media (max-width: 1024px) {
    .policy-content {
        padding: 48px 32px;
    }

    .policy-content h1 {
        font-size: 34px;
    }

    .policy-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .policy-content {
        padding: 32px 16px;
    }

    .policy-content h1 {
        font-size: 34px;
    }

    .policy-content h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .policy-content h3 {
        font-size: 16px;
    }

    .policy-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px;
    }
}

@media (max-width: 360px) {
    .policy-content {
        padding: 16px 8px;
    }

    .policy-content h1 {
        font-size: 24px;
    }

    .policy-content p,
    .policy-content li,
    .policy-content td {
        font-size: 15px;
    }
}

.bdet {
    background: #18151c;
    min-height: 100vh;
    overflow-x: clip;
    position: relative;
}

.bdet .art-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
}

.bdet .art-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-47deg,
            transparent,
            transparent 18px,
            rgba(196, 60, 181, 0.04) 18px,
            rgba(196, 60, 181, 0.04) 19px);
    pointer-events: none;
    z-index: 0;
}

.bdet .hero-text-col {
    position: relative;
    z-index: 2;
    padding: 96px 48px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(ellipse at 0% 0%, rgba(196, 60, 181, 0.18) 0%, rgba(24, 21, 28, 0.0) 65%),
        linear-gradient(135deg, rgba(218, 169, 195, 0.07) 0%, transparent 60%);
}

.bdet .hero-img-col {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bdet .hero-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fade-in 0.45s ease-out 0.1s forwards;
}

.bdet .hero-img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(196, 60, 181, 0.38) 0%,
            rgba(218, 169, 195, 0.12) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.bdet .hero-img-col::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, rgba(254, 252, 253, 0.22) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
}

.bdet .art-tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    opacity: 0;
    animation: slide-up 0.25s ease-out 0.15s forwards;
}

.bdet .tag-pill {
    display: inline-block;
    padding: 4px 16px;
    border: 2px solid rgba(196, 60, 181, 0.7);
    border-radius: 6px;
    font-size: 15px;
    color: #DAA9C3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(196, 60, 181, 0.08);
    line-height: 1.55;
}

.bdet .tag-pill.cat {
    border-color: rgba(218, 169, 195, 0.4);
    color: rgba(254, 252, 253, 0.6);
    background: rgba(218, 169, 195, 0.06);
}

.bdet .art-h1 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px 0;
    opacity: 0;
    animation: slide-up 0.3s ease-out 0.25s forwards;
}

.bdet .art-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: slide-up 0.35s ease-out 0.35s forwards;
}

.bdet .meta-author {
    font-size: 15px;
    color: #DAA9C3;
    line-height: 1.55;
}

.bdet .meta-date {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.45);
    line-height: 1.55;
}

.bdet .meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 48px;
    background: rgba(196, 60, 181, 0.5);
    display: inline-block;
    flex-shrink: 0;
}

.bdet .hero-dashed-frame {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    bottom: 32px;
    border: 1.5px dashed rgba(196, 60, 181, 0.18);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.bdet .art-body-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.bdet .body-section {
    padding: 96px 0 48px 0;
    position: relative;
}

.bdet .body-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24'%3E%3Cpolyline points='0,0 5,20 10,0 15,20 20,0 25,20 30,0 35,20 40,0 45,20 50,0 55,20 60,0' fill='none' stroke='rgba(196,60,181,0.18)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 24px;
    margin-bottom: 48px;
}

.bdet .prose {
    color: rgba(254, 252, 253, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.bdet .prose p {
    margin: 0 0 16px 0;
}

.bdet .prose p:first-of-type::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    font-weight: 700;
}

.bdet .prose h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 32px 0 16px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.bdet .prose h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    flex-shrink: 0;
}

.bdet .prose h3 {
    font-size: 16px;
    line-height: 1.55;
    color: #DAA9C3;
    margin: 24px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bdet .prose ins {
    text-decoration: none;
    background: rgba(196, 60, 181, 0.15);
    border-radius: 6px;
    padding: 0 4px;
    color: #DAA9C3;
}

.bdet .prose mark {
    background: rgba(196, 60, 181, 0.25);
    color: #FEFCFD;
    border-radius: 6px;
    padding: 0 4px;
}

.bdet .prose ul,
.bdet .prose ol {
    padding-left: 24px;
    margin: 0 0 16px 0;
    color: rgba(254, 252, 253, 0.85);
}

.bdet .prose li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.bdet .prose a {
    color: #DAA9C3;
    text-decoration: underline;
    text-decoration-color: rgba(218, 169, 195, 0.4);
    transition: text-decoration-color 0.2s ease-out, color 0.2s ease-out;
}

.bdet .prose a:hover {
    color: #C43CB5;
    text-decoration-color: #C43CB5;
}

.bdet .prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 15px;
}

.bdet .prose th,
.bdet .prose td {
    padding: 8px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(196, 60, 181, 0.15);
    color: rgba(254, 252, 253, 0.85);
}

.bdet .prose thead th {
    color: #DAA9C3;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(196, 60, 181, 0.3);
}

.bdet .prose time {
    color: rgba(254, 252, 253, 0.5);
    font-size: 15px;
}

.bdet .aside-col {
    padding-top: 96px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bdet .aside-col::before {
    content: "";
    display: block;
    width: 100%;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24'%3E%3Cpolyline points='0,0 5,20 10,0 15,20 20,0 25,20 30,0 35,20 40,0 45,20 50,0 55,20 60,0' fill='none' stroke='rgba(196,60,181,0.18)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 24px;
    margin-bottom: 16px;
}

.bdet .aside-metric-block {
    position: relative;
    border: 2px solid rgba(196, 60, 181, 0.22);
    border-radius: 10px;
    padding: 32px;
    background: linear-gradient(160deg, rgba(196, 60, 181, 0.07) 0%, rgba(24, 21, 28, 0.0) 80%);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    overflow: hidden;
}

.bdet .aside-metric-block::after {
    content: "";
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(196, 60, 181, 0.18);
    border-radius: 48px;
    pointer-events: none;
}

.bdet .metric-label {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.55;
    margin-bottom: 8px;
}

.bdet .metric-val {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(120deg, #C43CB5 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.bdet .metric-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #C43CB5;
    -webkit-text-fill-color: initial;
    flex-shrink: 0;
}

.bdet .metric-desc {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.6);
    line-height: 1.55;
    margin-top: 8px;
}

.bdet .aside-annotated {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.bdet .aside-annotated img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    opacity: 0;
    animation: fade-in 0.4s ease-out 0.3s forwards;
}

.bdet .annotation-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bdet .annotation-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: rgba(254, 252, 253, 0.75);
    line-height: 1.55;
    opacity: 0;
    animation: slide-up 0.3s ease-out calc(0.4s + var(--delay, 0s)) forwards;
}

.bdet .annotation-item:nth-child(1) {
    --delay: 0s;
}

.bdet .annotation-item:nth-child(2) {
    --delay: 0.08s;
}

.bdet .annotation-item:nth-child(3) {
    --delay: 0.16s;
}

.bdet .annotation-item:nth-child(4) {
    --delay: 0.24s;
}

.bdet .ann-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    background: rgba(196, 60, 181, 0.2);
    border: 1px solid rgba(196, 60, 181, 0.4);
    font-size: 15px;
    color: #C43CB5;
    line-height: 1.2;
    font-weight: 700;
}

.bdet .aside-nav-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bdet .aside-nav-label {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.55;
    margin-bottom: 4px;
}

.bdet .aside-link {
    display: block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    color: rgba(254, 252, 253, 0.75);
    line-height: 1.55;
    text-decoration: none;
    border: 2px solid rgba(218, 169, 195, 0.12);
    background: rgba(218, 169, 195, 0.04);
    transition: border-color 0.2s ease-out, color 0.18s ease-out, background 0.2s ease-out;
}

.bdet .aside-link:hover {
    border-color: rgba(196, 60, 181, 0.5);
    color: #DAA9C3;
    background: rgba(196, 60, 181, 0.08);
}

.bdet .cta-strip {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 96px 48px;
}

.bdet .cta-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 48px;
    background: linear-gradient(120deg, rgba(196, 60, 181, 0.18) 0%, rgba(24, 21, 28, 0.0) 60%),
        linear-gradient(200deg, rgba(218, 169, 195, 0.08) 0%, transparent 50%);
    border: 2px solid rgba(196, 60, 181, 0.22);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bdet .cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-47deg,
            transparent,
            transparent 18px,
            rgba(196, 60, 181, 0.03) 18px,
            rgba(196, 60, 181, 0.03) 19px);
    pointer-events: none;
    z-index: 0;
}

.bdet .cta-text-col {
    position: relative;
    z-index: 1;
    flex: 1;
}

.bdet .cta-heading {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.bdet .cta-heading::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    flex-shrink: 0;
}

.bdet .cta-sub {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.65);
    line-height: 1.55;
    margin: 0;
}

.bdet .cta-btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
}

.bdet .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.2;
    color: #FEFCFD;
    background: transparent;
    border: 2.5px solid #C43CB5;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease-out, box-shadow 0.25s ease-out, color 0.18s ease-out;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    position: relative;
    overflow: hidden;
}

.bdet .btn-primary:hover {
    background: rgba(196, 60, 181, 0.18);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    color: #FEFCFD;
}

.bdet .btn-primary:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.18);
}

.bdet .btn-primary:focus-visible {
    outline: 2px solid #C43CB5;
    outline-offset: 3px;
}

.bdet .btn-ghost {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.2;
    color: #DAA9C3;
    background: transparent;
    border: 2.5px solid rgba(218, 169, 195, 0.3);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease-out, color 0.18s ease-out;
}

.bdet .btn-ghost:hover {
    border-color: rgba(218, 169, 195, 0.7);
    color: #FEFCFD;
}

.bdet .btn-ghost:active {
    box-shadow: inset 2px 1px 6px 0 rgba(218, 169, 195, 0.12);
}

.bdet .btn-ghost:focus-visible {
    outline: 2px solid #DAA9C3;
    outline-offset: 3px;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate-settle {
    0% {
        opacity: 0;
        transform: rotate(-4deg) translateY(16px);
    }

    70% {
        transform: rotate(1deg) translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) translateY(0);
    }
}

.bdet .wave-item {
    opacity: 0;
    animation: rotate-settle 0.4s ease-out calc(var(--wi, 0) * 0.1s) forwards;
}

@media (max-width: 1024px) {
    .bdet .art-hero {
        grid-template-columns: 1fr;
    }

    .bdet .hero-img-col {
        min-height: 320px;
    }

    .bdet .art-body-wrap {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .bdet .aside-col {
        padding-top: 0;
    }

    .bdet .aside-col::before {
        display: none;
    }

    .bdet .cta-strip {
        padding: 0 32px 96px 32px;
    }

    .bdet .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .bdet .hero-text-col {
        padding: 48px 16px 48px 16px;
    }

    .bdet .art-body-wrap {
        padding: 0 16px;
    }

    .bdet .body-section {
        padding: 48px 0 32px 0;
    }

    .bdet .cta-strip {
        padding: 0 16px 48px 16px;
    }

    .bdet .cta-inner {
        padding: 32px 16px;
    }

    .bdet .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .bdet .btn-primary,
    .bdet .btn-ghost {
        text-align: center;
    }

    .bdet .aside-metric-block {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .bdet .art-h1 {
        font-size: 24px;
    }

    .bdet .hero-text-col {
        padding: 32px 16px;
    }
}

.ev-det {
    background: #18141c;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.ev-det .top-anchor {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    display: block;
}

.ev-det .scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #18141c;
    border: 2px solid #C43CB5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    text-decoration: none;
    transition: background 0.2s ease-out, border-color 0.18s ease-out;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.ev-det .scroll-top-btn:hover {
    background: #C43CB5;
    border-color: #DAA9C3;
}

.ev-det .scroll-top-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ev-det .scroll-top-btn:hover svg path {
    stroke: #FEFCFD;
}

.ev-det .scroll-top-btn svg path {
    stroke: #C43CB5;
    transition: stroke 0.18s ease-out;
}

.ev-det .scroll-top-btn:hover svg path {
    stroke: #FEFCFD;
}

.ev-det .pg-top-border {
    height: 3px;
    background: linear-gradient(90deg, #C43CB5 0%, #DAA9C3 60%, #18141c 100%);
    width: 100%;
}

.ev-det .pg-bot-border {
    height: 3px;
    background: linear-gradient(90deg, #18141c 0%, #DAA9C3 40%, #C43CB5 100%);
    width: 100%;
}

.ev-det .tb {
    position: relative;
    background: #18141c;
    padding: 48px 0 32px;
    max-width: 1600px;
    margin: 0 auto;
}

.ev-det .tb-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(196, 60, 181, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 60, 181, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 0;
}

.ev-det .tb-inner {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.ev-det .tb-left {
    flex: 1 1 0;
    min-width: 0;
}

.ev-det .tb-right {
    flex: 0 0 340px;
    width: 340px;
}

.ev-det .tb-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.ev-det .tb-tag {
    display: inline-block;
    background: transparent;
    border: 2px solid #C43CB5;
    color: #C43CB5;
    font-size: 15px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-det .tb-readtime {
    color: #DAA9C3;
    font-size: 15px;
    line-height: 1.2;
}

.ev-det .tb-views {
    color: #DAA9C3;
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ev-det .tb-views svg {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.ev-det .tb-likes {
    color: #DAA9C3;
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ev-det .tb-likes svg {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.ev-det .tb-heading {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    color: #FEFCFD;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

.ev-det .tb-heading .grad-word {
    background: linear-gradient(120deg, #C43CB5 10%, #DAA9C3 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ev-det .tb-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.ev-det .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.ev-det .tb-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(196, 60, 181, 0.18) 0%, rgba(24, 20, 28, 0.55) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.ev-det .tb-price-card {
    margin-top: 24px;
    background: linear-gradient(135deg, #22192b 60%, #2e1a2e 100%);
    border-radius: 10px;
    border: 2px solid #C43CB5;
    padding: 24px;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.ev-det .tb-price-label {
    font-size: 15px;
    color: #DAA9C3;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ev-det .tb-price-val {
    font-size: 34px;
    font-weight: 700;
    color: #C43CB5;
    line-height: 1.2;
    margin-bottom: 8px;
}

.ev-det .tb-price-note {
    font-size: 15px;
    color: #DAA9C3;
    line-height: 1.55;
}

.ev-det .tb-seats {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ev-det .tb-seats-dot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #C43CB5;
    flex-shrink: 0;
    animation: seatpulse 1.8s ease-out infinite alternate;
}

@keyframes seatpulse {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.4;
    }
}

.ev-det .tb-seats-text {
    font-size: 15px;
    color: #FEFCFD;
    line-height: 1.2;
}

.ev-det .tb-seats-num {
    color: #C43CB5;
    font-weight: 700;
}

.ev-det .tb-reg-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    background: transparent;
    border: 2.5px solid #C43CB5;
    color: #C43CB5;
    font-size: 16px;
    line-height: 1.55;
    border-radius: 6px;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.22s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}

.ev-det .tb-reg-btn:hover {
    background: #C43CB5;
    color: #FEFCFD;
    border-color: #DAA9C3;
}

.ev-det .tb-reg-btn:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.18);
}

.ev-det .tb-reg-btn.shake {
    animation: btn-shake 0.25s ease-out;
}

@keyframes btn-shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-4px);
    }

    100% {
        transform: translateX(0);
    }
}

.ev-det .torn-divider {
    width: 100%;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.ev-det .torn-divider svg {
    display: block;
    width: 100%;
}

.ev-det .dc {
    position: relative;
    background: #1e1626;
    padding: 0;
}

.ev-det .dc-two-tone {
    position: absolute;
    inset: 0;
    background: linear-gradient(148deg, #1e1626 52%, #22192b 100%);
    pointer-events: none;
}

.ev-det .dc-honeycomb {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='%23C43CB5' stroke-width='1.2'/%3E%3Cpolygon points='28,52 54,66 54,94 28,108 2,94 2,66' fill='none' stroke='%23C43CB5' stroke-width='1.2'/%3E%3Cpolygon points='0,27 26,41 26,69 0,83' fill='none' stroke='%23C43CB5' stroke-width='1.2'/%3E%3Cpolygon points='56,27 82,41 82,69 56,83' fill='none' stroke='%23C43CB5' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

.ev-det .dc-inner {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 48px 96px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.ev-det .dc-main {
    flex: 1 1 0;
    min-width: 0;
}

.ev-det .dc-aside {
    flex: 0 0 300px;
    width: 300px;
}

.ev-det .dc-block-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ev-det .dc-shape {
    width: 18px;
    height: 18px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
    transform: rotate(18deg);
}

.ev-det .dc-block-title {
    font-size: 24px;
    font-weight: 700;
    color: #FEFCFD;
    line-height: 1.2;
    margin: 0;
}

.ev-det .dc-desc {
    color: #DAA9C3;
    font-size: 16px;
    line-height: 1.8;
}

.ev-det .dc-desc p:first-of-type::first-letter {
    font-size: 34px;
    font-weight: 700;
    color: #C43CB5;
    line-height: 1;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ev-det .dc-desc p {
    margin-bottom: 16px;
    color: #DAA9C3;
}

.ev-det .dc-desc h2 {
    font-size: 24px;
    font-weight: 700;
    color: #FEFCFD;
    line-height: 1.2;
    margin: 32px 0 16px;
}

.ev-det .dc-desc strong {
    color: #FEFCFD;
}

.ev-det .dc-desc a {
    color: #DAA9C3;
    text-decoration: underline;
    text-decoration-color: rgba(218, 169, 195, 0.35);
    transition: color 0.2s ease-out, text-decoration-color 0.18s ease-out;
}

.ev-det .dc-desc a:hover {
    color: #C43CB5;
    text-decoration-color: #C43CB5;
}

.ev-det .dc-desc ul,
.ev-det .dc-desc ol {
    color: #DAA9C3;
    padding-left: 24px;
    margin-bottom: 16px;
}

.ev-det .dc-desc li {
    margin-bottom: 8px;
}

.ev-det .dc-desc blockquote {
    border-top: 2px solid #C43CB5;
    border-bottom: 2px solid #C43CB5;
    padding: 16px 24px;
    margin: 24px 0;
    color: #FEFCFD;
    font-size: 16px;
    line-height: 1.8;
    background: rgba(196, 60, 181, 0.06);
    border-radius: 6px;
}

.ev-det .dc-desc dl {
    margin-bottom: 16px;
}

.ev-det .dc-desc dt {
    color: #FEFCFD;
    font-weight: 700;
    margin-top: 16px;
}

.ev-det .dc-desc dd {
    color: #DAA9C3;
    margin-left: 16px;
}

.ev-det .dc-desc details {
    background: rgba(196, 60, 181, 0.06);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(196, 60, 181, 0.18);
}

.ev-det .dc-desc summary {
    color: #C43CB5;
    cursor: pointer;
    font-weight: 600;
}

.ev-det .dc-prog-wrap {
    margin-top: 48px;
}

.ev-det .dc-prog-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ev-det .dc-prog-shape {
    width: 18px;
    height: 18px;
    background: transparent;
    border: 2.5px solid #C43CB5;
    border-radius: 48px;
    flex-shrink: 0;
}

.ev-det .dc-prog-title {
    font-size: 24px;
    font-weight: 700;
    color: #FEFCFD;
    line-height: 1.2;
    margin: 0;
}

.ev-det .dc-prog {
    color: #DAA9C3;
    font-size: 16px;
    line-height: 1.8;
}

.ev-det .dc-prog p {
    margin-bottom: 16px;
    color: #DAA9C3;
}

.ev-det .dc-prog h2 {
    font-size: 24px;
    font-weight: 700;
    color: #FEFCFD;
    line-height: 1.2;
    margin: 32px 0 16px;
}

.ev-det .dc-prog cite {
    font-style: italic;
    color: #DAA9C3;
}

.ev-det .dc-prog ul,
.ev-det .dc-prog ol {
    color: #DAA9C3;
    padding-left: 24px;
    margin-bottom: 16px;
}

.ev-det .dc-prog li {
    margin-bottom: 8px;
}

.ev-det .dc-prog blockquote {
    border-top: 2px solid #C43CB5;
    border-bottom: 2px solid #C43CB5;
    padding: 16px 24px;
    margin: 24px 0;
    color: #FEFCFD;
    font-size: 16px;
    line-height: 1.8;
    background: rgba(196, 60, 181, 0.06);
    border-radius: 6px;
}

.ev-det .dc-prog dl {
    margin-bottom: 16px;
}

.ev-det .dc-prog dt {
    color: #FEFCFD;
    font-weight: 700;
    margin-top: 16px;
}

.ev-det .dc-prog dd {
    color: #DAA9C3;
    margin-left: 16px;
}

.ev-det .dc-prog details {
    background: rgba(196, 60, 181, 0.06);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(196, 60, 181, 0.18);
}

.ev-det .dc-prog summary {
    color: #C43CB5;
    cursor: pointer;
    font-weight: 600;
}

.ev-det .matrix-wrap {
    margin-bottom: 48px;
}

.ev-det .matrix-label {
    font-size: 15px;
    color: #DAA9C3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ev-det .matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.ev-det .matrix-cell {
    background: #18141c;
    border-radius: 10px;
    padding: 16px;
    border: 1.5px solid rgba(196, 60, 181, 0.18);
    transition: border-color 0.22s ease-out, background 0.2s ease-out;
}

.ev-det .matrix-cell:hover {
    border-color: #C43CB5;
    background: #22192b;
}

.ev-det .matrix-cell.priority {
    border-color: #C43CB5;
}

.ev-det .matrix-cell-tag {
    font-size: 15px;
    font-weight: 700;
    color: #C43CB5;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ev-det .matrix-cell-text {
    font-size: 15px;
    color: #DAA9C3;
    line-height: 1.55;
}

.ev-det .conn-lines {
    width: 100%;
    height: 48px;
    display: block;
    margin: 32px 0;
    overflow: hidden;
}

.ev-det .conn-lines svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ev-det .conn-line-path {
    stroke: #C43CB5;
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: linedraw 0.8s 0.2s ease-out forwards;
}

.ev-det .conn-line-path2 {
    stroke: #DAA9C3;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: linedraw 0.9s 0.4s ease-out forwards;
}

@keyframes linedraw {
    to {
        stroke-dashoffset: 0;
    }
}

.ev-det .aside-sticky {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ev-det .aside-card {
    background: #18141c;
    border-radius: 10px;
    padding: 24px;
    border: 1.5px solid rgba(196, 60, 181, 0.18);
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.ev-det .aside-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #FEFCFD;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ev-det .aside-stat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(218, 169, 195, 0.10);
}

.ev-det .aside-stat-row:last-child {
    border-bottom: none !important;
}

.ev-det .aside-stat-key {
    font-size: 15px;
    color: #DAA9C3;
    line-height: 1.2;
}

.ev-det .aside-stat-val {
    font-size: 15px;
    font-weight: 700;
    color: #FEFCFD;
    line-height: 1.2;
}

.ev-det .aside-back-link {
    display: block;
    width: 100%;
    background: transparent;
    border: 2.5px solid rgba(196, 60, 181, 0.45);
    color: #DAA9C3;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 6px;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.22s ease-out, color 0.18s ease-out, background 0.2s ease-out;
}

.ev-det .aside-back-link:hover {
    border-color: #C43CB5;
    color: #C43CB5;
    background: rgba(196, 60, 181, 0.06);
}

@media (max-width: 1024px) {
    .ev-det .tb-inner {
        padding: 0 32px;
        flex-direction: column;
        gap: 32px;
    }

    .ev-det .tb-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .ev-det .dc-inner {
        padding: 48px 32px 96px;
        flex-direction: column;
        gap: 32px;
    }

    .ev-det .dc-aside {
        flex: 0 0 auto;
        width: 100%;
    }

    .ev-det .aside-sticky {
        position: static;
    }

    .ev-det .tb-heading {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .ev-det .tb-inner {
        padding: 0 16px;
        gap: 24px;
    }

    .ev-det .dc-inner {
        padding: 32px 16px 48px;
        gap: 24px;
    }

    .ev-det .tb-heading {
        font-size: 34px;
    }

    .ev-det .matrix-grid {
        grid-template-columns: 1fr;
    }

    .ev-det .scroll-top-btn {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 360px) {
    .ev-det .tb-heading {
        font-size: 24px;
    }

    .ev-det .tb-inner {
        padding: 0 8px;
    }

    .ev-det .dc-inner {
        padding: 24px 8px 48px;
    }
}

.intv-pg {
    background: #1b1e24;
    color: #FEFCFD;
    overflow-x: hidden;
}

.intv-pg .row-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rowup 0.35s ease-out forwards;
}

.intv-pg .row-reveal.d1 {
    animation-delay: 0.08s;
}

.intv-pg .row-reveal.d2 {
    animation-delay: 0.18s;
}

.intv-pg .row-reveal.d3 {
    animation-delay: 0.28s;
}

.intv-pg .row-reveal.d4 {
    animation-delay: 0.38s;
}

.intv-pg .row-reveal.d5 {
    animation-delay: 0.46s;
}

@keyframes rowup {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intv-pg .lead-band {
    background: linear-gradient(162deg, #16191f 0%, #1e1228 60%, #1b1e24 100%);
    padding: 96px 32px 48px;
    position: relative;
}

.intv-pg .lead-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 60, 181, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.intv-pg .lead-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
}

.intv-pg .lead-text-col {
    flex: 0 0 58%;
    padding: 32px 48px 32px 16px;
    position: relative;
}

.intv-pg .lead-img-col {
    flex: 1 1 auto;
    position: relative;
    align-self: stretch;
    min-height: 320px;
}

.intv-pg .geo-shape {
    position: absolute;
    pointer-events: none;
}

.intv-pg .geo-tri {
    top: 16px;
    right: 32px;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 48px solid rgba(196, 60, 181, 0.10);
}

.intv-pg .geo-sq {
    bottom: 48px;
    left: -8px;
    width: 32px;
    height: 32px;
    background: rgba(218, 169, 195, 0.08);
    border-radius: 6px;
    transform: rotate(22deg);
}

.intv-pg .geo-circ {
    top: 50%;
    right: 16px;
    width: 64px;
    height: 64px;
    border-radius: 48px;
    border: 2px solid rgba(196, 60, 181, 0.12);
    transform: translateY(-50%);
}

.intv-pg .label-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DAA9C3;
    background: rgba(196, 60, 181, 0.10);
    border: 1.5px solid rgba(196, 60, 181, 0.22);
    border-radius: 6px;
    padding: 4px 16px;
    margin-bottom: 32px;
}

.intv-pg .lead-h1 {
    font-size: 64px;
    line-height: 1.2;
    margin: 0 0 32px;
    color: #FEFCFD;
}

.intv-pg .lead-h1 .accent-word {
    background: linear-gradient(120deg, #C43CB5 10%, #DAA9C3 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intv-pg .lead-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.72);
    max-width: 480px;
    margin: 0 0 32px;
}

.intv-pg .lead-desc::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.intv-pg .stat-strip {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
}

.intv-pg .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intv-pg .stat-num {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.intv-pg .stat-lbl {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.5);
}

.intv-pg .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.intv-pg .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.intv-pg .img-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(220deg, rgba(196, 60, 181, 0.28) 0%, rgba(27, 30, 36, 0.55) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.intv-pg .light-leak {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(196, 60, 181, 0.38) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 48px;
}

.intv-pg .wavy-div {
    height: 32px;
    overflow: hidden;
    line-height: 0;
    background: #1b1e24;
}

.intv-pg .wavy-div svg {
    display: block;
    width: 100%;
}

.intv-pg .qa-band {
    background: #1b1e24;
    padding: 48px 32px 96px;
}

.intv-pg .qa-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.intv-pg .qa-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.intv-pg .qa-sidebar {
    position: sticky;
    top: 32px;
}

.intv-pg .sidebar-heading {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.intv-pg .sh-dot {
    width: 10px;
    height: 10px;
    background: #C43CB5;
    border-radius: 48px;
    flex-shrink: 0;
}

.intv-pg .sidebar-bio {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.6);
    margin: 0 0 32px;
}

.intv-pg .split-stat-card {
    border-radius: 10px;
    border: 1.5px solid rgba(196, 60, 181, 0.18);
    overflow: hidden;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    margin-bottom: 32px;
}

.intv-pg .ssc-top {
    background: rgba(196, 60, 181, 0.10);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(196, 60, 181, 0.14);
}

.intv-pg .ssc-bottom {
    background: rgba(218, 169, 195, 0.06);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intv-pg .ssc-metric {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.intv-pg .ssc-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.55);
}

.intv-pg .topics-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.intv-pg .topics-list li {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.65);
    padding: 8px 16px;
    background: rgba(254, 252, 253, 0.03);
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease-out, color 0.2s ease-out;
}

.intv-pg .topics-list li:hover {
    background: rgba(196, 60, 181, 0.10);
    color: #FEFCFD;
}

.intv-pg .tl-mark {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #DAA9C3;
    flex-shrink: 0;
}

.intv-pg .qa-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intv-pg .qa-section-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #DAA9C3;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.intv-pg .ql-bar {
    width: 24px;
    height: 2px;
    background: #C43CB5;
    border-radius: 48px;
}

.intv-pg .qa-item {
    background: rgba(254, 252, 253, 0.025);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid rgba(218, 169, 195, 0.10);
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.intv-pg .qa-item:hover {
    border-color: rgba(196, 60, 181, 0.28);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.intv-pg .qa-q {
    font-size: 16px;
    line-height: 1.55;
    color: #DAA9C3;
    margin: 0 0 16px;
    font-weight: 600;
}

.intv-pg .qa-a {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.72);
    margin: 0;
}

.intv-pg .qa-a::first-letter {
    font-size: 24px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 2px;
}

.intv-pg .qa-a+.qa-a {
    margin-top: 16px;
}

.intv-pg .qa-a-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intv-pg .qa-a-block .qa-a:not(:first-child)::first-letter {
    font-size: 15px;
    color: rgba(254, 252, 253, 0.72);
    float: none;
    margin: 0;
}

.intv-pg .qa-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.intv-pg .dot-wave {
    flex: 1;
    height: 6px;
    background-image: radial-gradient(circle, rgba(196, 60, 181, 0.35) 1.5px, transparent 1.5px);
    background-size: 14px 6px;
    background-repeat: repeat-x;
    background-position: 0 center;
}

.intv-pg .dw-mid {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: rgba(196, 60, 181, 0.30);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .intv-pg .lead-inner {
        flex-direction: column;
        gap: 32px;
    }

    .intv-pg .lead-text-col {
        flex: none;
        width: 100%;
        padding: 16px 16px 16px 16px;
    }

    .intv-pg .lead-img-col {
        width: 100%;
        min-height: 240px;
    }

    .intv-pg .lead-h1 {
        font-size: 34px;
    }

    .intv-pg .qa-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intv-pg .qa-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .intv-pg .lead-band {
        padding: 48px 16px 32px;
    }

    .intv-pg .lead-h1 {
        font-size: 34px;
    }

    .intv-pg .stat-strip {
        flex-direction: column;
        gap: 16px;
    }

    .intv-pg .qa-band {
        padding: 32px 16px 48px;
    }

    .intv-pg .qa-item {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .intv-pg .lead-h1 {
        font-size: 24px;
    }

    .intv-pg .stat-num {
        font-size: 24px;
    }
}

.ab-auth {
    background: #18181f;
    color: #FEFCFD;
    overflow-x: clip;
    container-type: inline-size;
}

.ab-auth .split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    position: relative;
}

.ab-auth .split-left {
    background: #0f0f14;
    padding: 96px 48px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ab-auth .split-right {
    background: #1e1228;
    padding: 96px 48px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ab-auth .split-right .portrait-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.ab-auth .split-right .portrait-wrap img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.ab-auth .split-right .portrait-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 18, 40, 0.55) 0%, rgba(30, 18, 40, 0.0) 60%);
    pointer-events: none;
}

.ab-auth .shape-bg-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1.5px solid rgba(196, 60, 181, 0.10);
    border-radius: 48px;
    top: -60px;
    left: -80px;
    pointer-events: none;
    animation: geo-pulse 4s ease-in-out infinite;
}

.ab-auth .shape-bg-circle2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(218, 169, 195, 0.08);
    border-radius: 18px;
    bottom: 32px;
    right: -40px;
    pointer-events: none;
    animation: geo-pulse 5.5s ease-in-out infinite;
}

@keyframes geo-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.ab-auth .tag-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #DAA9C3;
    margin-bottom: 16px;
    display: block;
}

.ab-auth .split-heading {
    font-size: 64px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 32px 0;
    position: relative;
    overflow: hidden;
}

.ab-auth .split-heading .word-a {
    display: inline-block;
    animation: split-reveal-left 0.45s ease-out both;
}

.ab-auth .split-heading .word-b {
    display: inline-block;
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: split-reveal-right 0.45s 0.18s ease-out both;
}

@keyframes split-reveal-left {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes split-reveal-right {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ab-auth .intro-para {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.78);
    max-width: 420px;
    margin: 0 0 32px 0;
}

.ab-auth .intro-para::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ab-auth .accent-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.ab-auth .accent-line-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #C43CB5;
    flex-shrink: 0;
}

.ab-auth .accent-line-dash {
    width: 32px;
    height: 2px;
    background: rgba(196, 60, 181, 0.35);
    flex-shrink: 0;
}

.ab-auth .accent-line-text {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
}

.ab-auth .divider-dotdash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
    overflow: hidden;
}

.ab-auth .divider-dotdash span {
    display: inline-block;
    background: rgba(196, 60, 181, 0.35);
    border-radius: 48px;
}

.ab-auth .divider-dotdash span.dot {
    width: 4px;
    height: 4px;
}

.ab-auth .divider-dotdash span.dash {
    width: 16px;
    height: 2px;
    border-radius: 6px;
}

.ab-auth .story-section {
    background: #15151c;
    padding: 96px 0 48px 0;
    position: relative;
}

.ab-auth .story-section .geo-bg {
    position: absolute;
    top: 32px;
    right: 48px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(218, 169, 195, 0.07);
    border-radius: 10px;
    pointer-events: none;
    animation: geo-pulse 6s ease-in-out infinite;
}

.ab-auth .story-section .geo-bg2 {
    position: absolute;
    bottom: 48px;
    left: 32px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(196, 60, 181, 0.09);
    border-radius: 18px;
    pointer-events: none;
    animation: geo-pulse 4.5s 1s ease-in-out infinite;
}

.ab-auth .story-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.ab-auth .story-main {
    padding-right: 32px;
}

.ab-auth .block-anchor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ab-auth .anchor-square {
    width: 12px;
    height: 12px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.ab-auth .block-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DAA9C3;
}

.ab-auth .story-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 24px 0;
}

.ab-auth .story-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.78);
    margin: 0 0 16px 0;
}

.ab-auth .story-body::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ab-auth .story-body-plain {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.78);
    margin: 0 0 16px 0;
}

.ab-auth .story-body-plain a {
    color: #DAA9C3;
    text-decoration: underline;
    text-decoration-color: rgba(218, 169, 195, 0.35);
    transition: text-decoration-color 0.2s ease-out, color 0.15s ease-out;
}

.ab-auth .story-body-plain a:hover {
    color: #C43CB5;
    text-decoration-color: #C43CB5;
}

.ab-auth .side-card {
    background: #1e1228;
    border-radius: 10px;
    padding: 32px 24px;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.ab-auth .side-card-h {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px 0;
}

.ab-auth .side-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-auth .side-card-list li {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.78);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ab-auth .side-card-list li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #C43CB5;
    flex-shrink: 0;
    margin-top: 6px;
}

.ab-auth .side-portrait-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ab-auth .side-portrait-card .port-img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
    transition: filter 0.4s ease-out;
    filter: saturate(1);
}

.ab-auth .side-portrait-card:hover .port-img {
    filter: saturate(0);
}

.ab-auth .side-portrait-card .port-cap {
    font-size: 15px;
    line-height: 1.55;
    color: #DAA9C3;
}

.ab-auth .craft-section {
    background: #11111a;
    padding: 48px 0 96px 0;
    position: relative;
}

.ab-auth .craft-section .geo-bg3 {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(196, 60, 181, 0.06);
    border-radius: 18px;
    pointer-events: none;
    animation: geo-pulse 7s 0.5s ease-in-out infinite;
}

.ab-auth .craft-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}

.ab-auth .craft-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

.ab-auth .craft-text-col {
    flex: 1;
}

.ab-auth .craft-img-col {
    flex: 1;
    position: relative;
}

.ab-auth .craft-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ab-auth .craft-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.45s ease-out;
    filter: saturate(1);
    animation: color-mono-cycle 8s ease-in-out infinite;
}

@keyframes color-mono-cycle {

    0%,
    40% {
        filter: saturate(1);
    }

    55%,
    85% {
        filter: saturate(0);
    }

    100% {
        filter: saturate(1);
    }
}

.ab-auth .craft-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 26, 0.0) 50%, rgba(17, 17, 26, 0.65) 100%);
    pointer-events: none;
    border-radius: 10px;
}

.ab-auth .craft-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 24px 0;
}

.ab-auth .craft-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.78);
    margin: 0 0 16px 0;
}

.ab-auth .craft-body::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ab-auth .craft-body-plain {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.78);
    margin: 0 0 16px 0;
}

.ab-auth .code-block {
    background: #0c0c12;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    overflow: hidden;
}

.ab-auth .code-block-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ab-auth .code-dot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
}

.ab-auth .code-dot.red {
    background: #ff5f56;
}

.ab-auth .code-dot.yellow {
    background: #ffbd2e;
}

.ab-auth .code-dot.green {
    background: #27c93f;
}

.ab-auth .code-block pre {
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.ab-auth .code-block code {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.85);
    display: block;
    white-space: pre;
}

.ab-auth .code-block code .kw {
    color: #C43CB5;
}

.ab-auth .code-block code .str {
    color: #DAA9C3;
}

.ab-auth .code-block code .cm {
    color: rgba(218, 169, 195, 0.45);
}

.ab-auth .code-block code .val {
    color: #FEFCFD;
}

.ab-auth .photo-bg-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.ab-auth .photo-bg-section .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: saturate(0.6);
}

.ab-auth .photo-bg-section .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 15, 20, 0.88) 0%, rgba(30, 18, 40, 0.82) 100%);
    z-index: 1;
    pointer-events: none;
}

.ab-auth .photo-bg-section .geo-bg4 {
    position: absolute;
    bottom: 32px;
    right: 96px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(196, 60, 181, 0.12);
    border-radius: 48px;
    z-index: 2;
    pointer-events: none;
    animation: geo-pulse 5s ease-in-out infinite;
}

.ab-auth .photo-bg-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ab-auth .photo-bg-text h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 24px 0;
}

.ab-auth .photo-bg-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(254, 252, 253, 0.82);
    margin: 0 0 16px 0;
}

.ab-auth .photo-bg-text p::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ab-auth .photo-bg-text p.plain {}

.ab-auth .photo-bg-text .link-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #C43CB5;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 16px 32px;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease-out, color 0.2s ease-out, box-shadow 0.25s ease-out;
    margin-top: 16px;
}

.ab-auth .photo-bg-text .link-btn:hover {
    background: rgba(196, 60, 181, 0.12);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    color: #FEFCFD;
}

.ab-auth .photo-bg-text .link-btn:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.18);
}

.ab-auth .photo-bg-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ab-auth .stat-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.ab-auth .stat-item {
    flex: 1;
    background: rgba(15, 15, 20, 0.72);
    border-radius: 10px;
    padding: 24px 16px;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    text-align: center;
}

.ab-auth .stat-num {
    font-size: 34px;
    line-height: 1.2;
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.ab-auth .stat-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.65);
}

.ab-auth .photo-bg-aside .port2-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.ab-auth .photo-bg-aside .port2-wrap img {
    width: 100%;
    aspect-ratio: 5/7;
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

@media (max-width: 1024px) {
    .ab-auth .split-screen {
        grid-template-columns: 1fr;
    }

    .ab-auth .split-heading {
        font-size: 34px;
    }

    .ab-auth .story-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .ab-auth .story-main {
        padding-right: 0;
    }

    .ab-auth .craft-top {
        flex-direction: column;
        gap: 32px;
    }

    .ab-auth .photo-bg-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
        gap: 32px;
    }

    .ab-auth .craft-inner {
        padding: 0 32px;
    }
}

@media (max-width: 640px) {

    .ab-auth .split-left,
    .ab-auth .split-right {
        padding: 48px 16px;
    }

    .ab-auth .split-heading {
        font-size: 34px;
    }

    .ab-auth .story-inner {
        padding: 0 16px;
    }

    .ab-auth .craft-inner {
        padding: 0 16px;
    }

    .ab-auth .photo-bg-inner {
        padding: 0 16px;
    }

    .ab-auth .stat-row {
        flex-direction: column;
        gap: 16px;
    }

    .ab-auth .code-block {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .ab-auth .split-heading {
        font-size: 24px;
    }

    .ab-auth .story-h2,
    .ab-auth .craft-h2,
    .ab-auth .photo-bg-text h2 {
        font-size: 24px;
    }
}

.blg {
    background: #18141c;
    min-height: 100vh;
    overflow-x: hidden;
}

.blg .pg-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

.blg .top-strip {
    background: linear-gradient(170deg, #2a1a2e 0%, #1a1020 60%, #18141c 100%);
    padding: 96px 32px 64px;
    position: relative;
}

.blg .top-strip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #C43CB5 0%, #DAA9C3 100%);
}

.blg .top-strip-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
}

.blg .top-left {
    flex: 1 1 0;
}

.blg .top-right {
    flex: 0 0 320px;
    padding-bottom: 8px;
}

.blg .pg-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DAA9C3;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 4px 16px;
    margin-bottom: 24px;
}

.blg .pg-h1 {
    font-size: 64px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px;
}

.blg .pg-h1 span {
    background: linear-gradient(120deg, #C43CB5 10%, #DAA9C3 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blg .pg-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #b89ab0;
    max-width: 520px;
    margin: 0;
}

.blg .top-right-stat {
    background: rgba(196, 60, 181, 0.08);
    border: 1.5px solid rgba(196, 60, 181, 0.22);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blg .stat-num {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.blg .stat-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #DAA9C3;
}

.blg .corner-bracket {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 32px;
    height: 32px;
    border-top: 2.5px solid rgba(196, 60, 181, 0.35);
    border-left: 2.5px solid rgba(196, 60, 181, 0.35);
    border-radius: 6px 0 0 0;
}

.blg .corner-bracket-br {
    position: absolute;
    bottom: 32px;
    right: 48px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid rgba(218, 169, 195, 0.25);
    border-right: 2px solid rgba(218, 169, 195, 0.25);
    border-radius: 0 0 6px 0;
}

.blg .posts-area {
    padding: 64px 32px;
    max-width: 1600px;
    margin: 0 auto;
}

.blg .posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blg .post-card {
    background: #211729;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid rgba(196, 60, 181, 0.13);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    animation: card-appear 0.4s ease-out both;
}

.blg .post-card:nth-child(1) {
    animation-delay: 0.05s;
}

.blg .post-card:nth-child(2) {
    animation-delay: 0.15s;
}

.blg .post-card:nth-child(3) {
    animation-delay: 0.25s;
}

.blg .post-card:nth-child(4) {
    animation-delay: 0.35s;
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blg .post-card:hover {
    border-color: rgba(196, 60, 181, 0.38);
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.blg .post-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.blg .post-img-wrap {
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.blg .post-card:not(.featured) .post-img-wrap {
    height: 220px;
    width: 100%;
}

.blg .post-card.featured .post-img-wrap {
    width: 420px;
    min-height: 280px;
    flex-shrink: 0;
}

.blg .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82);
    transition: filter 0.22s ease-out;
}

.blg .post-card:hover .post-img {
    filter: brightness(1);
}

.blg .post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.blg .post-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.blg .tag-art {
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    background: rgba(196, 60, 181, 0.12);
    border-radius: 48px;
    padding: 4px 12px;
    letter-spacing: 0.04em;
}

.blg .tag-cat {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
    background: rgba(218, 169, 195, 0.10);
    border-radius: 48px;
    padding: 4px 12px;
}

.blg .post-title-link {
    text-decoration: none;
}

.blg .post-title-link:hover .post-ttl {
    color: #DAA9C3;
}

.blg .post-ttl {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
    transition: color 0.18s ease-out;
}

.blg .post-excerpt {
    font-size: 15px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
}

.blg .post-excerpt::first-letter {
    font-size: 24px;
    line-height: 1;
    color: #C43CB5;
    float: left;
    margin-right: 4px;
    margin-top: 2px;
}

.blg .post-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(196, 60, 181, 0.10);
}

.blg .post-author {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
}

.blg .post-date {
    font-size: 15px;
    line-height: 1.2;
    color: #6e5a6b;
    margin-left: auto;
}

.blg .post-read-btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    background: transparent;
    transition: background 0.18s ease-out, color 0.18s ease-out;
    align-self: flex-start;
}

.blg .post-read-btn:hover {
    background: rgba(196, 60, 181, 0.14);
    color: #FEFCFD;
}

.blg .about-strip {
    position: relative;
    background: #1d1224;
    border-top: 1.5px solid rgba(196, 60, 181, 0.12);
    border-bottom: 1.5px solid rgba(196, 60, 181, 0.12);
    padding: 64px 32px;
}

.blg .about-strip::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #DAA9C3 0%, #C43CB5 100%);
    border-radius: 0 4px 4px 0;
}

.blg .about-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
}

.blg .about-img-col {
    flex: 0 0 340px;
    position: relative;
}

.blg .about-img-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
}

.blg .about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.22s ease-out;
}

.blg .about-img-frame:hover .about-img {
    filter: brightness(1);
}

.blg .about-bracket-tl {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    border-top: 2.5px solid #C43CB5;
    border-left: 2.5px solid #C43CB5;
    border-radius: 6px 0 0 0;
}

.blg .about-bracket-br {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-bottom: 2.5px solid #DAA9C3;
    border-right: 2.5px solid #DAA9C3;
    border-radius: 0 0 6px 0;
}

.blg .about-text-col {
    flex: 1 1 0;
}

.blg .blk-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.blg .blk-shape {
    width: 12px;
    height: 12px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.blg .blk-label-txt {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #DAA9C3;
}

.blg .about-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px;
}

.blg .about-intro {
    font-size: 16px;
    line-height: 1.55;
    color: #DAA9C3;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(218, 169, 195, 0.15);
}

.blg .about-detail {
    font-size: 15px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0 0 16px;
}

.blg .about-detail:last-of-type {
    margin-bottom: 0;
}

.blg .about-link {
    color: #DAA9C3;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease-out;
}

.blg .about-link:hover {
    text-decoration-color: #C43CB5;
}

.blg .metrics-band {
    background: #18141c;
    padding: 64px 32px;
}

.blg .metrics-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.blg .metrics-head {
    margin-bottom: 32px;
}

.blg .metrics-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 8px;
}

.blg .metrics-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
}

.blg .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blg .metric-item {
    background: #211729;
    border-radius: 10px;
    padding: 32px 24px;
    border: 1.5px solid rgba(196, 60, 181, 0.13);
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: card-appear 0.35s ease-out both;
}

.blg .metric-item:nth-child(1) {
    animation-delay: 0.1s;
}

.blg .metric-item:nth-child(2) {
    animation-delay: 0.2s;
}

.blg .metric-item:nth-child(3) {
    animation-delay: 0.3s;
}

.blg .metric-arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.blg .metric-from {
    font-size: 24px;
    line-height: 1.2;
    color: #6e5a6b;
}

.blg .metric-arr-svg {
    flex-shrink: 0;
}

.blg .metric-to {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.blg .metric-label {
    font-size: 15px;
    line-height: 1.55;
    color: #DAA9C3;
}

.blg .metric-note {
    font-size: 15px;
    line-height: 1.55;
    color: #6e5a6b;
}

.blg .metric-dot-grid {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.13;
    background-image: radial-gradient(circle, #C43CB5 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    background-position: 6px 6px;
}

.blg .tips-band {
    background: linear-gradient(155deg, #22132a 0%, #1a1020 100%);
    padding: 64px 32px;
    position: relative;
    border-top: 1.5px solid rgba(196, 60, 181, 0.10);
}

.blg .tips-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C43CB5 0%, transparent 100%);
}

.blg .tips-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.blg .tips-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blg .tips-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.blg .tips-intro {
    font-size: 16px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(196, 60, 181, 0.12);
}

.blg .tips-detail {
    font-size: 15px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
}

.blg .tips-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blg .tip-row {
    background: rgba(196, 60, 181, 0.07);
    border-radius: 10px;
    border: 1.5px solid rgba(196, 60, 181, 0.14);
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.18s ease-out;
}

.blg .tip-row:hover {
    border-color: rgba(196, 60, 181, 0.32);
}

.blg .tip-num {
    font-size: 24px;
    line-height: 1.2;
    color: rgba(196, 60, 181, 0.35);
    flex-shrink: 0;
    width: 32px;
}

.blg .tip-txt {
    flex: 1 1 0;
}

.blg .tip-head {
    font-size: 16px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 4px;
}

.blg .tip-body {
    font-size: 15px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
}

.blg .contact-band {
    background: #18141c;
    padding: 64px 32px;
    border-top: 1.5px solid rgba(196, 60, 181, 0.10);
}

.blg .contact-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.blg .contact-left {
    flex: 1 1 0;
}

.blg .contact-h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px;
}

.blg .contact-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #9d849a;
    margin: 0;
}

.blg .contact-right {
    flex: 0 0 400px;
}

.blg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blg .form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blg .form-lbl {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
}

.blg .form-inp {
    background: #211729;
    border: 2px solid rgba(196, 60, 181, 0.22);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #FEFCFD;
    outline: none;
    transition: border-color 0.2s ease-out;
}

.blg .form-inp::placeholder {
    color: #6e5a6b;
}

.blg .form-inp:focus {
    border-color: #C43CB5;
    box-shadow: inset 0 1px 4px 0 rgba(196, 60, 181, 0.12);
}

.blg .form-ta {
    resize: vertical;
    min-height: 96px;
}

.blg .form-btn {
    font-size: 16px;
    line-height: 1.2;
    color: #C43CB5;
    background: transparent;
    border: 2.5px solid #C43CB5;
    border-radius: 6px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.22s ease-out, color 0.22s ease-out;
    align-self: flex-start;
}

.blg .form-btn:hover {
    background: rgba(196, 60, 181, 0.16);
    color: #FEFCFD;
}

.blg .form-btn:active {
    box-shadow: inset 0 2px 6px 0 rgba(196, 60, 181, 0.20);
}

.blg .form-btn.shake {
    animation: btn-shake 0.35s ease-out;
}

@keyframes btn-shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .blg .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .blg .top-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .blg .posts-grid {
        grid-template-columns: 1fr;
    }

    .blg .post-card.featured {
        flex-direction: column;
    }

    .blg .post-card.featured .post-img-wrap {
        width: 100%;
        min-height: 220px;
    }

    .blg .about-inner {
        flex-direction: column;
    }

    .blg .about-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .blg .about-img {
        height: 220px;
    }

    .blg .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blg .tips-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blg .contact-inner {
        flex-direction: column;
        gap: 32px;
    }

    .blg .contact-right {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .blg .top-strip {
        padding: 64px 16px 48px;
    }

    .blg .pg-h1 {
        font-size: 34px;
    }

    .blg .posts-area {
        padding: 48px 16px;
    }

    .blg .metrics-grid {
        grid-template-columns: 1fr;
    }

    .blg .about-strip,
    .blg .metrics-band,
    .blg .tips-band,
    .blg .contact-band {
        padding: 48px 16px;
    }
}

@media (max-width: 360px) {
    .blg .pg-h1 {
        font-size: 24px;
    }

    .blg .posts-area {
        padding: 32px 8px;
    }
}

.frnt {
    background-color: #18161c;
    color: #FEFCFD;
    overflow-x: hidden;
    position: relative;
}

.frnt .narrow {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.frnt .wide-col {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.frnt .pano-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.frnt .pano-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: pano-drift 22s ease-out infinite alternate;
    opacity: 0.18;
    filter: saturate(0.4) brightness(0.6);
}

@keyframes pano-drift {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-23%);
    }
}

.frnt .pano-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #18161c 0%, rgba(24, 22, 28, 0.55) 40%, #18161c 100%);
}

.frnt .tb {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
}

.frnt .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.frnt .tb-text {
    flex: 1 1 0;
}

.frnt .tb-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #DAA9C3;
    border: 1.5px solid #C43CB5;
    border-radius: 6px;
    padding: 4px 16px;
    margin-bottom: 32px;
}

.frnt .tb-h1 {
    font-size: 64px;
    line-height: 1.2;
    margin: 0 0 32px 0;
    background: linear-gradient(128deg, #FEFCFD 30%, #DAA9C3 70%, #C43CB5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.frnt .tb-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #c8bfc8;
    margin: 0 0 32px 0;
}

.frnt .tb-lead::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.frnt .tb-cta {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C43CB5;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 16px 32px;
    text-decoration: none !important;
    background: transparent;
    transition: background-color 0.2s ease-out, color 0.18s ease-out, box-shadow 0.25s ease-out;
}

.frnt .tb-cta:hover {
    background-color: #C43CB5;
    color: #FEFCFD;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.frnt .tb-cta:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.18);
}

.frnt .tb-img-col {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.frnt .tb-img-wrap {
    width: 280px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.frnt .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter 0.35s ease-out;
}

.frnt .tb-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(196, 60, 181, 0.18) 0%, rgba(218, 169, 195, 0.08) 100%);
    pointer-events: none;
    border-radius: 10px;
}

.frnt .tb-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: rgba(196, 60, 181, 0.09);
    border: 1.5px solid rgba(196, 60, 181, 0.22);
    pointer-events: none;
}

.frnt .tb-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
    opacity: 0.45;
}

.frnt .tb-arrow-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, #C43CB5 0%, transparent 100%);
}

.frnt .tb-arrow-head {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #C43CB5;
}

.frnt .zz {
    display: block;
    width: 100%;
    height: 32px;
    overflow: hidden;
}

.frnt .posts-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #1d1a24;
}

.frnt .posts-heading-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.frnt .posts-geo {
    width: 12px;
    height: 12px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.frnt .posts-h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0;
    color: #FEFCFD;
}

.frnt .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.frnt .post-card {
    background: #231f2c;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
    transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
    container-type: inline-size;
}

.frnt .post-card:hover {
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    transform: translateY(-2px);
}

.frnt .post-img-box {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.frnt .post-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease-out;
    filter: brightness(0.88) saturate(0.8);
}

.frnt .post-card:hover .post-img-box img {
    transform: scale(1.04);
}

.frnt .post-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.frnt .post-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.frnt .post-tag {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
    background: rgba(218, 169, 195, 0.09);
    border-radius: 6px;
    padding: 4px 8px;
}

.frnt .post-title {
    font-size: 16px;
    line-height: 1.55;
    color: #FEFCFD;
    margin: 0;
}

.frnt .post-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #b0a8b8;
    margin: 0;
    flex: 1;
}

.frnt .post-author {
    font-size: 15px;
    line-height: 1.2;
    color: #7a6e82;
    margin-top: 8px;
}

.frnt .post-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease-out, color 0.2s ease-out;
    align-self: flex-start;
}

.frnt .post-link:hover {
    border-color: #C43CB5;
    color: #DAA9C3;
}

.frnt .zzsvg {
    display: block;
    width: 100%;
}

.frnt .about-blk {
    padding-top: 96px;
    padding-bottom: 64px;
    background: #18161c;
    position: relative;
}

.frnt .about-inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.frnt .about-txt {
    flex: 1;
}

.frnt .about-geo {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    margin-right: 8px;
    vertical-align: middle;
}

.frnt .about-h3 {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 32px 0;
    color: #FEFCFD;
    display: inline;
}

.frnt .about-h3-row {
    margin-bottom: 32px;
}

.frnt .about-p {
    font-size: 16px;
    line-height: 1.8;
    color: #b8b0c0;
    margin: 0 0 16px 0;
}

.frnt .about-p::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.frnt .about-stat {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.frnt .stat-num {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.frnt .stat-bar-bg {
    height: 3px;
    background: rgba(196, 60, 181, 0.15);
    border-radius: 48px;
    width: 200px;
}

.frnt .stat-bar-fill {
    height: 3px;
    border-radius: 48px;
    background: linear-gradient(90deg, #C43CB5 0%, #DAA9C3 100%);
}

.frnt .stat-label {
    font-size: 15px;
    line-height: 1.2;
    color: #7a6e82;
    margin-top: 4px;
}

.frnt .about-img-col {
    flex: 0 0 220px;
}

.frnt .about-img-box {
    width: 220px;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.frnt .about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.6) brightness(0.8);
}

.frnt .themes-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #1d1a24;
}

.frnt .themes-h4 {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 32px 0;
}

.frnt .themes-geo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.frnt .themes-geo-sq {
    width: 10px;
    height: 10px;
    background: #C43CB5;
    border-radius: 0;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.frnt .themes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.frnt .theme-item {
    background: #231f2c;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 1px 6px 0 rgba(218, 169, 195, 0.06);
    transition: box-shadow 0.22s ease-out;
}

.frnt .theme-item:hover {
    box-shadow: 2px 7px 25px 0 rgba(218, 169, 195, 0.10);
}

.frnt .theme-name {
    font-size: 16px;
    line-height: 1.55;
    color: #DAA9C3;
}

.frnt .theme-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #8a8090;
}

.frnt .theme-link {
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease-out;
    align-self: flex-start;
}

.frnt .theme-link:hover {
    border-color: #C43CB5;
}

.frnt .rhythm-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #18161c;
}

.frnt .rhythm-inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.frnt .rhythm-txt {
    flex: 1;
}

.frnt .rhythm-h5 {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px 0;
}

.frnt .rhythm-geo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.frnt .rhythm-geo-tri {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #C43CB5;
    flex-shrink: 0;
}

.frnt .rhythm-p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0a8b8;
    margin: 0 0 16px 0;
}

.frnt .rhythm-p::first-letter {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.frnt .rhythm-topics {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .rhythm-topic-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.frnt .rtick {
    width: 6px;
    height: 6px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.frnt .rtopic {
    font-size: 15px;
    line-height: 1.55;
    color: #c0b8c8;
}

.frnt .rhythm-img-col {
    flex: 0 0 260px;
}

.frnt .rhythm-img-box {
    width: 260px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
}

.frnt .rhythm-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.8) saturate(0.7);
    transition: filter 0.3s ease-out;
}

.frnt .rhythm-img-box:hover img {
    filter: brightness(0.9) saturate(0.9);
}

.frnt .start-blk {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #211d2a;
}

.frnt .start-h4 {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 32px 0;
}

.frnt .start-geo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.frnt .start-geo-bar {
    width: 24px;
    height: 3px;
    background: #C43CB5;
    border-radius: 48px;
    flex-shrink: 0;
}

.frnt .start-cols {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.frnt .start-img-col {
    flex: 0 0 240px;
}

.frnt .start-img-box {
    width: 240px;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.frnt .start-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.65) brightness(0.82);
}

.frnt .start-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .start-item {
    border-top: 1px solid rgba(196, 60, 181, 0.18);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .start-item-title {
    font-size: 16px;
    line-height: 1.55;
    color: #FEFCFD;
    margin: 0;
}

.frnt .start-item-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #8a8090;
    margin: 0;
}

.frnt .start-item-link {
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease-out, color 0.2s ease-out;
    align-self: flex-start;
}

.frnt .start-item-link:hover {
    border-color: #DAA9C3;
    color: #DAA9C3;
}

.frnt .engage-blk {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #18161c;
    position: relative;
}

.frnt .engage-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.frnt .engage-geo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.frnt .engage-geo-diamond {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid #C43CB5;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.frnt .engage-h6 {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.frnt .engage-p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0a8b8;
    max-width: 520px;
    margin: 0;
}

.frnt .engage-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
}

.frnt .engage-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.frnt .engage-label {
    font-size: 15px;
    line-height: 1.2;
    color: #DAA9C3;
}

.frnt .engage-input,
.frnt .engage-textarea {
    background: #231f2c;
    border: 1.5px solid rgba(196, 60, 181, 0.25);
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.55;
    color: #FEFCFD;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.22s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.frnt .engage-input::placeholder,
.frnt .engage-textarea::placeholder {
    color: #5a5060;
}

.frnt .engage-input:focus,
.frnt .engage-textarea:focus {
    border-color: #C43CB5;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.frnt .engage-textarea {
    resize: vertical;
    min-height: 96px;
}

.frnt .engage-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C43CB5;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 16px 48px;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease-out, color 0.18s ease-out, box-shadow 0.25s ease-out;
    align-self: center;
}

.frnt .engage-btn:hover {
    background-color: #C43CB5;
    color: #FEFCFD;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.frnt .engage-btn:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.18);
}

.frnt .engage-btn.shake {
    animation: btn-shake 0.35s ease-out;
}

@keyframes btn-shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

.frnt .engage-deco {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(196, 60, 181, 0.12);
    border-radius: 10px;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .frnt .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .frnt .tb-h1 {
        font-size: 48px;
    }

    .frnt .tb-img-col {
        flex: 0 0 200px;
    }

    .frnt .tb-img-wrap {
        width: 200px;
    }
}

@media (max-width: 640px) {
    .frnt .tb-inner {
        flex-direction: column;
    }

    .frnt .tb-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .frnt .tb-img-wrap {
        width: 100%;
    }

    .frnt .tb-h1 {
        font-size: 34px;
    }

    .frnt .posts-grid {
        grid-template-columns: 1fr;
    }

    .frnt .about-inner {
        flex-direction: column;
    }

    .frnt .about-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .frnt .about-img-box {
        width: 100%;
    }

    .frnt .themes-list {
        grid-template-columns: 1fr;
    }

    .frnt .rhythm-inner {
        flex-direction: column;
    }

    .frnt .rhythm-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .frnt .rhythm-img-box {
        width: 100%;
    }

    .frnt .start-cols {
        flex-direction: column;
    }

    .frnt .start-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .frnt .start-img-box {
        width: 100%;
    }

    .frnt .engage-deco {
        display: none;
    }

    .frnt .narrow {
        padding-left: 16px;
        padding-right: 16px;
    }

    .frnt .wide-col {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 360px) {
    .frnt .tb-h1 {
        font-size: 24px;
    }

    .frnt .tb-label {
        font-size: 15px;
    }
}

.evts-pg {
    background-color: #18181f;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.evts-pg .top-band {
    background: linear-gradient(170deg, #1e1a2e 0%, #18181f 60%, #1a1520 100%);
    padding: 96px 32px 48px;
    position: relative;
    overflow: hidden;
}

.evts-pg .top-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(196, 60, 181, 0.12);
    border-radius: 18px;
    transform: rotate(22deg);
    pointer-events: none;
}

.evts-pg .top-band::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(218, 169, 195, 0.08);
    border-radius: 10px;
    transform: rotate(-12deg);
    pointer-events: none;
}

.evts-pg .band-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
}

.evts-pg .band-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts-pg .eyebrow {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DAA9C3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.evts-pg .eyebrow-shape {
    width: 8px;
    height: 8px;
    background: #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.evts-pg .pg-heading {
    font-size: 64px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.evts-pg .pg-heading span {
    background: linear-gradient(135deg, #C43CB5 0%, #DAA9C3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evts-pg .band-right {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 8px;
}

.evts-pg .band-desc {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.65);
    max-width: 520px;
}

.evts-pg .band-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-top: 8px;
}

.evts-pg .meta-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evts-pg .meta-num {
    font-size: 34px;
    line-height: 1.2;
    color: #C43CB5;
}

.evts-pg .meta-lbl {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.evts-pg .meta-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(196, 60, 181, 0.4), transparent);
}

.evts-pg .cards-area {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
}

.evts-pg .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.evts-pg .ev-card {
    background: linear-gradient(160deg, #201d2e 0%, #1c1924 100%);
    border: 1px solid rgba(196, 60, 181, 0.15);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out, transform 0.2s ease-out;
    animation: card-bounce-in 0.45s ease-out both;
}

.evts-pg .ev-card:nth-child(1) {
    animation-delay: 0.05s;
}

.evts-pg .ev-card:nth-child(2) {
    animation-delay: 0.12s;
}

.evts-pg .ev-card:nth-child(3) {
    animation-delay: 0.19s;
}

.evts-pg .ev-card:nth-child(4) {
    animation-delay: 0.26s;
}

.evts-pg .ev-card:nth-child(5) {
    animation-delay: 0.33s;
}

@keyframes card-bounce-in {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }

    65% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.evts-pg .ev-card:hover {
    border-color: rgba(196, 60, 181, 0.45);
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
    transform: translateY(-3px);
}

.evts-pg .card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.evts-pg .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.evts-pg .ev-card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.evts-pg .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(196, 60, 181, 0.85);
    color: #FEFCFD;
    font-size: 15px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 48px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.evts-pg .card-seats {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(24, 24, 31, 0.82);
    border: 1px solid rgba(218, 169, 195, 0.3);
    color: #DAA9C3;
    font-size: 15px;
    line-height: 1.2;
    padding: 4px 12px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.evts-pg .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.evts-pg .card-title {
    font-size: 24px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.evts-pg .card-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.6);
    margin: 0;
}

.evts-pg .card-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(196, 60, 181, 0.12);
}

.evts-pg .card-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.evts-pg .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.65);
}

.evts-pg .stat-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.evts-pg .card-time {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.5);
}

.evts-pg .card-foot {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.evts-pg .price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evts-pg .price-val {
    font-size: 24px;
    line-height: 1.2;
    color: #C43CB5;
}

.evts-pg .price-note {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.5);
}

.evts-pg .card-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    color: #C43CB5;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    background: transparent;
    transition: background 0.18s ease-out, color 0.18s ease-out, box-shadow 0.22s ease-out;
    cursor: pointer;
}

.evts-pg .card-btn:hover {
    background: #C43CB5;
    color: #FEFCFD;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.evts-pg .card-btn:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.evts-pg .about-strip {
    background: linear-gradient(135deg, #1a1228 0%, #23192e 50%, #1c1924 100%);
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
}

.evts-pg .about-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 60, 181, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 60, 181, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    animation: flicker-bg 8s ease-in-out infinite;
}

@keyframes flicker-bg {

    0%,
    100% {
        opacity: 1;
    }

    30% {
        opacity: 0.85;
    }

    55% {
        opacity: 0.95;
    }

    72% {
        opacity: 0.8;
    }

    88% {
        opacity: 0.92;
    }
}

.evts-pg .about-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 4px 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.evts-pg .about-accent-div {
    width: 4px;
    align-self: stretch;
    background: linear-gradient(180deg, #C43CB5 0%, rgba(196, 60, 181, 0.2) 100%);
    border-radius: 48px;
}

.evts-pg .about-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts-pg .about-label {
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #DAA9C3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.evts-pg .about-shape {
    width: 10px;
    height: 10px;
    border: 2px solid #C43CB5;
    border-radius: 6px;
    flex-shrink: 0;
}

.evts-pg .about-h {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.evts-pg .about-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts-pg .about-portraits {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.evts-pg .portrait-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.evts-pg .portrait-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(196, 60, 181, 0.2);
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.evts-pg .portrait-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.25s ease-out;
}

.evts-pg .portrait-card:hover .portrait-img-wrap img {
    filter: grayscale(0%) contrast(1.08);
}

.evts-pg .portrait-name {
    font-size: 16px;
    line-height: 1.2;
    color: #FEFCFD;
}

.evts-pg .portrait-role {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(218, 169, 195, 0.6);
}

.evts-pg .about-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts-pg .about-para {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.72);
    margin: 0;
}

.evts-pg .about-para::first-letter {
    font-size: 34px;
    line-height: 1;
    color: #C43CB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.evts-pg .funnel-strip {
    padding: 48px 32px;
    background: #18181f;
    position: relative;
}

.evts-pg .funnel-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.evts-pg .funnel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts-pg .funnel-label {
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #DAA9C3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.evts-pg .funnel-shape-sq {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #C43CB5, #DAA9C3);
    border-radius: 0;
    flex-shrink: 0;
    transform: rotate(45deg);
}

.evts-pg .funnel-h {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0;
}

.evts-pg .funnel-p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(254, 252, 253, 0.65);
    margin: 0;
}

.evts-pg .funnel-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.evts-pg .funnel-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.evts-pg .funnel-bar {
    height: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    transition: opacity 0.18s ease-out;
}

.evts-pg .funnel-bar:hover {
    opacity: 0.85;
}

.evts-pg .funnel-bar.step-1 {
    width: 100%;
    background: linear-gradient(90deg, #C43CB5 0%, rgba(196, 60, 181, 0.7) 100%);
}

.evts-pg .funnel-bar.step-2 {
    width: 80%;
    background: linear-gradient(90deg, rgba(196, 60, 181, 0.8) 0%, rgba(218, 169, 195, 0.6) 100%);
}

.evts-pg .funnel-bar.step-3 {
    width: 62%;
    background: linear-gradient(90deg, rgba(196, 60, 181, 0.6) 0%, rgba(218, 169, 195, 0.4) 100%);
}

.evts-pg .funnel-bar.step-4 {
    width: 44%;
    background: linear-gradient(90deg, rgba(196, 60, 181, 0.4) 0%, rgba(218, 169, 195, 0.25) 100%);
    border: 1px solid rgba(196, 60, 181, 0.3);
}

.evts-pg .funnel-bar.step-5 {
    width: 28%;
    background: transparent;
    border: 2px solid #C43CB5;
}

.evts-pg .fbar-label {
    font-size: 15px;
    line-height: 1.2;
    color: #FEFCFD;
    white-space: nowrap;
}

.evts-pg .fbar-pct {
    font-size: 15px;
    line-height: 1.2;
    color: rgba(254, 252, 253, 0.75);
    white-space: nowrap;
}

.evts-pg .funnel-connector {
    width: 2px;
    height: 8px;
    background: rgba(196, 60, 181, 0.3);
}

@media (max-width: 1024px) {
    .evts-pg .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evts-pg .band-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .evts-pg .band-left,
    .evts-pg .band-right {
        flex: none;
        width: 100%;
    }

    .evts-pg .about-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .evts-pg .about-accent-div {
        width: 100%;
        height: 4px;
        align-self: auto;
    }

    .evts-pg .funnel-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .evts-pg .cards-grid {
        grid-template-columns: 1fr;
    }

    .evts-pg .top-band {
        padding: 48px 16px 32px;
    }

    .evts-pg .cards-area {
        padding: 32px 16px;
    }

    .evts-pg .about-strip {
        padding: 32px 16px;
    }

    .evts-pg .funnel-strip {
        padding: 32px 16px;
    }

    .evts-pg .pg-heading {
        font-size: 34px;
    }

    .evts-pg .about-portraits {
        flex-direction: column;
    }

    .evts-pg .band-meta {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 360px) {
    .evts-pg .pg-heading {
        font-size: 24px;
    }

    .evts-pg .card-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1b1d24;
    padding: 96px 16px;
}

.succ-page .succ-wrap {
    max-width: 560px;
    width: 100%;
    background: #22242e;
    border-radius: 18px;
    padding: 48px;
    box-shadow: 2px 8px 40px 0 rgba(196, 60, 181, 0.10);
    position: relative;
    overflow: hidden;
}

.succ-page .succ-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(95deg, #C43CB5 0%, #DAA9C3 60%, #22242e 100%);
    border-radius: 18px 18px 0 0;
}

.succ-page .succ-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 32px 0;
    display: block;
}

.succ-page .succ-icon .icon-circle {
    fill: none;
    stroke: #C43CB5;
    stroke-width: 2;
    stroke-dasharray: 160;
    stroke-dashoffset: 0;
}

.succ-page .succ-icon .icon-check {
    fill: none;
    stroke: #DAA9C3;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.succ-page .succ-label {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C43CB5;
    margin: 0 0 8px 0;
    display: block;
}

.succ-page .succ-heading {
    font-size: 34px;
    line-height: 1.2;
    color: #FEFCFD;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.succ-page .succ-body {
    font-size: 16px;
    line-height: 1.55;
    color: #b8b0be;
    margin: 0 0 32px 0;
}

.succ-page .succ-body .drop-cap::first-letter {
    font-size: 24px;
    color: #C43CB5;
    float: left;
    line-height: 1.2;
    margin-right: 4px;
    margin-top: 2px;
}

.succ-page .succ-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #C43CB5 0%, transparent 100%);
    opacity: 0.18;
    margin: 0 0 32px 0;
    border: none;
}

.succ-page .succ-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 0 0 32px 0;
}

.succ-page .succ-meta .meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #C43CB5;
    flex-shrink: 0;
    box-shadow: 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.succ-page .succ-meta .meta-text {
    font-size: 15px;
    line-height: 1.55;
    color: #9a8fa4;
    margin: 0;
}

.succ-page .succ-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.succ-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.2;
    color: #FEFCFD;
    background: transparent;
    border: 2px solid #C43CB5;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease-out, border-color 0.25s ease-out, color 0.2s ease-out;
    box-shadow: 2px 7px 25px 0 rgba(196, 60, 181, 0.10);
}

.succ-page .btn-primary:hover {
    background: #C43CB5;
    color: #FEFCFD;
    border-color: #C43CB5;
}

.succ-page .btn-primary:focus {
    outline: 2px solid #DAA9C3;
    outline-offset: 3px;
}

.succ-page .btn-primary:active {
    box-shadow: inset 2px 1px 6px 0 rgba(196, 60, 181, 0.06);
}

.succ-page .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.2;
    color: #9a8fa4;
    background: transparent;
    border: 2px solid #3a3545;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: border-color 0.18s ease-out, color 0.22s ease-out;
}

.succ-page .btn-ghost:hover {
    border-color: #DAA9C3;
    color: #DAA9C3;
}

.succ-page .btn-ghost:focus {
    outline: 2px solid #DAA9C3;
    outline-offset: 3px;
}

.succ-page .btn-ghost:active {
    box-shadow: inset 2px 1px 6px 0 rgba(218, 169, 195, 0.06);
}

.succ-page .succ-brand {
    margin-top: 48px;
    font-size: 15px;
    line-height: 1.2;
    color: #4a4358;
    letter-spacing: 0.06em;
    text-align: center;
}

.succ-page .succ-brand strong {
    color: #C43CB5;
    font-weight: 700;
}

@media (max-width: 640px) {
    .succ-page .succ-wrap {
        padding: 32px 24px;
    }

    .succ-page .succ-heading {
        font-size: 24px;
    }

    .succ-page .succ-actions {
        flex-direction: column;
    }

    .succ-page .btn-primary,
    .succ-page .btn-ghost {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .succ-page {
        padding: 48px 8px;
    }

    .succ-page .succ-wrap {
        padding: 24px 16px;
    }
}