/* === FORCED DARK THEME === */
:root {
    --tg-theme-bg-color: #0a1628 !important;
    --tg-theme-secondary-bg-color: rgba(255,255,255,0.20) !important;
    --tg-theme-text-color: #ffffff !important;
    --tg-theme-hint-color: #8e9db5 !important;
    --tg-theme-button-color: #3a8fd9 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background:
        radial-gradient(ellipse 120% 80% at 50% 20%, rgba(30,80,140,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 100% 60% at 30% 70%, rgba(20,60,120,0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 80%, rgba(15,50,100,0.2) 0%, transparent 50%),
        #0a1628;
    background-attachment: fixed;
    color: var(--tg-theme-text-color, #ffffff);
    padding: 16px;
    padding-bottom: 80px;
    min-height: 100vh;
    transition: background-color 0.2s ease;
    overflow-x: hidden;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
}

/* ===== CARDS ===== */

.card {
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ===== BALANCE CARD ===== */

.balance-card {
    text-align: center;
    padding: 24px 16px;
    margin-bottom: 16px;
}

.balance-label {
    font-size: 14px;
    color: var(--tg-theme-hint-color, #8e8e93);
    margin-bottom: 4px;
}

.balance-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.balance-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.days-remaining {
    font-size: 14px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

/* ===== BALANCE PROGRESS BAR ===== */

.balance-progress-wrap {
    margin-top: 14px;
    height: 6px;
    background: rgba(128, 128, 128, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.balance-progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease, background-color 0.3s ease;
    width: 0%;
    background: #34c759;
}

/* ===== STATUS BADGE ===== */

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-on {
    background: #34c759;
    color: #ffffff;
}

.status-off {
    background: #ff3b30;
    color: #ffffff;
}

/* ===== QUICK ACTIONS ===== */

.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border: none;
    border-radius: 16px;
    font-size: 13px;
    color: var(--tg-theme-text-color, #ffffff);
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.action-btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.action-icon {
    font-size: 24px;
}

/* ===== INFO CARD ===== */

.info-card {
    padding: 0;
    overflow: hidden;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
}

.info-row + .info-row {
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.info-label {
    font-size: 14px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.info-value {
    font-size: 14px;
    font-weight: 600;
}

/* ===== SECTION HEADER ===== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 0;
}

/* ===== DEVICE LIST ===== */

.device-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.device-card {
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.device-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.device-name {
    font-size: 15px;
    font-weight: 600;
}

.device-key-preview {
    font-size: 12px;
    color: var(--tg-theme-hint-color, #8e8e93);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.device-traffic {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.device-traffic-item {
    font-size: 11px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.device-traffic-item span {
    font-weight: 600;
    color: var(--tg-theme-text-color, #ffffff);
}

.device-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
    background: rgba(255, 255, 255, 0.18);
    color: var(--tg-theme-text-color, #ffffff);
}

.btn-icon:active {
    transform: scale(0.9);
    opacity: 0.7;
}


.btn-icon.happ-copy-btn {
    background: #5856d6;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;
}

.btn-icon.danger {
    background: rgba(255, 59, 48, 0.45);
    color: #ff3b30;
}

/* ===== EMPTY STATE ===== */

.empty-state {
    text-align: center;
    padding: 48px 16px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state p {
    margin-bottom: 16px;
    font-size: 15px;
}

/* ===== BUTTONS ===== */

.btn-primary {
    background: var(--tg-theme-button-color, #3390ec);
    color: var(--tg-theme-button-text-color, #ffffff);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-primary:active {
    opacity: 0.8;
    transform: scale(0.97);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: var(--tg-theme-text-color, #ffffff);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-secondary:active {
    opacity: 0.7;
    transform: scale(0.97);
}

.btn-danger {
    background: rgba(255, 59, 48, 0.45);
    color: #ff3b30;
    border: none;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.btn-danger:active {
    opacity: 0.7;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-full {
    width: 100%;
    margin-top: 12px;
}

.btn-copy {
    background: var(--tg-theme-button-color, #3390ec);
    color: var(--tg-theme-button-text-color, #ffffff);
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn-copy:active {
    opacity: 0.7;
    transform: scale(0.95);
}

/* ===== AMOUNT GRID ===== */

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.amount-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    color: var(--tg-theme-text-color, #ffffff);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.amount-btn small {
    font-size: 12px;
    font-weight: 400;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.amount-btn:active {
    transform: scale(0.96);
}

.amount-btn.selected {
    border-color: var(--tg-theme-button-color, #3390ec);
    background: rgba(51, 144, 236, 0.08);
}

/* ===== PAYMENT CARD ===== */

.payment-card {
    text-align: center;
}

.payment-title {
    font-size: 14px;
    color: var(--tg-theme-hint-color, #8e8e93);
    margin-bottom: 8px;
}

.payment-number {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.payment-amount-label {
    font-size: 13px;
    color: var(--tg-theme-hint-color, #8e8e93);
    margin-top: 14px;
    margin-bottom: 4px;
}

.payment-exact {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-note {
    font-size: 13px;
    color: var(--tg-theme-hint-color, #8e8e93);
    margin-top: 14px;
    line-height: 1.4;
}

/* ===== PROMO & REFERRAL ===== */

.input-group {
    display: flex;
    gap: 8px;
}

.input-group input {
    flex: 1;
}

.promo-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(52, 199, 89, 0.1);
    border-radius: 12px;
    margin-bottom: 10px;
}

.promo-code-text {
    font-size: 15px;
    font-weight: 600;
    color: #34c759;
}

.hint-text {
    font-size: 13px;
    color: var(--tg-theme-hint-color, #8e8e93);
    margin-bottom: 12px;
}

.referral-link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 128, 128, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

.referral-link {
    flex: 1;
    font-size: 13px;
    color: var(--tg-theme-link-color, #3390ec);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.referral-stats {
    display: flex;
    gap: 12px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(128, 128, 128, 0.15);
    border-radius: 12px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

/* ===== PAYMENT HISTORY ===== */

.history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.history-item {
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.history-item-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-item-type {
    font-size: 14px;
    font-weight: 600;
}

.history-item-date {
    font-size: 12px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.history-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.history-item-amount {
    font-size: 15px;
    font-weight: 700;
}

.history-item-amount.income {
    color: #34c759;
}

.history-item-amount.expense {
    color: #ff3b30;
}

.history-item-balance {
    font-size: 11px;
    color: var(--tg-theme-hint-color, #8e8e93);
}

/* ===== FAQ ===== */

.faq-list {
    margin-bottom: 20px;
}

.faq-item {
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 14px 40px 14px 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.faq-header span {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.faq-chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--tg-theme-hint-color, #8e8e93);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
    transform: translateY(-50%) rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-body-inner {
    padding: 0 16px 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--tg-theme-hint-color, #8e8e93);
}

.faq-item.open .faq-body {
    max-height: 200px;
}

/* ===== SUPPORT ===== */

.support-card {
    margin-top: 8px;
}

textarea {
    width: 100%;
    background: rgba(128, 128, 128, 0.15);
    border: 1px solid rgba(128, 128, 128, 0.15);
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    color: var(--tg-theme-text-color, #ffffff);
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--tg-theme-button-color, #3390ec);
}

input[type="text"] {
    width: 100%;
    background: rgba(128, 128, 128, 0.15);
    border: 1px solid rgba(128, 128, 128, 0.15);
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    color: var(--tg-theme-text-color, #ffffff);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--tg-theme-button-color, #3390ec);
}

input::placeholder,
textarea::placeholder {
    color: var(--tg-theme-hint-color, #8e8e93);
}

/* ===== MODAL ===== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}

.modal-card {
    background: #0f1e33;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.25s ease;
}

.modal-card h3 {
    margin-bottom: 16px;
    text-align: center;
}

.modal-card input {
    margin-bottom: 16px;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-actions button {
    flex: 1;
}

/* ===== TAB BAR ===== */

.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(128, 128, 128, 0.15);
    display: flex;
    align-items: stretch;
    z-index: 900;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--tg-theme-hint-color, #8e8e93);
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}

.tab.active {
    color: var(--tg-theme-button-color, #3390ec);
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.tab-icon svg {
    width: 24px;
    height: 24px;
}

.tab-label {
    font-size: 10px;
    font-weight: 600;
}

/* ===== PULL TO REFRESH ===== */

.pull-refresh {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50px);
    z-index: 800;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.pull-refresh.visible {
    transform: translateX(-50%) translateY(12px);
}

.pull-refresh-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(128, 128, 128, 0.2);
    border-top-color: var(--tg-theme-button-color, #3390ec);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ===== LOADING (kept for modal actions) ===== */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ===== TOAST ===== */

.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    pointer-events: none;
    animation: toastIn 0.2s ease;
}

/* ===== SKELETON LOADING ===== */

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.skeleton-wrap {
    animation: fadeIn 0.15s ease;
}

.skeleton-line {
    background: rgba(128, 128, 128, 0.15);
    border-radius: 6px;
    height: 14px;
    animation: skeletonPulse 1.2s ease-in-out infinite;
}

.skeleton-center {
    margin-left: auto;
    margin-right: auto;
}

.skeleton-w20 { width: 20%; }
.skeleton-w30 { width: 30%; }
.skeleton-w40 { width: 40%; }
.skeleton-w50 { width: 50%; }
.skeleton-w60 { width: 60%; }

.skeleton-h22 { height: 22px; }
.skeleton-h36 { height: 36px; margin-top: 8px; margin-bottom: 8px; }

.skeleton-bar {
    height: 6px;
    width: 100%;
    background: rgba(128, 128, 128, 0.15);
    border-radius: 3px;
    margin-top: 14px;
    animation: skeletonPulse 1.2s ease-in-out infinite;
}

.skeleton-card {
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    padding: 24px 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.skeleton-balance {
    text-align: center;
    margin-bottom: 16px;
}

.skeleton-balance .skeleton-line {
    margin-bottom: 6px;
}

.skeleton-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.skeleton-action-btn {
    flex: 1;
    height: 72px;
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    animation: skeletonPulse 1.2s ease-in-out infinite;
}

.skeleton-info {
    padding: 0;
    overflow: hidden;
}

.skeleton-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
}

.skeleton-row + .skeleton-row {
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.skeleton-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.skeleton-btn-sm {
    width: 90px;
    height: 32px;
    border-radius: 10px;
}

.skeleton-device-card {
    height: 72px;
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    animation: skeletonPulse 1.2s ease-in-out infinite;
}

.skeleton-amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.skeleton-amount-btn {
    height: 72px;
    background: var(--tg-theme-secondary-bg-color, #232e3c);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    animation: skeletonPulse 1.2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */


/* === GEOMETRIC PATTERN OVERLAY === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.04;
    background-image:
        linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
        linear-gradient(60deg, rgba(255,255,255,0.6) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.6) 75%),
        linear-gradient(60deg, rgba(255,255,255,0.6) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.6) 75%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===== SECTION TRANSITION ANIMATIONS ===== */

.section {
    will-change: opacity, transform;
}

.section.section-enter {
    animation: sectionSlideIn 200ms ease forwards;
}

.section.section-exit {
    animation: sectionSlideOut 200ms ease forwards;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sectionSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}
