html {
                    scroll-behavior: smooth;
}

body {
                    margin: 0;
                    background-color: #F5F2FF;
                    font-family: "Phantom", sans-serif;
                    transition: background-color 0.6s ease;
}

body.theme-accent {
                    background-color: #AB9FF2;
}

.site-header {
                    padding: 40px 0;
}

.header-inner {
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    max-width: 1200px;
                    padding: 0 40px;
                    gap: 40px;
                    box-sizing: border-box;
}

.brand {
                    display: inline-flex;
                    align-items: center;
                    text-decoration: none;
                    color: #3C315B;
}

.brand svg {
                    display: block;
                    width: 152px;
                    height: 30px;
                    fill: #3C315B;
}

.brand img {
                    display: block;
                    width: 152px;
                    height: 30px;
}

.main-nav {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 16px;
                    flex: 0 1 auto;
                    background-color: #FFFFFF;
                    padding: 8px 24px;
                    border-radius: 999px;
}

.main-nav .nav-button {
                    background-color: transparent;
                    color: #3C315B;
                    border: none;
                    border-radius: 999px;
                    padding: 12px 24px;
                    font-size: 16px;
                    font-weight: 400;
                    font-family: inherit;
                    cursor: pointer;
                    transition: transform 0.2s ease, box-shadow 0.2s ease;
                    text-decoration: none;
}

.main-nav .nav-button:focus-visible,
.main-nav .nav-button:hover {
                    transform: translateY(-2px);
                    outline: none;
}

.reward-button {
                    background-color: #AB9FF2;
                    color: #3C315B;
                    border: none;
                    border-radius: 999px;
                    padding: 16px 32px;
                    font-size: 16px;
                    font-weight: 400;
                    font-family: inherit;
                    cursor: pointer;
                    transition: background-color 0.2s ease;
}

.reward-button:focus-visible,
.reward-button:hover {
                    background-color: rgba(171, 159, 242, 0.6);
                    outline: none;
}

.airdrop-section {
                    padding: 120px 40px 140px;
}

.airdrop-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    gap: 32px;
                    box-sizing: border-box;
}

.airdrop-eyebrow {
                    margin: 0;
                    font-size: 20px;
                    font-weight: 500;
                    letter-spacing: normal;
                    text-transform: none;
                    color: #7B6BAE;
}

.airdrop-title {
                    margin: 0;
                    font-size: clamp(48px, 8vw, 96px);
                    line-height: 1;
                    color: #3C315B;
                    font-weight: 400;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: clamp(12px, 1.5vw, 20px);
}

.airdrop-line-primary {
                    display: inline-flex;
                    align-items: center;
                    gap: 24px;
                    flex-wrap: nowrap;
                    white-space: nowrap;
}

.airdrop-line-secondary {
                    display: block;
                    margin-top: 0;
}

.airdrop-description {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.6;
                    color: #5A4A87;
                    max-width: 600px;
}

.airdrop-actions {
                    display: flex;
                    align-items: center;
                    gap: 16px;
}

.airdrop-button {
                    background-color: #FFFFFF;
                    color: #3C315B;
                    border: none;
                    border-radius: 999px;
                    padding: 16px 32px;
                    font-size: 16px;
                    font-weight: 500;
                    font-family: inherit;
                    cursor: pointer;
                    transition: background-color 0.2s ease, color 0.2s ease;
}

.airdrop-secondary-button {
                    background-color: #AB9FF2;
                    color: #3C315B;
                    border: none;
                    border-radius: 999px;
                    padding: 16px 32px;
                    font-size: 16px;
                    font-weight: 500;
                    font-family: inherit;
                    cursor: pointer;
                    transition: background-color 0.2s ease;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
}

.airdrop-hero {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
}

.airdrop-hero img {
                    width: clamp(80px, 10vw, 130px);
                    height: auto;
                    max-height: 100px;
}

.airdrop-button:focus-visible,
.airdrop-button:hover {
                    background-color: #3C315B;
                    color: #FFFFFF;
                    outline: none;
}

.airdrop-secondary-button:focus-visible,
.airdrop-secondary-button:hover {
                    background-color: rgba(171, 159, 242, 0.6);
                    outline: none;
}

.airdrop-terms-section {
                    padding: 120px 40px 140px;
}

.airdrop-terms-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    flex-direction: column;
                    gap: 64px;
}

.airdrop-terms-header {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    max-width: 720px;
}

.terms-title {
                    margin: 0;
                    font-size: clamp(40px, 9vw, 96px);
                    font-weight: 500;
                    color: #3C315B;
}

.terms-subtitle {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.6;
                    color: #5A4A87;
}

.terms-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 0;
                    border-radius: 32px;
                    border: 1px solid rgba(171, 159, 242, 0.3);
}

.terms-card {
                    background: #FFFFFF;
                    padding: 48px 40px;
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    color: #3C315B;
                    position: relative;
                    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.terms-card:first-child {
                    border-top-left-radius: 32px;
                    border-bottom-left-radius: 32px;
}

.terms-card:last-child {
                    border-top-right-radius: 32px;
                    border-bottom-right-radius: 32px;
}

.terms-card + .terms-card {
                    border-left: 1px solid rgba(171, 159, 242, 0.3);
}

.terms-card:hover,
.terms-card:focus-within {
                    background: #AB9FF2;
                    transform: translateY(-28px);
                    box-shadow: none;
}

.terms-step {
                    font-size: 20px;
                    font-weight: 600;
                    color: #7B6BAE;
}

.terms-card:hover .terms-step,
.terms-card:focus-within .terms-step {
                    color: #3C315B;
}

.terms-card--highlight .terms-step {
                    color: #3C315B;
}

.terms-card-title {
                    margin: 0;
                    font-size: 28px;
                    font-weight: 500;
                    color: inherit;
}

.terms-card-description {
                    margin: 0;
                    font-size: 16px;
                    line-height: 1.6;
                    color: #5A4A87;
}

.terms-card:hover .terms-card-description,
.terms-card:focus-within .terms-card-description,
.terms-card:hover .terms-card-title,
.terms-card:focus-within .terms-card-title {
                    color: #3C315B;
}

.terms-card--highlight .terms-card-description {
                    color: #3C315B;
}

.terms-cta {
                    margin-top: auto;
                    align-self: flex-start;
}

.airdrop-stats-section {
                    padding: 120px 40px 140px;
}

.airdrop-stats-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    flex-direction: column;
                    gap: 64px;
}

.stats-header {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    max-width: 720px;
}

.stats-title {
                    margin: 0;
                    font-size: clamp(40px, 7vw, 96px);
                    font-weight: 500;
                    color: #3C315B;
}

.stats-subtitle {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.6;
                    color: #5A4A87;
}

.stats-content {
                    width: 100%;
}

.stats-list {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 24px;
                    width: 100%;
                    justify-items: stretch;
}

.stats-item {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    padding: 24px 28px;
                    border-radius: 24px;
                    background: #FFFFFF;
                    border: 1px solid rgba(171, 159, 242, 0.25);
                    box-shadow: none;
                    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.stats-item-label {
                    font-size: 20px;
                    font-weight: 500;
                    letter-spacing: normal;
                    text-transform: none;
                    color: #3C315B;
}

.stats-item-value {
                    font-size: 24px;
                    font-weight: 500;
                    color: #86848D;
}

.stats-item:hover,
.stats-item:focus-within {
                    background: #AB9FF2;
                    transform: translateY(-16px);
                    box-shadow: none;
}

.stats-item:hover .stats-item-label,
.stats-item:focus-within .stats-item-label,
.stats-item:hover .stats-item-value,
.stats-item:focus-within .stats-item-value {
                    color: #3C315B;
}

.stats-ledger {
                    display: flex;
                    flex-direction: column;
                    gap: 32px;
                    padding: 40px 44px 48px;
                    border-radius: 36px;
                    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.96) 100%);
                    border: 1px solid rgba(171, 159, 242, 0.25);
                    box-shadow: none;
}

.stats-ledger-header {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
}

.stats-ledger-eyebrow {
                    font-size: 16px;
                    font-weight: 600;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                    color: #7B6BAE;
}

.stats-ledger-copy {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.6;
                    color: #5A4A87;
                    max-width: 540px;
}

.cta-intro-section {
                    padding: 120px 40px 140px;
}

.cta-intro-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 32px;
                    text-align: center;
                    border-radius: 0;
                    background: none;
                    padding: 72px 64px 80px;
                    box-shadow: none;
}

.cta-intro-visual img {
                    display: block;
                    width: 360px;
                    height: auto;
}

.cta-intro-title {
                    margin: 0;
                    font-size: clamp(40px, 7vw, 96px);
                    font-weight: 500;
                    color: #3C315B;
}

.cta-intro-copy {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.7;
                    color: #5A4A87;
                    max-width: 520px;
}

.cta-intro-actions {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 16px;
}

.cta-intro-button {
                    border-radius: 999px;
                    padding: 18px 36px;
                    font-size: 16px;
                    font-weight: 500;
                    font-family: inherit;
                    cursor: pointer;
                    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
                    border: 1px solid transparent;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
}

.cta-intro-button--primary {
                    background-color: #3C315B;
                    color: #FFFFFF;
}

.cta-intro-button--ghost {
                    background-color: #FFFFFF;
                    color: #3C315B;
                    border-color: rgba(60, 49, 91, 0.2);
}

.cta-intro-button:hover,
.cta-intro-button:focus-visible {
                    transform: translateY(-2px);
                    box-shadow: none;
                    outline: none;
}

.cta-intro-button--primary:hover,
.cta-intro-button--primary:focus-visible {
                    background-color: #524475;
}

.cta-intro-button--ghost:hover,
.cta-intro-button--ghost:focus-visible {
                    background-color: rgba(255, 255, 255, 0.85);
                    transform: none;
}

.site-footer {
                    padding: 48px 40px 64px;
                    border-top: 1px solid rgba(171, 159, 242, 0.35);
                    background: rgba(255, 255, 255, 0.08);
}

.footer-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 24px;
}

.footer-brand img {
                    display: block;
                    width: 152px;
                    height: auto;
}

.footer-copy {
                    font-size: 16px;
                    color: #3C315B;
}

.footer-button {
                    border: 1px solid rgba(60, 49, 91, 0.2);
                    border-radius: 999px;
                    padding: 14px 32px;
                    background: #FFFFFF;
                    color: #3C315B;
                    font-size: 16px;
                    font-family: inherit;
                    cursor: pointer;
                    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
                    transform: translateY(-1px);
                    background: rgba(255, 255, 255, 0.9);
                    outline: none;
}

.airdrop-faq-section {
                    padding: 120px 40px 160px;
}

.airdrop-faq-inner {
                    margin: 0 auto;
                    max-width: 1200px;
                    display: flex;
                    flex-direction: column;
                    gap: 48px;
                    padding: 0 40px;
                    box-sizing: border-box;
}

.faq-header {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
}

.faq-title {
                    margin: 0;
                    font-size: clamp(40px, 7vw, 96px);
                    font-weight: 500;
                    color: #3C315B;
}

.faq-subtitle {
                    margin: 0;
                    font-size: 18px;
                    line-height: 1.6;
                    color: #5A4A87;
                    max-width: 640px;
}

.faq-list {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
}

.faq-item {
                    position: relative;
                    border-radius: 28px;
                    border: 1px solid rgba(170, 159, 242, 0.25);
                    background: linear-gradient(180deg, rgba(244, 240, 255, 0.95) 0%, rgba(232, 224, 255, 0.9) 100%);
                    box-shadow: none;
                    padding: 28px 32px;
                    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
                    border-color: rgba(123, 107, 174, 0.5);
                    box-shadow: none;
                    transform: translateY(-4px);
                    background: linear-gradient(180deg, rgba(237, 231, 255, 0.98) 0%, rgba(226, 218, 255, 0.94) 100%);
}

.faq-question {
                    list-style: none;
                    cursor: pointer;
                    font-size: 20px;
                    font-weight: 400;
                    color: #3C315B;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 16px;
}

.faq-question::-webkit-details-marker {
                    display: none;
}

.faq-question::after {
                    content: "＋";
                    font-size: 18px;
                    color: #7B6BAE;
                    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-question::after {
                    content: "－";
                    color: #3C315B;
}

.faq-answer {
                    margin: 20px 0 0;
                    font-size: 16px;
                    line-height: 1.7;
                    color: #5A4A87;
}

.stats-item:nth-child(2) {
                    justify-self: stretch;
                    text-align: left;
                    align-items: flex-start;
}

.stats-item:nth-child(3) {
                    justify-self: stretch;
                    text-align: left;
                    align-items: flex-start;
}

.table-shell {
                    border: 1px solid rgba(171, 159, 242, 0.3);
                    border-radius: 32px;
                    background: rgba(255, 255, 255, 0.9);
                    box-shadow: none;
                    overflow: hidden;
}

.table-shell-header {
                    display: grid;
                    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
                    gap: 0;
                    padding: 24px 32px;
                    font-size: 14px;
                    font-weight: 600;
                    letter-spacing: 0.16em;
                    text-transform: uppercase;
                    color: #7B6BAE;
                    background: rgba(171, 159, 242, 0.15);
}

.table-rows {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    display: flex;
                    flex-direction: column;
}

.table-row {
                    display: grid;
                    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
                    gap: 0;
                    padding: 24px 32px;
                    align-items: center;
                    border-top: 1px solid rgba(171, 159, 242, 0.15);
                    transition: background-color 0.2s ease;
}

.table-row:first-child {
                    border-top: none;
}

.table-row:hover,
.table-row:focus-within {
                    background: rgba(171, 159, 242, 0.08);
}

.table-row--enter {
                    opacity: 0;
                    transform: translateY(-16px);
}

.table-row--enter-active {
                    animation: tableRowEnter 0.6s ease forwards;
}

@keyframes tableRowEnter {
                    0% {
                                        opacity: 0;
                                        transform: translateY(-16px);
                    }
                    60% {
                                        opacity: 1;
                                        transform: translateY(4px);
                    }
                    100% {
                                        opacity: 1;
                                        transform: translateY(0);
                    }
}

.table-cell {
                    font-size: 18px;
                    color: #3C315B;
                    display: flex;
                    align-items: center;
                    gap: 6px;
}

.table-cell--value {
                    font-weight: 600;
                    gap: 2px;
}

.table-cell--fee,
.table-cell--time {
                    color: #86848D;
}

.table-cell--from,
.table-cell--to {
                    font-family: "Phantom", sans-serif;
                    letter-spacing: 0.04em;
}

.terms-card:hover .terms-cta,
.terms-card:focus-within .terms-cta {
                    background-color: #3C315B;
                    color: #FFFFFF;
}

@media (max-width: 1024px) {
                    .header-inner {
                                        padding: 0 32px;
                    }

                    .terms-grid {
                                        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                                        border-radius: 24px;
                    }

                    .terms-card:nth-child(3) {
                                        border-top: 1px solid rgba(171, 159, 242, 0.3);
                                        border-left: none;
                                        grid-column: span 2;
                                        border-bottom-left-radius: 24px;
                                        border-bottom-right-radius: 24px;
                    }

                    .stats-list {
                                        grid-template-columns: repeat(2, minmax(0, 1fr));
                                        gap: 20px;
                    }

                    .table-shell-header,
                    .table-row {
                                        grid-template-columns: 1.4fr 1.4fr 1fr 0.8fr 1fr;
                                        padding: 20px 28px;
                    }

                    .table-cell {
                                        font-size: 16px;
                                        gap: 4px;
                    }
}

@media (max-width: 760px) {
                    .header-inner {
                                        flex-direction: row;
                                        align-items: center;
                                        justify-content: space-between;
                                        padding: 0 20px;
                                        gap: 20px;
                    }

                    .main-nav {
                                        display: none;
                    }

                    .reward-button {
                                        width: auto;
                    }

                    .airdrop-section {
                                        padding: 96px 20px 120px;
                    }

                    .airdrop-terms-section {
                                        padding: 80px 20px 100px;
                    }

                    .airdrop-inner {
                                        gap: 32px;
                    }

                    .airdrop-title {
                                        font-size: clamp(36px, 12vw, 64px);
                    }
                    .airdrop-actions {
                                        flex-direction: column;
                                        width: 100%;
                    }
                    .airdrop-line-primary {
                                        white-space: nowrap;
                                        flex-wrap: nowrap;
                                        justify-content: center;
                                        gap: 10px;
                    }
                    .airdrop-line-secondary {
                                        margin-top: 8px;
                    }
                    .airdrop-hero img {
                                        width: clamp(36px, 14vw, 64px);
                                        max-height: 60px;
                    }
                    .airdrop-description {
                                        font-size: 16px;
                    }

                    .airdrop-button {
                                        width: 100%;
                    }
                    .airdrop-secondary-button {
                                        width: 100%;
                    }

                    .airdrop-terms-inner {
                                        gap: 48px;
                    }

                    .terms-title {
                                        font-size: clamp(36px, 14vw, 60px);
                    }

                    .terms-subtitle {
                                        font-size: 16px;
                    }

                    .terms-grid {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 16px;
                                        border: none;
                                        border-radius: 0;
                                        width: 100%;
                    }

                    .terms-card {
                                        padding: 32px;
                                        border-radius: 32px;
                                        border: 1px solid rgba(171, 159, 242, 0.3);
                                        width: 100%;
                                        box-sizing: border-box;
                    }

                    .terms-card + .terms-card {
                                        border-left: none;
                    }

                    .terms-card:hover,
                    .terms-card:focus-within {
                                        transform: none;
                    }

                    .airdrop-stats-section {
                                        padding: 80px 20px 100px;
                    }

                    .airdrop-stats-inner {
                                        gap: 48px;
                    }

                    .stats-title {
                                        font-size: clamp(34px, 10vw, 60px);
                    }

                    .stats-subtitle {
                                        font-size: 16px;
                    }

                    .stats-list {
                                        grid-template-columns: 1fr;
                                        gap: 20px;
                    }

                    .stats-item {
                                        padding: 20px 24px;
                    }

                    .stats-item-value {
                                        font-size: 28px;
                    }

                    .stats-list {
                                        grid-template-columns: 1fr;
                                        gap: 20px;
                    }

                    .stats-item:nth-child(2),
                    .stats-item:nth-child(3) {
                                        justify-self: stretch;
                                        text-align: left;
                                        align-items: flex-start;
                    }

                    .stats-ledger {
                                        padding: 32px 32px 40px;
                                        border-radius: 32px;
                                        gap: 28px;
                    }

                    .stats-ledger-copy {
                                        font-size: 16px;
                                        max-width: none;
                    }

                    .cta-intro-section {
                                        padding: 100px 32px 120px;
                    }

                    .cta-intro-inner {
                                        padding: 60px 48px 68px;
                    }

                    .airdrop-faq-section {
                                        padding: 100px 32px 140px;
                    }

                    .airdrop-faq-inner {
                                        padding: 0 32px;
                    }

                    .faq-title {
                                        font-size: clamp(34px, 10vw, 60px);
                    }

                    .faq-subtitle {
                                        font-size: 16px;
                    }

                    .table-shell {
                                        box-shadow: none;
                    }

                    .table-shell {
                                        border-radius: 24px;
                    }

                    .table-shell-header {
                                        display: none;
                    }

                    .stats-ledger {
                                        padding: 28px 24px 32px;
                                        border-radius: 28px;
                                        gap: 24px;
                                        background: rgba(255, 255, 255, 0.98);
                                        box-shadow: none;
                    }

                    .table-row--enter {
                                        transform: translateY(-12px);
                    }

                    .table-row--enter-active {
                                        animation: tableRowEnterMobile 0.5s ease forwards;
                    }

                    @keyframes tableRowEnterMobile {
                                        0% {
                                                            opacity: 0;
                                                            transform: translateY(-12px);
                                        }
                                        100% {
                                                            opacity: 1;
                                                            transform: translateY(0);
                                        }
                    }

                    .stats-ledger-eyebrow {
                                        font-size: 14px;
                    }

                    .stats-ledger-copy {
                                        font-size: 14px;
                                        line-height: 1.5;
                    }

                    .cta-intro-section {
                                        padding: 80px 20px 110px;
                    }

                    .cta-intro-inner {
                                        padding: 48px 32px 56px;
                                        border-radius: 36px;
                    }

                    .cta-intro-actions {
                                        flex-direction: column;
                                        gap: 12px;
                                        width: 100%;
                    }

                    .cta-intro-button {
                                        width: 100%;
                    }

                    .site-footer {
                                        padding: 40px 20px 56px;
                    }

                    .footer-inner {
                                        flex-direction: column;
                                        align-items: flex-start;
                                        gap: 16px;
                    }

                    .footer-button {
                                        width: 100%;
                    }

                    .airdrop-faq-section {
                                        padding: 80px 20px 120px;
                    }

                    .airdrop-faq-inner {
                                        padding: 0 20px;
                    }

                    .faq-title {
                                        font-size: clamp(34px, 11vw, 54px);
                    }

                    .faq-subtitle {
                                        font-size: 14px;
                    }

                    .faq-item {
                                        padding: 24px;
                                        border-radius: 22px;
                    }

                    .faq-question {
                                        font-size: 18px;
                                        font-weight: 400;
                    }

                    .faq-answer {
                                        font-size: 15px;
                    }

                    .table-rows {
                                        gap: 16px;
                                        padding: 16px;
                    }

                    .table-row {
                                        grid-template-columns: 1fr;
                                        border: 1px solid rgba(171, 159, 242, 0.3);
                                        border-radius: 20px;
                                        padding: 20px 24px;
                                        gap: 12px;
                    }

                    .table-row:first-child {
                                        border-top: 1px solid rgba(171, 159, 242, 0.3);
                    }

                    .table-cell {
                                        font-size: 16px;
                                        justify-content: space-between;
                                        gap: 16px;
                    }

                    .table-cell::before {
                                        content: attr(data-label);
                                        font-size: 14px;
                                        font-weight: 500;
                                        letter-spacing: 0.12em;
                                        text-transform: uppercase;
                                        color: #7B6BAE;
                    }

                    .table-cell--value {
                                        font-size: 18px;
                                        gap: 1px;
                    }
}


