/* LUMO - Telegram Mini App Styles */
/* Based on Tilda design: dark purple theme */

:root {
    --color-bg: #110051;
    --color-bg-header: #4400bc;
    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-accent: #f4c373;
    --color-badge-bg: rgba(255, 255, 255, 0.25);
    --color-card-rounded: #110051;
    --font-main: 'Open Sans', Arial, sans-serif;
    --radius-card: 20px;
    --radius-badge: 5px;
    --transition: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg-header);
    color: var(--color-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    touch-action: pan-y;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#app {
    max-width: 100%;
    padding-bottom: 100px;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Header */
.header {
    background: var(--color-bg-header);
    padding: 15px 20px 40px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: clamp(24px, 8vw, 40px);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 5px;
    white-space: nowrap;
}

.tagline {
    font-size: 30px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 15px;
}

.tagline-divider {
    width: 100%;
    max-width: 380px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 0;
}

/* Play button */
.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
    margin-left: 4px;
}

.card:hover .play-button {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

/* Duration badge */
.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--color-badge-bg);
    border-radius: var(--radius-badge);
    font-size: 12px;
    color: var(--color-text);
}

.duration-badge svg {
    width: 12px;
    height: 12px;
    fill: var(--color-text);
}

.free-fragment-badge {
    background: rgba(74, 58, 138, 0.6);
    color: #e0d4ff;
    font-size: 11px;
    font-weight: 500;
}

/* Categories */
.categories {
    padding: 20px 0 40px;
    background: var(--color-bg);
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    position: relative;
    z-index: 10;
    margin-top: -20px;
}

.category {
    margin-bottom: 10px;
}

.category-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text);
    padding: 15px 20px 10px;
}

/* Cards Scroll Container */
.cards-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 20px 20px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.cards-scroll::after {
    content: '';
    flex: 0 0 20px;
}

.cards-scroll::-webkit-scrollbar {
    display: none;
}

/* Card */
.card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
}

.card:active {
    transform: translateY(-2px);
}

.card-dev {
    opacity: 0.7;
    cursor: default;
}

.card-dev:hover {
    transform: none;
}

/* Card Video Placeholder */
.card-video-placeholder {
    width: 280px;
    height: 210px;
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, #2a1a5e 0%, #1a0a4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--color-badge-bg);
    border-radius: var(--radius-badge);
    font-size: 12px;
    color: var(--color-text);
}

.dev-badge svg {
    width: 12px;
    height: 12px;
    fill: var(--color-text);
}

/* Subscription badge for locked tales */
.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.9);
    border-radius: var(--radius-badge);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.card-locked {
    opacity: 0.85;
}

.card-locked .card-video-placeholder {
    position: relative;
}

.card-locked .card-video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-card);
}

.card-locked .subscription-badge {
    position: relative;
    z-index: 1;
}

/* Card Content */
.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-top: 5px;
    max-width: 280px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 0, 81, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-video-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2a1a5e 0%, #1a0a4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.video-placeholder-content {
    text-align: center;
}

.video-placeholder-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.video-placeholder-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
    margin-left: 4px;
}

.video-placeholder-text {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.modal-info {
    padding: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 10px;
}

.modal-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--color-badge-bg);
    border-radius: var(--radius-badge);
    font-size: 12px;
    color: var(--color-text);
}

/* Scrollbar for desktop */
@media (min-width: 768px) {
    .cards-scroll {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }
    
    .cards-scroll::-webkit-scrollbar {
        display: block;
        height: 6px;
    }
    
    .cards-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .cards-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
}

/* Safe area for mobile devices */
@supports (padding-top: env(safe-area-inset-top)) {
    .header {
        padding-top: calc(15px + env(safe-area-inset-top));
    }
    
    .footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
}

/* Telegram WebApp specific */
body.tg-webapp {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    overscroll-behavior-y: none !important;
}

body.tg-webapp .header {
    padding-top: 10px;
}

body.tg-webapp #app {
    height: 100% !important;
    overflow-y: auto !important;
    overscroll-behavior: none !important;
    overscroll-behavior-y: none !important;
    -webkit-overflow-scrolling: touch;
}

/* Floating Bottom Navigation */
.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, #1a1a4e 0%, #0f0f3d 100%);
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 64px;
}

.nav-item-active {
    color: var(--color-text);
}

.nav-item-active .nav-icon {
    background: linear-gradient(135deg, #4a3a8a 0%, #2d2a6e 100%);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 15px rgba(74, 58, 138, 0.5);
}

.nav-item-active .nav-icon svg {
    width: 26px;
    height: 26px;
}

.nav-item:not(.nav-item-active):hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-item:not(.nav-item-active):hover .nav-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 9px;
    font-weight: 400;
    text-align: center;
    line-height: 1.25;
    max-width: 65px;
    word-wrap: break-word;
    hyphens: auto;
}

/* Mobile adjustments for floating nav */
@media (max-width: 420px) {
    .floating-nav {
        height: 85px;
        padding: 0 5px;
        border-radius: 20px 20px 0 0;
    }
    
    .nav-item {
        min-width: 56px;
        padding: 6px 8px;
    }
    
    .nav-item-active .nav-icon {
        width: 48px;
        height: 48px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-item-active .nav-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-label {
        font-size: 9px;
        max-width: 60px;
    }
}

/* Safe area for floating nav */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .floating-nav {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(90px + env(safe-area-inset-bottom));
    }
    
    #app {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
}

/* Audio Player (Fullscreen) */
.audio-player {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    background: var(--color-bg);
}

.audio-player.active {
    display: flex;
}

.player-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Фон заполняет весь экран, возможна лёгкая обрезка по краям */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.35);
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.player-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.player-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.player-close svg {
    width: 24px;
    height: 24px;
}

.player-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 20px 40px;
}

.player-info {
    text-align: center;
    margin-bottom: auto;
    padding-top: 40px;
}

.player-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.player-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-top: 10px;
}

.player-controls {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
}

/* Невидимая зона касания поверх полоски */
.progress-bar::before {
    content: '';
    position: absolute;
    top: -14px;
    bottom: -14px;
    left: 0;
    right: 0;
}

.progress {
    height: 100%;
    background: var(--color-accent);
    border-radius: 3px;
    transition: width 0.1s linear;
    position: relative;
}

.progress-bar.seeking .progress {
    transition: none;
}

.progress-thumb {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    opacity: 1;
    pointer-events: none;
}

.progress-bar.seeking .progress-thumb {
    transform: translateY(-50%) scale(1.3);
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

.play-btn svg {
    width: 32px;
    height: 32px;
}

.skip-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.skip-btn svg {
    width: 20px;
    height: 20px;
}

.skip-text {
    display: none;
}

/* Subscription Modal */
.subscription-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.subscription-modal.active {
    display: flex;
}

.subscription-modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalIn 0.3s ease-out;
}

.subscription-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.subscription-modal-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.subscription-modal-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.subscription-modal-btn:hover {
    background: #f5b85a;
    transform: translateY(-2px);
}

.subscription-modal-btn:active {
    transform: translateY(0);
}

.subscription-modal-close {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.subscription-modal-close:hover {
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Subscription Page */
.hidden {
    display: none !important;
}

.subscription-page {
    padding: 24px 20px 120px;
    background: var(--color-bg);
    min-height: calc(100vh - 90px);
}

.subscription-page-inner {
    max-width: 420px;
    margin: 0 auto;
}

.subscription-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.subscription-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.subscription-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* === Subscription Plans === */
.plans-container {
    margin-bottom: 24px;
}

.plans-loading {
    text-align: center;
    color: var(--color-text-secondary);
    padding: 20px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.plan-card.selected {
    border-color: var(--color-accent);
    background: rgba(230, 169, 75, 0.1);
}

.plan-card.popular {
    border-color: rgba(230, 169, 75, 0.3);
}

.plan-popular-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.plan-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.plan-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
}

.plan-price-period {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.plan-description {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.plan-radio {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.plan-card.selected .plan-radio {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.plan-card.selected .plan-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-bg);
    border-radius: 50%;
}

.plan-content {
    padding-left: 36px;
}

.subscription-consent {
    margin: 20px 0 24px;
}

.subscription-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--color-text-secondary);
}

.subscription-consent-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.subscription-consent-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.subscription-pay-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.subscription-pay-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.subscription-pay-btn:not(:disabled):hover {
    background: #f5b85a;
    transform: translateY(-2px);
}

.subscription-pay-btn:not(:disabled):active {
    transform: translateY(0);
}

.subscription-cancel-btn {
    width: 100%;
    padding: 14px 24px;
    margin-top: 15px;
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.subscription-cancel-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

.subscription-cancel-btn:active {
    background: rgba(239, 68, 68, 0.2);
}

.subscription-cancel-info {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    text-align: center;
}

.subscription-cancel-info p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.subscription-resume-btn {
    width: 100%;
    padding: 16px 24px;
    margin-top: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
    letter-spacing: 0.3px;
}

.subscription-resume-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.subscription-resume-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.subscription-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.subscription-legal-links a {
    color: #facc15;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.2s, opacity 0.2s;
}

.subscription-legal-links a:hover {
    color: #fde047;
}

.subscription-legal-links a[href="#"],
.subscription-legal-links a:not([href]) {
    pointer-events: none;
    opacity: 0.5;
}
