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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            width: 100%;
        }

        .app-container {
            width: 100%;
            max-width: 400px;
            background: white;
            min-height: 100vh;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        /* Main Content Scrollable Area */
        .main-content {
            padding-bottom: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            width: 100%;
            box-sizing: border-box;
            min-height: 0;
        }

        .app-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .content-section {
            padding: 0 25px 30px;
            width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: white;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f0f0f0;
        }

        .header-nav {
            display: none;
        }

        .menu-btn-desktop {
            display: none;
        }

        .menu-btn-mobile {
            display: flex;
        }

        .menu-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }

        .back-btn {
            text-decoration: none;
        }

        .back-btn i {
            font-size: 20px;
            color: #333;
        }

        .menu-dots {
            display: flex;
            gap: 3px;
        }

        .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

        .dot:nth-child(1) {
            background: #A06EA2;
        }

        .dot:nth-child(2) {
            background: #8CB374;
        }

        .location {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            padding: 0 12px;
        }

        .header-logo-link {
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .header-logo-link:hover {
            opacity: 0.8;
        }

        .header-logo {
            display: block;
            height: auto;
            width: clamp(110px, 38vw, 150px);
        }

        @media (min-width: 768px) {
            .header-logo {
                width: clamp(140px, 20vw, 180px);
            }
        }

        @media (min-width: 1024px) {
            .header-logo {
                width: clamp(160px, 22vw, 200px);
            }
        }

        @media (min-width: 1024px) {
            .location {
                flex: none;
            }
        }

        .profile-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .profile-btn img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-placeholder {
            width: 40px;
            height: 40px;
        }

        /* Hero Section Background - full width */
        .hero-wrapper {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            padding-bottom: 0;
            overflow: visible;
        }

        .hero-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(165deg, rgba(160, 110, 162, 0.06) 0%, rgba(255, 255, 255, 0.97) 40%, rgba(255, 255, 255, 1) 100%);
            z-index: 0;
        }

        .hero-wrapper::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(160, 110, 162, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .hero-wrapper > * {
            position: relative;
            z-index: 1;
        }

        .hero {
            padding: 28px 25px 24px;
            text-align: center;
            animation: heroFadeIn 0.6s ease-out;
        }

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

        .logo-container {
            display: flex;
            justify-content: center;
            margin-bottom: 16px;
        }

        .logo {
            height: 88px;
            width: auto;
        }

        .hero h1 {
            font-size: 30px;
            font-weight: 700;
            color: #2f2340;
            line-height: 1.25;
            margin: 0 0 24px;
        }

        .hero-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: #A06EA2;
            background: rgba(160, 110, 162, 0.12);
            padding: 12px 18px;
            border-radius: 999px;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .hero h1 span {
            color: #A06EA2;
        }

        .hero-subtitle {
            font-size: 16px;
            color: #666;
            margin-top: 12px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .hero-cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, #A06EA2, #7a5a8a);
            color: white;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 999px;
            box-shadow: 0 6px 20px rgba(160, 110, 162, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            margin-top: 8px;
            margin-bottom: 12px;
        }

        .hero-cta-button:hover {
            box-shadow: 0 8px 24px rgba(160, 110, 162, 0.4);
        }

        .hero-cta-button:active {
            transform: scale(0.98);
        }

        .hero-social-proof {
            font-size: 14px;
            color: #888;
            margin-top: 0;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .hero-welcome {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-top: 16px;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .hero-saved-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: #fff;
            color: #2f2340;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            border: 1px solid rgba(160, 110, 162, 0.25);
            box-shadow: 0 2px 8px rgba(47, 35, 64, 0.06);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            margin-top: 12px;
        }

        .hero-saved-link i {
            font-size: 18px;
            color: #A06EA2;
        }

        .hero-saved-link:hover {
            border-color: rgba(160, 110, 162, 0.4);
            box-shadow: 0 4px 12px rgba(47, 35, 64, 0.1);
        }

        .hero-saved-link:active {
            transform: scale(0.98);
            border-color: rgba(160, 110, 162, 0.4);
            box-shadow: 0 1px 4px rgba(47, 35, 64, 0.08);
        }

        /* Hero Slider */
        .hero-slider-section {
            width: 100%;
            padding: 0 25px 24px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
        }

        .hero-slider-track {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .hero-slider-track::-webkit-scrollbar {
            display: none;
        }

        .hero-slider-slide {
            flex: 0 0 100%;
            width: 100%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            position: relative;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
            border-radius: 20px;
        }

        .hero-slider-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            border-radius: 20px;
        }

        .hero-slider-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #e8e4eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #a06ea2;
            border-radius: 20px;
        }

        .hero-slider-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            pointer-events: none;
        }

        .hero-slider-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 25px 40px;
            color: white;
            z-index: 2;
            pointer-events: none;
        }

        .hero-slider-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.95);
            margin-bottom: 8px;
        }

        .hero-slider-badge i {
            font-size: 10px;
            color: #a06ea2;
        }

        .hero-slider-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0 0 8px;
            color: white;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hero-slider-duration {
            font-size: 13px;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
        }

        .hero-slider-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(255,255,255,0.95);
            color: #a06ea2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            pointer-events: auto;
            transition: transform 0.2s ease, background 0.2s ease;
            z-index: 5;
        }

        .hero-slider-slide:active .hero-slider-play {
            transform: translate(-50%, -50%) scale(0.95);
        }

        .hero-slider-prev,
        .hero-slider-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0,0,0,0.65);
            border: none;
            color: white;
            font-size: 11px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-slider-prev {
            left: 8px;
        }

        .hero-slider-next {
            right: 8px;
        }

        .hero-slider-prev:hover,
        .hero-slider-next:hover {
            background: rgba(0,0,0,0.8);
        }

        .hero-slider-prev:active,
        .hero-slider-next:active {
            transform: translateY(-50%) scale(0.95);
        }

        .hero-slider-dots {
            position: absolute;
            bottom: 16px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            z-index: 10;
            pointer-events: none;
        }

        .hero-slider-dot {
            pointer-events: auto;
            width: 10px;
            height: 10px;
            min-width: 10px;
            min-height: 10px;
            flex-shrink: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-slider-dot:hover {
            background: rgba(255,255,255,0.8);
        }

        .hero-slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Search Bar */
        .search-container {
            padding: 0 25px 20px;
        }

        .search-bar {
            display: flex;
            align-items: center;
            background: #f5f5f5;
            border-radius: 25px;
            padding: 12px 20px;
            gap: 10px;
        }

        .search-bar i {
            color: #999;
            font-size: 18px;
        }

        .search-bar input {
            flex: 1;
            border: none;
            background: none;
            outline: none;
            font-size: 16px;
            color: #333;
        }

        .search-bar input::placeholder {
            color: #999;
        }

        /* Formats Horizontal Section */
        .formats-horizontal-section {
            padding: 30px 0 30px 0;
            width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        .formats-horizontal-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 25px;
            width: 100%;
            box-sizing: border-box;
        }

        .formats-horizontal-scroll::-webkit-scrollbar {
            display: none;
        }

        .format-card-horizontal {
            flex-shrink: 0;
            width: 140px;
            background: #333;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            text-decoration: none;
            color: inherit;
            border: 3px solid #a06ea2;
            border-bottom-width: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: block;
        }

        .format-card-horizontal:active {
            transform: scale(0.98);
        }

        .format-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f5f5f5;
            position: relative;
        }

        .format-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .format-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            z-index: 1;
        }

        .format-card-info {
            position: absolute;
            bottom: 15px;
            left: 12px;
            right: 12px;
            color: white;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .format-card-title {
            font-size: 15px;
            font-weight: 600;
            color: white;
            line-height: 1.3;
            margin: 0;
        }

        .format-card-count {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .format-card-upcoming {
            cursor: pointer;
        }

        .format-card-upcoming-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(160, 110, 162, 0.2), rgba(140, 179, 116, 0.2));
            color: #A06EA2;
            font-size: 48px;
        }

        .format-card-saved {
            cursor: pointer;
        }

        .format-card-saved-icon {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(160, 110, 162, 0.15), rgba(140, 179, 116, 0.15));
            color: #A06EA2;
            font-size: 48px;
        }

        .format-card-horizontal.active {
            box-shadow: 0 4px 16px rgba(160, 110, 162, 0.4);
            border: 3px solid #a06ea2;
            border-bottom-width: 6px;
        }

        /* Stories Section */
        .stories {
            padding: 0 0 25px 0;
        }

        .stories-list {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 25px;
        }

        .stories-list::-webkit-scrollbar {
            display: none;
        }

        .story {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .story-avatar {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            position: relative;
            padding: 3px;
            background: #8CB374;
        }

        .story-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
        }

        .story-avatar-icon {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid white;
        }

        .story-avatar-icon i {
            font-size: 36px;
            color: white;
        }

        .story-name {
            font-size: 14px;
            color: #333;
            text-align: center;
            line-height: 1.3;
        }

        /* Near You Section */
        .near-you {
            padding: 0 25px 25px;
        }

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

        .section-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }

        .view-all {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #A06EA2;
            text-decoration: none;
            font-size: 14px;
        }

        .view-all i {
            font-size: 12px;
        }

        /* Trending Cards */
        .trending-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .trending-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .trending-card.hidden {
            display: none !important;
        }

        .trending-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .trending-card-media {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #333;
            border-radius: 12px;
            margin: 8px;
        }

        .trending-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }

        .trending-overlay {
            display: none;
        }

        .future-availability {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-align: center;
            padding: 28px 24px;
            border-radius: inherit;
            background: rgba(66, 40, 62, 0.82);
            color: #fff;
            z-index: 9;
        }

        .future-availability-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .future-availability-text {
            font-size: 14px;
            line-height: 1.6;
            font-weight: 500;
            text-align: center;
        }

        .future-availability-text span {
            display: block;
        }

        .trending-info,
        .trending-card-info {
            padding: 14px 12px 16px;
            background: #fff;
            color: #2f2340;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .trending-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, #a06ea2, #8b5a8f);
            color: #fff;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            width: fit-content;
        }

        .trending-title {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .trending-meta {
            font-size: 12px;
            color: #6b5a7d;
        }

        .trending-meta i {
            margin-right: 5px;
        }

        .trending-card-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .trending-card-play-btn {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .trending-card-play-btn i {
            color: #a06ea2;
            font-size: 22px;
            margin-left: 4px;
        }

        .trending-card-top-overlay {
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            pointer-events: none;
        }

        .trending-card-bottom-overlay {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            pointer-events: none;
        }

        .trending-badge--overlay {
            background: linear-gradient(135deg, #a06ea2, #8b5a8f);
            color: #fff;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
        }

        .trending-duration {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
        }

        .trending-stats {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
        }

        .trending-stats-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .trending-stats-item i {
            margin: 0;
        }

        .trending-stats-item--small i {
            font-size: 0.7em;
        }

        .trending-stats-item--small {
            margin-right: -4px;
        }

        .trending-stats-item .fa-headphones {
            color: #f5c842;
        }

        .locked-overlay {
            position: absolute;
            inset: 0;
            background: rgba(38, 20, 44, 0.52);
            backdrop-filter: blur(0.5px);
            -webkit-backdrop-filter: blur(0.5px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 30px 26px;
            z-index: 10;
        }

        .locked-overlay-icon {
            width: 94px;
            height: 94px;
            border-radius: 50%;
            background: linear-gradient(135deg, #a06ea2, #7b59a7);
            border: 6px solid rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: #fff;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
        }

        .locked-overlay-icon i {
            color: #fff;
        }

        .locked-overlay-text {
            display: none;
        }

        .locked-overlay--info {
            flex-direction: column;
            gap: 18px;
            padding: 32px 26px;
            background: rgba(38, 20, 44, 0.62);
            backdrop-filter: blur(0.5px);
            -webkit-backdrop-filter: blur(0.5px);
        }

        .locked-overlay--info .locked-overlay-icon {
            width: 78px;
            height: 78px;
            font-size: 30px;
            border: 5px solid rgba(255, 255, 255, 0.85);
            background: linear-gradient(135deg, #a06ea2, #8cb374);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
        }

        .locked-overlay--info .locked-overlay-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 16px;
            line-height: 1.5;
            text-align: center;
            color: #fff;
        }

        .locked-overlay--info .locked-overlay-text span {
            display: block;
        }

        .locked-overlay--info .future-line-heading {
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .locked-overlay--info .future-line-date {
            font-weight: 500;
            opacity: 0.92;
        }

        .locked-overlay--guest {
            background: rgba(38, 20, 44, 0.58);
        }

.locked-overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    margin: 10px 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #a06ea2, #8cb374);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    font-size: 15px;
}

.locked-overlay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(38, 20, 44, 0.3);
}

.locked-overlay-note {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
    display: block;
}

.locked-overlay-note a {
    color: #fff;
    text-decoration: underline;
}

.guest-global-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(38, 20, 44, 0.85) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    padding: 20px;
    overflow-y: auto;
    margin: 0 !important;
}

.guest-global-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.guest-global-box .hero {
    padding: 30px 25px;
    text-align: center;
    background: #ffffff;
}

.guest-global-box .hero .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.guest-global-box .hero .logo {
    height: 100px;
    width: auto;
}

.guest-global-box .hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
}

.guest-global-box .hero p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.guest-global-box .auth-form {
    padding: 0 25px 30px;
}

.guest-global-box .auth-form.login-form {
    max-width: 100%;
}

.paywall-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(38, 20, 44, 0.95) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    padding: 20px;
    overflow-y: auto;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.paywall-overlay.show {
    opacity: 1;
    visibility: visible;
}

.paywall-overlay-content {
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.paywall-overlay.show .paywall-overlay-content {
    transform: translateY(0);
}

.paywall-overlay.show .paywall-overlay-content {
    transform: translateY(0);
}

.paywall-overlay .hero {
    padding: 30px 25px;
    text-align: center;
    background: #ffffff;
}

.paywall-overlay .hero .logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.paywall-overlay .hero .logo {
    height: 100px;
    width: auto;
}

.paywall-overlay .hero h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
}

.paywall-overlay .paywall-formats-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.paywall-overlay .paywall-formats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.paywall-overlay .paywall-format-icon-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.paywall-overlay .paywall-format-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8e0eb;
}

.paywall-overlay .paywall-format-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.paywall-overlay .paywall-format-checkmark {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #8CB374;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.paywall-overlay .paywall-format-checkmark i {
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
}

.paywall-overlay .paywall-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.paywall-overlay .paywall-form {
    padding: 0 25px 30px;
}

.paywall-overlay .paywall-content {
    margin-bottom: 30px;
}

.paywall-overlay .paywall-benefits {
    margin-bottom: 30px;
}

.paywall-overlay .paywall-benefits h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2f2340;
    margin-bottom: 24px;
    text-align: center;
}

.paywall-overlay .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paywall-overlay .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.paywall-overlay .benefits-list li:hover {
    background: #f0f0f0;
}

.paywall-overlay .benefits-list li i {
    color: #8CB374;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.paywall-overlay .benefits-list li span {
    flex: 1;
    font-size: 17px;
    color: #2f2340;
    line-height: 1.6;
    font-weight: 500;
}

.paywall-overlay .paywall-pricing {
    margin-bottom: 30px;
    text-align: center;
}

.paywall-overlay .pricing-card {
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.08), rgba(140, 179, 116, 0.08));
    border: 2px solid rgba(160, 110, 162, 0.2);
    border-radius: 24px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(160, 110, 162, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paywall-overlay .pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(160, 110, 162, 0.15);
}

.paywall-overlay .pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.paywall-overlay .pricing-amount .price {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.paywall-overlay .pricing-amount .currency {
    font-size: 28px;
    font-weight: 600;
    color: #A06EA2;
}

.paywall-overlay .pricing-period {
    font-size: 17px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.paywall-overlay .paywall-features {
    text-align: center;
    margin-bottom: 20px;
}

.paywall-overlay .feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.paywall-overlay #orderBtnOverlay {
    margin-bottom: 0;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 28px;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    text-decoration: none;
}

.paywall-overlay #orderBtnOverlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(160, 110, 162, 0.25);
    text-decoration: none;
    color: white;
}

.podcast-invite {
    padding: 0 25px 30px;
}

.podcast-invite-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.15), rgba(98, 214, 189, 0.18));
    border: 1px solid rgba(160, 110, 162, 0.15);
    box-shadow: 0 18px 42px rgba(78, 47, 90, 0.12);
}

.podcast-invite-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-invite-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 26px rgba(62, 34, 77, 0.16);
}

.podcast-invite-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    align-items: center;
}

.podcast-invite-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: #7c4a8e;
    background: rgba(255, 255, 255, 0.65);
    padding: 6px 12px;
    border-radius: 999px;
}

.podcast-invite-title {
    font-size: clamp(24px, 3vw, 30px);
    color: #2f2340;
    margin: 0;
}

.podcast-invite-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(47, 35, 64, 0.78);
    margin: 0;
}

.podcast-invite-btn {
    align-self: center;
    padding: 18px 34px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg, #8cb374, #62d6bd);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(22, 69, 51, 0.24);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-size: 16px;
}

.podcast-invite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(22, 69, 51, 0.28);
}

.podcast-modal {
    background: linear-gradient(160deg, #ffffff 0%, #f0ecf5 55%, #e3f5f1 100%);
    padding: 40px 36px 34px;
    max-width: 560px;
    width: 94%;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(34, 21, 51, 0.25);
    overflow: hidden;
    position: relative;
}

.podcast-modal::before,
.podcast-modal::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.3;
}

.podcast-modal::before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, rgba(160, 110, 162, 0.28), transparent 65%);
    top: -80px;
    right: -60px;
}

.podcast-modal::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, rgba(98, 214, 189, 0.35), transparent 65%);
    bottom: -60px;
    left: -50px;
}

.podcast-modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.podcast-modal-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 32px);
    color: #2f2340;
    line-height: 1.2;
}

.podcast-modal-info {
    margin: 0;
    font-size: 16px;
    color: rgba(47, 35, 64, 0.75);
    line-height: 1.55;
}

.podcast-modal-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(47, 35, 64, 0.6);
    font-weight: 600;
}

.podcast-modal-textarea {
    width: 100%;
    min-height: 150px;
    border-radius: 18px;
    border: 1px solid rgba(160, 110, 162, 0.35);
    padding: 18px 20px;
    font-size: 15px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.95);
    color: #2f2340;
}

.podcast-modal-textarea:focus {
    outline: none;
    border-color: rgba(98, 214, 189, 0.8);
    box-shadow: 0 0 0 4px rgba(98, 214, 189, 0.25);
}

.podcast-modal-feedback {
    font-size: 13px;
    border-radius: 16px;
    padding: 12px 16px;
    background: rgba(98, 214, 189, 0.12);
    color: rgba(47, 35, 64, 0.75);
    border-left: 4px solid rgba(98, 214, 189, 0.6);
}

.podcast-modal-feedback.is-success {
    background: rgba(140, 179, 116, 0.18);
    border-left-color: rgba(140, 179, 116, 0.8);
    color: #2f4a34;
}

.podcast-modal-feedback.is-error {
    background: rgba(214, 98, 134, 0.16);
    border-left-color: rgba(214, 98, 134, 0.8);
    color: #612032;
}

.podcast-modal-feedback.is-info {
    background: rgba(98, 168, 214, 0.14);
    border-left-color: rgba(98, 168, 214, 0.7);
    color: #244760;
}

.podcast-modal-submit {
    align-self: flex-start;
    padding: 16px 30px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg, #8cb374, #62d6bd);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(22, 69, 51, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    font-size: 16px;
}

.podcast-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(22, 69, 51, 0.32);
}

.podcast-modal-submit.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 767px) {
    .podcast-invite {
        padding: 0 20px 30px;
    }

    .podcast-invite-inner {
        padding: 28px 22px;
    }

    .podcast-modal {
        padding: 26px 18px 24px;
        border-radius: 26px;
    }

    .podcast-modal-title,
    .podcast-modal-info {
        text-align: center;
    }

    .podcast-modal-submit {
        align-self: center;
    }
}

        .post-empty-state {
            padding: 60px 25px;
        }

        /* Premium Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 30px;
            padding: 40px;
            max-width: 480px;
            width: 90%;
            max-height: 80vh;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .modal-overlay.active .modal {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
        }

        .modal-close i {
            color: #333;
            font-size: 18px;
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            background: #A06EA2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .modal-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #2f2340;
            margin: 0;
            text-align: center;
        }

        .modal-text {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin: 0;
        }

        .modal-text--info {
            background: rgba(160, 110, 162, 0.08);
            padding: 12px 16px;
            border-radius: 12px;
            color: #2f2340;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .submit-btn--danger {
            background: linear-gradient(135deg, #CC3B4A, #B8323F);
            color: white;
        }

        .submit-btn--danger:hover {
            background: linear-gradient(135deg, #B8323F, #A02A35);
            color: white;
        }

        .submit-btn--secondary {
            background: #f5f5f5;
            color: #666;
        }

        .submit-btn--secondary:hover {
            background: #e8e8e8;
            color: #333;
        }

        .profile-subscription-box {
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .profile-subscription-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(160, 110, 162, 0.15);
        }

        .profile-subscription-box:active {
            transform: translateY(0);
        }

        .modal-icon i {
            font-size: 40px;
            color: white;
        }

        .contact-email-box {
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        .contact-email-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 32px;
            background: linear-gradient(135deg, rgba(160, 110, 162, 0.1), rgba(160, 110, 162, 0.05));
            border: 2px solid rgba(160, 110, 162, 0.2);
            border-radius: 20px;
            font-size: 20px;
            font-weight: 600;
            color: #A06EA2;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(160, 110, 162, 0.1);
        }

        .contact-email-link:hover {
            background: linear-gradient(135deg, rgba(160, 110, 162, 0.15), rgba(160, 110, 162, 0.08));
            border-color: rgba(160, 110, 162, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(160, 110, 162, 0.2);
            color: #8B5A8F;
        }

        .contact-email-link i {
            font-size: 22px;
        }

        .contact-email-link span {
            font-size: 20px;
        }

        .modal-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #2f2340;
            margin: 0;
            text-align: center;
        }

        .modal-text {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin: 0;
            text-align: center;
        }

        .modal-text--info {
            background: rgba(160, 110, 162, 0.08);
            padding: 12px 16px;
            border-radius: 12px;
            color: #2f2340;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }

        .submit-btn--danger {
            background: linear-gradient(135deg, #CC3B4A, #B8323F);
            color: white;
        }

        .submit-btn--danger:hover {
            background: linear-gradient(135deg, #B8323F, #A02A35);
            color: white;
        }

        .submit-btn--secondary {
            background: #f5f5f5;
            color: #666;
        }

        .submit-btn--secondary:hover {
            background: #e8e8e8;
            color: #333;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 25px;
        }

        .modal-user-item {
            position: relative;
        }

        .modal-users img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #f0f0f0;
        }

        .modal-users .unlock-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 24px;
            height: 24px;
            background: #8CB374;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .modal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 16px;
            border-radius: 25px;
            background: linear-gradient(135deg, #a06ea2, #8cb374);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            box-shadow: 0 12px 24px rgba(38, 20, 44, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 28px rgba(38, 20, 44, 0.25);
        }

        .modal-note {
            margin-top: 14px;
            font-size: 14px;
            color: rgba(38, 20, 44, 0.8);
            text-align: center;
        }

        .modal-note a {
            color: #8cb374;
            font-weight: 600;
            text-decoration: none;
        }

        .modal-note a:hover {
            text-decoration: underline;
        }

        /* Video Card */
        .video-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .video-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .play-btn i {
            color: #A06EA2;
            font-size: 20px;
            margin-left: 3px;
        }

        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 12px;
        }

        .video-info {
            padding: 15px;
        }

        .video-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .video-author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .video-views {
            font-size: 12px;
            color: #999;
        }

        .video-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .video-description {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        /* Blog Posts */
        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: transform 0.2s;
        }

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

        .blog-image {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-category {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #A06EA2;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        .blog-content {
            padding: 15px;
        }

        .blog-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .blog-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #999;
        }

        .blog-author {
            font-weight: 500;
        }

        /* Success Stories */
        .success-card {
            background: linear-gradient(135deg, #A06EA2, #8CB374);
            border-radius: 20px;
            padding: 20px;
            color: white;
        }

        .success-card-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
        }

        .couple-photos {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .couple-photo-1,
        .couple-photo-2 {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: cover;
        }

        .couple-photo-2 {
            margin-left: -20px;
        }

        .heart-icon {
            position: absolute;
            bottom: 5px;
            right: calc(50% - 15px);
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .heart-icon i {
            color: #A06EA2;
            font-size: 16px;
        }

        .success-content h4 {
            font-size: 20px;
            margin-bottom: 10px;
            text-align: center;
        }

        .success-text {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            text-align: center;
            opacity: 0.95;
        }

        .success-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 13px;
            opacity: 0.9;
        }

        /* Live Events */
        .live-event-card {
            background: linear-gradient(135deg, #3D5E4B, #8CB374);
            border-radius: 20px;
            padding: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: #8CB374;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(140, 179, 116, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(140, 179, 116, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(140, 179, 116, 0);
            }
        }

        .event-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .event-info p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .event-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
        }

        .join-btn {
            width: 100%;
            background: white;
            color: #3D5E4B;
            border: none;
            padding: 12px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .join-btn:hover {
            transform: translateY(-2px);
            background: #8CB374;
            color: white;
        }

        /* Tips Carousel */
        .tips-carousel {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .tips-carousel::-webkit-scrollbar {
            display: none;
        }

        .tip-card {
            flex-shrink: 0;
            width: 250px;
            background: #f8f8f8;
            border-radius: 15px;
            padding: 20px;
            position: relative;
            transition: all 0.3s;
        }

        .tip-card.active-tip {
            background: linear-gradient(135deg, #A06EA2, #8CB374);
            color: white;
        }

        .tip-number {
            font-size: 32px;
            font-weight: 700;
            opacity: 0.2;
            margin-bottom: 10px;
        }

        .active-tip .tip-number {
            opacity: 0.3;
        }

        .tip-card h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }

        .active-tip h4 {
            color: white;
        }

        .tip-card p {
            font-size: 14px;
            line-height: 1.4;
            color: #666;
        }

        .active-tip p {
            color: white;
            opacity: 0.95;
        }

        /* Calendar Section */
        .calendar-section {
            padding: 0 25px 30px;
        }

        .calendar-section .section-header {
            padding-top: 20px;
        }

        /* Desktop/Tablet calendar sidebar layout */
        .homepage-content-wrapper {
            display: block;
            margin-top: 0;
            padding-top: 10px;
        }

        .homepage-main-content {
            display: block;
        }

        .current-month {
            font-size: 14px;
            color: #999;
            font-weight: 500;
        }

        .calendar-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 5px 0;
        }

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

        .calendar-day {
            flex-shrink: 0;
            width: 60px;
            background: white;
            border-radius: 15px;
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s;
        }

        .calendar-day.calendar-day-disabled {
            cursor: default;
            opacity: 0.45;
            pointer-events: none;
        }

        .calendar-day.calendar-day-disabled .day-name,
        .calendar-day.calendar-day-disabled .day-number {
            opacity: 0.6;
        }

        .calendar-day:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .calendar-day.today {
            background: #A06EA2;
            color: white;
        }

        .calendar-day.today:not(.selected) {
            background: transparent;
            color: inherit;
            border: 2px solid #A06EA2;
        }

        .calendar-day.selected {
            background: #A06EA2;
            color: white;
        }

        .calendar-day.selected .day-name,
        .calendar-day.selected .day-number {
            color: white;
        }

        .calendar-day.selected .date-dot {
            background: #FFFFFF;
        }

        .day-name {
            font-size: 12px;
            font-weight: 500;
            opacity: 0.7;
            text-transform: uppercase;
        }

        .day-number {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .day-indicator {
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            position: absolute;
            bottom: 10px;
        }

        .date-dot {
            width: 6px;
            height: 6px;
            background: #A06EA2;
            border-radius: 50%;
            position: absolute;
            bottom: 10px;
        }


        /* Profile Card */
        .profile-card {
            background: #333;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            height: 420px;
        }

        .profile-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }

        .profile-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: white;
        }

        .profile-name {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .profile-details {
            display: flex;
            align-items: center;
            gap: 30px;
            font-size: 14px;
        }

        .profile-details i {
            margin-right: 5px;
        }

        .profile-actions {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 15px;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .action-btn i {
            color: white;
            font-size: 18px;
        }

        .likes-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .likes-badge i {
            color: white;
            font-size: 16px;
        }

        /* Bottom Navigation */
        .app-footer {
            padding: 20px 25px;
            padding-bottom: calc(20px + 90px);
            padding-top: 40px;
            background: white;
            border-top: 1px solid #f0f0f0;
            margin-top: auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: #666;
        }

        .footer-link {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #A06EA2;
        }

        .footer-separator {
            color: #ccc;
            margin: 0 4px;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 400px;
            background: white;
            padding: 15px 0 25px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #f0f0f0;
            z-index: 200;
            box-sizing: border-box;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            position: relative;
        }

        .nav-item--disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .nav-item i {
            font-size: 24px;
            color: #999;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 24px;
            width: 24px;
            line-height: 1;
        }

        .nav-item i[class*="fa-bell"] {
            font-size: 26px;
            height: 26px;
            width: 26px;
        }

        .nav-item.active i {
            color: #A06EA2;
        }

        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -15px;
            width: 5px;
            height: 5px;
            background: #A06EA2;
            border-radius: 50%;
        }

        .chat-badge {
            position: absolute;
            top: -5px;
            right: -10px;
            background: #8CB374;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }

        /* Sidebar Menu */
        .sidebar-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            transition: left 0.3s ease;
            z-index: 1000;
            padding: 20px;
        }

        .sidebar-menu.active {
            left: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 999;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .sidebar-title {
            font-size: 20px;
            font-weight: 600;
            color: #542C45;
        }

        .sidebar-close {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
        }

        .sidebar-close i {
            color: #333;
            font-size: 18px;
        }

        .sidebar-menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            cursor: pointer;
            border-bottom: 1px solid #f5f5f5;
            transition: color 0.2s;
        }

        .sidebar-menu-item:hover {
            color: #A06EA2;
        }

        .sidebar-menu-item i {
            font-size: 20px;
            color: #542C45;
            width: 24px;
        }

        .sidebar-menu-item:hover i {
            color: #A06EA2;
        }

        .sidebar-menu-item span {
            font-size: 16px;
            font-weight: 500;
        }

        .sidebar-menu-divider {
            height: 1px;
            background: #f0f0f0;
            margin: 10px 0;
        }

        /* Responsive Design */
        /* Mobile and small tablets - remove fake phone edges */
        @media (max-width: 767px) {
            body {
                background: linear-gradient(135deg, rgba(160, 110, 162, 0.14) 0%, rgba(255, 255, 255, 0.96) 55%, #ffffff 100%);
                display: block;
                padding: 0;
            }

            .app-container {
                max-width: 100%;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
                margin: 0;
                min-height: 100vh;
            }

            .header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 25px;
                background: white;
                position: sticky;
                top: 0;
                z-index: 100;
                border-bottom: 1px solid #f0f0f0;
                max-width: 100%;
                margin: 0;
                width: 100%;
                box-sizing: border-box;
            }

            .header-nav {
                display: none !important;
            }

            .menu-btn-desktop {
                display: none !important;
            }

            .menu-btn-mobile {
                display: flex !important;
            }

            .back-btn {
                display: flex !important;
            }

            .location {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1;
                padding: 0 12px;
            }

            .bottom-nav {
                padding-bottom: 15px;
            }
        }

        /* Tablets */
        @media (min-width: 768px) and (max-width: 1023px) {
            body {
                background: #f5f5f5;
            }

            .app-footer {
                padding: 25px 40px;
            }

            .footer-links {
                font-size: 14px;
            }

            .app-container {
                max-width: 100%;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
                margin: 0;
                min-height: 100vh;
            }

            .main-content {
                padding-bottom: 0;
            }

            .content-section {
                max-width: 800px;
                margin: 0 auto;
                padding: 0 40px 40px;
            }

            /* Notifications page */
            .notifications-container {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 30px;
            }

            .notifications-title {
                font-size: 36px;
                font-weight: 600;
                color: #333;
                margin-top: 40px;
                margin-bottom: 30px;
                text-align: left;
            }

            .saved-container {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 30px;
            }

            .saved-title {
                font-size: 36px;
                font-weight: 600;
                color: #333;
                margin-top: 40px;
                margin-bottom: 30px;
                text-align: center;
            }

            /* Profile page */
            .profile-header {
                max-width: 600px;
                margin: 0 auto;
                padding: 40px 40px 30px;
            }

            .profile-menu {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 25px;
            }

            /* Auth pages (login, register, forgot-password) */
            .auth-form {
                max-width: 420px;
                margin: 0 auto;
                padding: 40px 40px 30px;
            }

            .success-message {
                max-width: 420px;
                margin: 0 auto;
                padding: 40px 40px 0;
            }

            /* Onboarding page */
            .onboarding-form {
                max-width: 420px;
                margin: 0 auto;
                padding: 0 40px 30px;
            }

            /* List page */
            .content-section.list-posts-section {
                max-width: 800px;
                margin: 0 auto;
                padding: 40px 40px 40px;
            }

            /* Saved page */
            .saved-container {
                max-width: 800px;
                margin: 0 auto;
                padding: 0 40px 30px;
            }

            .list-format-header {
                margin-bottom: 35px;
                padding-bottom: 25px;
            }

            .list-format-title {
                font-size: 36px;
            }

            .list-format-description {
                font-size: 17px;
            }

            /* Post detail page */
            .post-badge-wrap {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 12px;
            }

            .post-video-wrapper {
                max-width: 600px;
                margin: 0 auto;
                padding: 20px 40px;
            }

            .post-gallery-section {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 20px;
                width: 100%;
                box-sizing: border-box;
            }

            .post-gallery-title {
                font-size: 19px;
                margin-bottom: 14px;
            }

            .post-gallery-wrapper {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                width: 100%;
                box-sizing: border-box;
            }

            .post-gallery {
                gap: 8px;
                width: max-content;
            }

            .post-gallery-item {
                height: 180px;
            }

            .post-gallery-thumbnail {
                max-height: 180px !important;
            }

            .lightbox-content img {
                height: 70vh;
            }

            .post-audio-wrapper {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 20px;
            }

            .post-audio-title {
                font-size: 15px;
            }

            .post-audio-title i {
                font-size: 17px;
            }

            .post-audio-locked {
                padding: 35px 30px;
            }

            .post-audio-locked-text {
                font-size: 17px;
            }

            .post-audio-locked-button {
                padding: 11px 22px;
                font-size: 14px;
            }

            .custom-audio-player {
                padding: 14px 18px;
            }

            .custom-audio-time,
            .custom-audio-duration {
                font-size: 14px;
                min-width: 50px;
            }

            .post-header {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 20px;
            }

            .post-content {
                max-width: 600px;
                margin: 0 auto;
                padding: 0 40px 25px;
            }

            .guest-card {
                max-width: 600px;
                margin: 0 auto 30px !important;
            }

            .post-comments {
                max-width: 600px !important;
                margin: 0 auto;
                padding: 0 40px 50px;
            }

            .comment-form-footer {
                flex-wrap: nowrap !important;
            }

            .comment-hint {
                white-space: nowrap;
                flex-shrink: 0;
            }

            .comment-submit {
                flex-shrink: 0;
            }

            .post-related-separator {
                max-width: 800px;
                margin: 70px auto 0 !important;
                padding-top: 55px;
            }

            .post-related-separator .content-section {
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 40px 40px !important;
                box-sizing: border-box !important;
            }

            .back-btn {
                display: none !important;
            }

            .menu-btn-mobile {
                display: none !important;
            }

            .menu-btn-desktop {
                display: flex !important;
            }

            .header-nav {
                display: flex !important;
                gap: 10px;
                align-items: center;
                margin-left: auto;
            }

            .header {
                max-width: 800px;
                margin: 0 auto;
                padding: 25px 40px;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .location {
                flex: none;
                justify-content: flex-start;
                padding: 0;
            }

            .header-nav-item {
                display: flex;
                align-items: center;
                gap: 8px;
                color: #333;
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                padding: 8px 16px;
                border-radius: 20px;
                transition: all 0.2s;
            }

            .header-nav-item:hover {
                background: #f5f5f5;
                color: #A06EA2;
            }

            .header-nav-item.active {
                background: #f5f5f5;
                color: #A06EA2;
            }

            .header-nav-item i {
                font-size: 18px;
            }

            .hero {
                max-width: none;
                margin: 0;
                padding: 0;
                flex: 1;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Hero on auth pages (login, register, forgot-password, paywall, unsubscribe) */
            body[data-page="login"] .hero,
            body[data-page="register"] .hero,
            body[data-page="forgot-password"] .hero,
            body[data-page="paywall"] .hero,
            body[data-page="unsubscribe"] .hero {
                padding-top: 40px;
            }

            body[data-page="login"] .hero p,
            body[data-page="register"] .hero p,
            body[data-page="forgot-password"] .hero p,
            body[data-page="paywall"] .hero p,
            body[data-page="unsubscribe"] .hero p {
                margin-bottom: 30px;
            }

            /* Hero on onboarding page */
            body[data-page="onboarding"] .hero.onboarding-hero {
                padding-top: 40px;
            }

            body[data-page="onboarding"] .hero.onboarding-hero p {
                margin-bottom: 30px;
            }

            .hero .logo-container {
                justify-content: center;
                margin-bottom: 12px;
            }

            .hero h1 {
                font-size: 32px;
                line-height: 1.3;
                margin-bottom: 24px;
            }

            .hero-tag {
                font-size: 14px;
                padding: 14px 20px;
                margin-bottom: 8px;
            }

            .hero-subtitle {
                font-size: 18px;
                margin-top: 14px;
                margin-bottom: 24px;
            }

            .hero-cta-button {
                padding: 18px 40px;
                font-size: 18px;
                margin-bottom: 14px;
            }

            .hero-social-proof {
                font-size: 15px;
            }

            .hero-welcome {
                font-size: 20px;
                margin-top: 18px;
                margin-bottom: 14px;
            }

            .hero-saved-link {
                padding: 16px 24px;
                font-size: 16px;
                margin-top: 14px;
            }

            .hero-saved-link i {
                font-size: 19px;
            }

            .stories {
                max-width: none;
                margin: 0;
                padding: 0;
                flex: 1;
            }

            .stories-list {
                padding: 0;
                display: grid;
                gap: 20px;
                overflow-x: visible;
            }

            .stories-list[data-formats-count="4"] {
                grid-template-columns: repeat(2, 1fr);
            }

            .stories-list[data-formats-count="4"] .story-avatar {
                width: 102px;
                height: 102px;
            }

            .stories-list[data-formats-count="4"] .story-name {
                max-width: 102px;
            }

            .stories-list[data-formats-count="6"] {
                grid-template-columns: repeat(3, 1fr);
            }

            .stories-list[data-formats-count="8"] {
                grid-template-columns: repeat(4, 1fr);
            }

            .story {
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .story-avatar {
                width: 80px;
                height: 80px;
            }

            .story-name {
                font-size: 15px;
                max-width: 80px;
                text-align: center;
                margin-top: 6px;
            }

            /* Hero wrapper */
            .hero-wrapper {
                max-width: 650px;
                margin: 0 auto;
                padding: 30px 0 12px;
                padding-left: 40px;
                padding-right: 40px;
                position: relative;
                overflow: visible;
            }

            .hero-wrapper::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                background: linear-gradient(135deg, rgba(160, 110, 162, 0.08) 0%, rgba(160, 110, 162, 0.04) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 80%, transparent 100%);
                z-index: 0;
            }

            .hero-wrapper::after {
                content: '';
                position: absolute;
                top: -40%;
                right: -8%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(160, 110, 162, 0.12) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
                z-index: 0;
            }

            .hero-wrapper > * {
                position: relative;
                z-index: 1;
            }

            /* Hero slider - align with page content */
            .hero-slider-section {
                max-width: 800px;
                margin: 0 auto;
                padding: 0 40px 24px;
                box-sizing: border-box;
            }

            /* Formats horizontal section responsive */
            .formats-horizontal-section {
                padding: 40px 0 40px 0;
            }

            .formats-horizontal-scroll {
                padding: 0 40px;
                gap: 20px;
            }

            .format-card-horizontal {
                width: 160px;
            }

            .format-card-image {
                height: 220px;
            }

            .format-card-overlay {
                height: 140px;
            }

            .format-card-info {
                bottom: 18px;
                left: 15px;
                right: 15px;
            }

            .format-card-title {
                font-size: 16px;
            }

            .format-card-count {
                font-size: 13px;
            }

            .search-container {
                max-width: 800px;
                margin: 0 auto;
                padding: 0 40px 30px;
            }

            /* Hide bottom nav on tablet */
            .bottom-nav {
                display: none;
            }

            /* Homepage content layout for tablet */
            .homepage-content-wrapper {
                max-width: 800px;
                margin: 0 auto;
                padding: 40px 40px 0;
                box-sizing: border-box;
                margin-top: 12px;
            }

            .homepage-main-content {
                padding: 0;
                width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .homepage-main-content .content-section {
                max-width: 100%;
                margin: 0;
                padding: 0 0 40px;
                box-sizing: border-box;
            }

            .calendar-selected-date {
                padding: 0;
                max-width: 100%;
                box-sizing: border-box;
            }

            .calendar-selected-date.active {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 100%;
                box-sizing: border-box;
            }

            .calendar-selected-date.active .calendar-selected-header {
                grid-column: 1 / -1;
            }

            .calendar-selected-date.active .trending-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            body {
                background: #f5f5f5;
            }

            .app-footer {
                padding: 30px 60px;
            }

            .footer-links {
                font-size: 14px;
            }

            .app-container {
                max-width: 100%;
                width: 100%;
                border-radius: 0;
                box-shadow: none;
                margin: 0;
                min-height: 100vh;
                display: flex;
                flex-direction: column;
            }

            .main-content {
                padding-bottom: 0;
                flex: 1;
            }

            .content-section {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 60px 60px;
                box-sizing: border-box;
            }

            /* Notifications page */
            .notifications-container {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 30px;
            }

            .notifications-title {
                font-size: 42px;
                font-weight: 600;
                color: #333;
                margin-top: 50px;
                margin-bottom: 35px;
                text-align: left;
            }

            /* Saved page */
            .saved-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 60px 30px;
            }

            .saved-title {
                font-size: 42px;
                font-weight: 600;
                color: #333;
                margin-top: 50px;
                margin-bottom: 35px;
                text-align: center;
            }

            /* Profile page */
            .profile-header {
                max-width: 700px;
                margin: 0 auto;
                padding: 50px 60px 30px;
            }

            .profile-menu {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 25px;
            }

            /* Auth pages (login, register, forgot-password) */
            .auth-form {
                max-width: 450px;
                margin: 0 auto;
                padding: 50px 60px 30px;
            }

            .success-message {
                max-width: 450px;
                margin: 0 auto;
                padding: 50px 60px 0;
            }

            /* Onboarding page */
            .onboarding-form {
                max-width: 450px;
                margin: 0 auto;
                padding: 0 60px 30px;
            }

            /* List page */
            .content-section.list-posts-section {
                max-width: 1200px;
                margin: 0 auto;
                padding: 50px 60px 60px;
            }

            .list-format-header {
                margin-bottom: 40px;
                padding-bottom: 30px;
            }

            .list-format-title {
                font-size: 42px;
            }

            .list-format-description {
                font-size: 18px;
            }

            /* Post detail page */
            .post-badge-wrap {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 12px;
            }

            .post-video-wrapper {
                max-width: 700px;
                margin: 0 auto;
                padding: 25px 60px 20px;
            }

            .post-gallery-section {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 20px;
                width: 100%;
                box-sizing: border-box;
            }

            .post-gallery-title {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .post-gallery-wrapper {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                width: 100%;
                box-sizing: border-box;
            }

            .post-gallery {
                gap: 12px;
                width: max-content;
            }

            .post-gallery-item {
                height: 220px;
            }

            .post-gallery-thumbnail {
                max-height: 220px !important;
            }

            .lightbox-content img {
                height: 75vh;
            }

            .post-audio-wrapper {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 20px;
            }

            .post-audio-title {
                font-size: 16px;
            }

            .post-audio-title i {
                font-size: 18px;
            }

            .post-audio-locked {
                padding: 40px 35px;
            }

            .post-audio-locked-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }

            .post-audio-locked-text {
                font-size: 18px;
            }

            .post-audio-locked-button {
                padding: 12px 24px;
                font-size: 15px;
            }

            .post-audio-player {
                width: 100%;
            }

            .custom-audio-player {
                padding: 16px 20px;
            }

            .custom-audio-play-btn {
                width: 44px;
                height: 44px;
            }

            .custom-audio-time,
            .custom-audio-duration {
                font-size: 14px;
                min-width: 55px;
            }

            .post-header {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 20px;
            }

            .post-content {
                max-width: 700px;
                margin: 0 auto;
                padding: 0 60px 25px;
            }

            .guest-card {
                max-width: 700px;
                margin: 0 auto 30px !important;
            }

            .post-comments {
                max-width: 700px !important;
                margin: 0 auto;
                padding: 0 60px 50px;
            }

            .comment-form-footer {
                flex-wrap: nowrap !important;
            }

            .comment-hint {
                white-space: nowrap;
                flex-shrink: 0;
            }

            .comment-submit {
                flex-shrink: 0;
            }

            .post-related-separator {
                max-width: 1200px;
                margin: 70px auto 0 !important;
                padding-top: 55px;
            }

            .post-related-separator .content-section {
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 60px 60px !important;
                box-sizing: border-box !important;
            }

            .back-btn {
                display: none !important;
            }

            .menu-btn-mobile {
                display: none !important;
            }

            .menu-btn-desktop {
                display: flex !important;
            }

            .header-nav {
                display: flex !important;
                gap: 10px;
                align-items: center;
                margin-left: auto;
                margin-right: 20px;
            }

            .header {
                max-width: 1200px;
                margin: 0 auto;
                width: 100%;
                padding: 30px 60px;
                box-sizing: border-box;
            }

            .location {
                flex: none;
                justify-content: flex-start;
                position: static;
                left: auto;
                transform: none;
                padding: 0 0 0 45px;
            }

            .hero {
                max-width: none;
                margin: 0;
                padding: 0;
                flex: 1;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Hero on auth pages (login, register, forgot-password, paywall) */
            body[data-page="login"] .hero,
            body[data-page="register"] .hero,
            body[data-page="forgot-password"] .hero,
            body[data-page="paywall"] .hero,
            body[data-page="unsubscribe"] .hero {
                padding-top: 50px;
            }

            body[data-page="login"] .hero p,
            body[data-page="register"] .hero p,
            body[data-page="forgot-password"] .hero p,
            body[data-page="paywall"] .hero p,
            body[data-page="unsubscribe"] .hero p {
                margin-bottom: 40px;
            }

            /* Hero on onboarding page */
            body[data-page="onboarding"] .hero.onboarding-hero {
                padding-top: 50px;
            }

            body[data-page="onboarding"] .hero.onboarding-hero p {
                margin-bottom: 40px;
            }

            .hero .logo-container {
                justify-content: center;
                margin-bottom: 15px;
            }

            .hero h1 {
                font-size: 42px;
                line-height: 1.25;
                margin-bottom: 28px;
            }

            .hero-tag {
                font-size: 15px;
                padding: 16px 22px;
                margin-bottom: 8px;
            }

            .hero-subtitle {
                font-size: 20px;
                margin-top: 16px;
                margin-bottom: 28px;
            }

            .hero-cta-button {
                padding: 20px 44px;
                font-size: 19px;
                margin-bottom: 16px;
            }

            .hero-social-proof {
                font-size: 16px;
            }

            .hero-welcome {
                font-size: 22px;
                margin-top: 20px;
                margin-bottom: 16px;
            }

            .hero-saved-link {
                padding: 18px 28px;
                font-size: 17px;
                margin-top: 16px;
            }

            .hero-saved-link i {
                font-size: 20px;
            }

            .stories {
                max-width: none;
                margin: 0;
                padding: 0;
                flex: 1;
            }

            .stories-list {
                padding: 0;
                display: grid;
                gap: 25px;
                overflow-x: visible;
            }

            .stories-list[data-formats-count="4"] {
                grid-template-columns: repeat(2, 1fr);
            }

            .stories-list[data-formats-count="4"] .story-avatar {
                width: 122px;
                height: 122px;
            }

            .stories-list[data-formats-count="4"] .story-name {
                max-width: 122px;
                font-size: 15px;
            }

            .stories-list[data-formats-count="6"] {
                grid-template-columns: repeat(3, 1fr);
            }

            .stories-list[data-formats-count="8"] {
                grid-template-columns: repeat(4, 1fr);
            }

            .story {
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .story-avatar {
                width: 95px;
                height: 95px;
            }

            .story-name {
                font-size: 15px;
                max-width: 95px;
                text-align: center;
                margin-top: 6px;
            }

            /* Hero wrapper */
            .hero-wrapper {
                max-width: 750px;
                margin: 0 auto;
                padding: 35px 0 40px;
                padding-left: 60px;
                padding-right: 60px;
                position: relative;
                overflow: visible;
            }

            .hero-wrapper::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                background: linear-gradient(135deg, rgba(160, 110, 162, 0.08) 0%, rgba(160, 110, 162, 0.04) 30%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 80%, transparent 100%);
                z-index: 0;
            }

            .hero-wrapper::after {
                content: '';
                position: absolute;
                top: -35%;
                right: -5%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(160, 110, 162, 0.12) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
                z-index: 0;
            }

            .hero-wrapper > * {
                position: relative;
                z-index: 1;
            }

            /* Hero slider - hide on desktop */
            .hero-slider-section {
                display: none;
            }

            /* Formats horizontal section responsive */
            .formats-horizontal-section {
                padding: 50px 0 50px 0;
            }

            .formats-horizontal-scroll {
                padding: 0 60px;
                gap: 25px;
            }

            .format-card-horizontal {
                width: 180px;
            }

            .format-card-image {
                height: 240px;
            }

            .format-card-overlay {
                height: 160px;
            }

            .format-card-info {
                bottom: 20px;
                left: 18px;
                right: 18px;
            }

            .format-card-title {
                font-size: 16px;
            }

            .format-card-count {
                font-size: 13px;
            }

            .search-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 60px 40px;
            }

            /* Hide bottom nav on desktop */
            .bottom-nav {
                display: none;
            }

            .app-footer {
                padding: 30px 60px;
            }

            .footer-links {
                font-size: 14px;
            }

            /* Homepage content layout for desktop */
            .homepage-content-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                padding: 50px 60px 0;
                box-sizing: border-box;
                margin-top: 15px;
            }

            .homepage-main-content {
                padding: 0;
                width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .homepage-main-content .content-section {
                max-width: 100%;
                margin: 0;
                padding: 0 0 60px;
                box-sizing: border-box;
            }

            .upcoming-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            /* Desktop navigation in header */
            .header {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .header-nav {
                display: flex;
                gap: 10px;
                align-items: center;
                margin-left: auto;
                margin-right: 20px;
            }

            .location {
                flex: none;
                justify-content: flex-start;
                position: static;
                left: auto;
                transform: none;
                padding: 0 0 0 15px;
            }

            .header-nav-item {
                display: flex;
                align-items: center;
                gap: 8px;
                color: #333;
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                padding: 8px 16px;
                border-radius: 20px;
                transition: all 0.2s;
            }

            .header-nav-item:hover {
                background: #f5f5f5;
                color: #A06EA2;
            }

            .header-nav-item.active {
                background: #f5f5f5;
                color: #A06EA2;
            }

            .header-nav-item i {
                font-size: 18px;
            }

            /* Grid layouts for desktop - 3 cards per row */
            .trending-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                max-width: 100%;
                box-sizing: border-box;
            }

            .trending-card {
                max-width: 100%;
                box-sizing: border-box;
            }

            .trending-title {
                font-size: 14px;
            }

            /* Featured topics grid */
            .home-featured-topics {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            /* Podcast invite - better layout */
            .podcast-invite-inner {
                max-width: 900px;
                margin: 0 auto;
            }

            /* Profile sections */
            .profile-personal-wrapper {
                max-width: 800px;
                margin: 0 auto;
            }

            /* Post detail page */
            .post-detail-content {
                max-width: 900px;
                margin: 0 auto;
            }

            /* Modals - better sizing on desktop */
            .modal-overlay .modal {
                max-width: 600px;
            }

            .podcast-modal {
                max-width: 700px;
            }

            /* Forms - better width */
            .profile-account-form,
            .onboarding-form {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* Tablet - 3 cards per row */
        @media (min-width: 768px) and (max-width: 1023px) {
            .trending-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                max-width: 100%;
                box-sizing: border-box;
            }

            .trending-card {
                max-width: 100%;
                box-sizing: border-box;
            }
        }

        /* Small tablet / large phone - 2 cards */
        @media (min-width: 480px) and (max-width: 767px) {
            .trending-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Small mobile - single column */
        @media (max-width: 479px) {
            .trending-cards {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 767px) {
            .trending-duration {
                font-size: 15px;
            }

            .home-featured-topics {
                display: flex !important;
                flex-direction: column !important;
            }
        }

        /* Very small mobile devices */
        @media (max-width: 360px) {
            .hero h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 20px;
            }

            .content-section {
                padding: 0 20px 25px;
            }
        }

        /* Color filters for profile images */
        .color-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(160, 110, 162, 0.3), 
                rgba(160, 110, 162, 0.3),
                rgba(61, 94, 75, 0.3));
            mix-blend-mode: multiply;
            pointer-events: none;
        }

        /* Calendar Selected Date Content */
.calendar-selected-date {
    padding: 0 25px 30px;
    display: none;
    max-width: 100%;
    box-sizing: border-box;
}

.calendar-selected-date.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .calendar-selected-date {
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .calendar-selected-date.active {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .calendar-selected-date.active .calendar-selected-header {
        grid-column: 1 / -1;
    }

    .calendar-selected-date.active .trending-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (min-width: 1024px) {
    .calendar-selected-date {
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .calendar-selected-date.active {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .calendar-selected-date.active .calendar-selected-header {
        grid-column: 1 / -1;
    }

    .calendar-selected-date.active .trending-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.calendar-selected-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

        .calendar-selected-date-label {
            font-size: 16px;
            font-weight: 600;
            color: #A06EA2;
        }

        .calendar-selected-date-value {
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .calendar-content-card {
            background: #333;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            height: 420px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .calendar-content-card:hover {
            transform: translateY(-5px);
        }

        .calendar-content-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .calendar-content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }

        .calendar-content-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: white;
        }

        .calendar-content-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(160, 110, 162, 0.9);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .calendar-content-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .calendar-content-meta {
            font-size: 14px;
            opacity: 0.9;
        }

        .calendar-content-meta i {
            margin-right: 5px;
        }

        .calendar-content-stats {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
        }

        .calendar-content-future-overlay {
            position: absolute;
            inset: 0;
            background: rgba(38, 20, 44, 0.78);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 30px 26px;
            text-align: center;
            color: #fff;
            z-index: 10;
        }

        .calendar-content-future-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .calendar-content-future-text span {
            display: block;
            font-size: 14px;
            line-height: 1.5;
        }

        .calendar-content-future-text .future-line-heading {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

/* List page */
.section-info-container {
    padding: 25px;
}

.section-info-schedule-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 15px;
    text-align: center;
}

.section-info-format-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-info-format-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.section-info-format-link:active {
    transform: translateY(0);
}

.section-info-schedule-label {
    font-size: 12px;
    font-weight: 600;
    color: #A06EA2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-info-schedule {
    font-size: 26px;
    font-weight: 700;
    color: #542C45;
}

.section-info-title-card {
    background: #333;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 170px;
    margin-bottom: 15px;
}

.section-info-title-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-info-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.section-info-title {
    position: absolute;
    bottom: 70px;
    left: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.section-info-description {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: white;
    opacity: 0.9;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px 25px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: #f5f5f5;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    color: white;
    border: none;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Post page */
.topic-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topic-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.topic-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7c4a8e;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(160, 110, 162, 0.15);
    border-radius: 999px;
    align-self: flex-start;
}

.topic-highlight-title {
    font-size: 20px;
    font-weight: 600;
    color: #2f2340;
    letter-spacing: 0.01em;
}

.topic-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.topic-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topic-author img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(47, 35, 64, 0.18);
}

.topic-author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.topic-author-name {
    font-weight: 600;
    font-size: 16px;
    color: #2f2340;
}

.topic-date {
    font-size: 13px;
    color: rgba(47, 35, 64, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topic-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f2340;
    line-height: 1.3;
}

.topic-description {
    padding: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(47, 35, 64, 0.82);
}

.topic-description p {
    margin: 0;
}

.topic-comments {
    padding: 0 25px 40px;
}

.topic-comments-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.topic-comments-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2f2340;
    margin: 0;
}

.topic-comments-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(160, 110, 162, 0.15);
    color: #A06EA2;
    font-weight: 600;
    font-size: 14px;
}

.comment-list--topic .comment-item {
    border-bottom: 1px solid rgba(47, 35, 64, 0.08);
    padding-bottom: 18px;
}

.comment-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-list--topic .comment-item:last-child {
    border-bottom: none;
}

.home-featured-topics {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-featured-topics .section-header {
    align-items: flex-start;
}

.section-subtitle {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(47, 35, 64, 0.55);
    font-weight: 600;
}

.featured-topic-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.featured-topic-card {
    position: relative;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(160, 110, 162, 0.12);
    box-shadow: 0 12px 34px rgba(47, 35, 64, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.featured-topic-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -40%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at center, rgba(160, 110, 162, 0.08), transparent 70%);
    pointer-events: none;
}

.featured-topic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a06ea2, #62d6bd);
    border-radius: 24px 24px 0 0;
}

.featured-topic-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-topic-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(47, 35, 64, 0.18);
}

.featured-topic-author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.featured-topic-author-name {
    font-weight: 600;
    font-size: 15px;
    color: #2f2340;
}

.featured-topic-date {
    font-size: 12px;
    color: rgba(47, 35, 64, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.featured-topic-title {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #2f2340;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.featured-topic-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(47, 35, 64, 0.72);
    position: relative;
    z-index: 1;
}

.featured-topic-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.featured-topic-comments {
    font-size: 12px;
    font-weight: 600;
    color: rgba(47, 35, 64, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.featured-topic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(160, 110, 162, 0.12);
    border-radius: 999px;
    color: #7c4a8e;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: none;
}

.featured-topic-btn:hover {
    background: linear-gradient(135deg, #a06ea2, #62d6bd);
    color: #fff;
    box-shadow: 0 14px 30px rgba(98, 214, 189, 0.28);
}

.featured-topic-btn i {
    font-size: 12px;
}

.post-video-wrapper {
    width: 100%;
    padding: 25px 25px 20px;
}

.post-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.post-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-registration-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.9), rgba(98, 214, 189, 0.9));
    position: relative;
}

.post-registration-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.post-registration-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 30px;
    color: white;
    width: 100%;
    max-width: 500px;
}

.post-registration-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.post-registration-icon i {
    color: white;
}

.post-registration-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
    color: white;
    line-height: 1.3;
}

.post-registration-text {
    font-size: 16px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.post-registration-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #a06ea2;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.post-registration-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.post-registration-button i {
    font-size: 18px;
}

.post-registration-login {
    margin: 25px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.post-registration-login a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-registration-login a:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .post-registration-content {
        padding: 30px 24px;
    }

    .post-registration-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .post-registration-title {
        font-size: 22px;
        margin: 0 0 12px;
    }

    .post-registration-text {
        font-size: 15px;
        margin: 0 0 24px;
    }

    .post-registration-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .post-registration-button i {
        font-size: 16px;
    }

    .post-registration-login {
        margin: 20px 0 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .post-registration-content {
        padding: 20px 20px;
    }

    .post-registration-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .post-registration-title {
        font-size: 18px;
        margin: 0 0 10px;
        line-height: 1.25;
    }

    .post-registration-text {
        font-size: 14px;
        margin: 0 0 18px;
        line-height: 1.4;
    }

    .post-registration-button {
        padding: 12px 24px;
        font-size: 14px;
        gap: 10px;
    }

    .post-registration-button i {
        font-size: 15px;
    }

    .post-registration-login {
        margin: 16px 0 0;
        font-size: 12px;
    }
}

.post-premium-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.9), rgba(98, 214, 189, 0.9));
    position: relative;
}

.post-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.post-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 24px;
    color: white;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.post-premium-icon {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.post-premium-icon i {
    color: white;
}

.post-premium-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: white;
    line-height: 1.3;
}

.post-premium-pricing {
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.post-premium-price {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.post-premium-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.post-premium-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #a06ea2, #62d6bd);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(160, 110, 162, 0.3);
}

.post-premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 110, 162, 0.4);
}

@media (max-width: 768px) {
    .post-premium-content {
        padding: 16px 20px;
        max-width: 380px;
    }

    .post-premium-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .post-premium-title {
        font-size: 18px;
        margin: 0 0 10px;
    }

    .post-premium-price {
        font-size: 32px;
    }

    .post-premium-period {
        font-size: 13px;
    }

    .post-premium-button {
        padding: 11px 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .post-premium-content {
        padding: 14px 16px;
        max-width: 100%;
    }

    .post-premium-icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .post-premium-title {
        font-size: 16px;
        margin: 0 0 8px;
        line-height: 1.25;
    }

    .post-premium-pricing {
        margin: 0 0 12px;
    }

    .post-premium-price {
        font-size: 28px;
    }

    .post-premium-period {
        font-size: 12px;
    }

    .post-premium-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Gallery Styles */
.post-gallery-section {
    width: 100%;
    box-sizing: border-box;
    padding: 0 25px 20px;
}

.post-gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #2f2340;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-gallery-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(160, 110, 162, 0.3) transparent;
}

/* Audio Player Styles */

.post-gallery-wrapper::-webkit-scrollbar {
    height: 8px;
}

.post-gallery-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.post-gallery-wrapper::-webkit-scrollbar-thumb {
    background: rgba(160, 110, 162, 0.3);
    border-radius: 4px;
}

.post-gallery-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(160, 110, 162, 0.5);
}

.post-gallery {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    align-items: flex-start;
    width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-gallery-item {
    flex: 0 0 auto !important;
    min-width: 0;
    max-width: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    float: none !important;
    height: 200px;
    width: auto;
    flex-shrink: 0;
}

.post-gallery-item:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.post-gallery-thumbnail {
    max-height: 200px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block !important;
    margin: 0;
    padding: 0;
    float: none !important;
    flex-shrink: 0;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close:active {
    transform: scale(0.95);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav-prev {
    left: 20px;
}

.lightbox-nav-next {
    right: 20px;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    height: 80vh;
    width: auto;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 8px;
}

.post-audio-wrapper {
    width: 100%;
    padding: 0 25px 20px;
}

.post-audio-label {
    margin-bottom: 16px;
}

.post-audio-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2f2340;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-audio-title i {
    color: #a06ea2;
    font-size: 16px;
}

.post-audio-player {
    width: 100%;
}

.post-audio-locked {
    background: rgba(160, 110, 162, 0.08);
    border-radius: 12px;
    padding: 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.post-audio-locked-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(160, 110, 162, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a06ea2;
    font-size: 24px;
}

.post-audio-locked-text {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-audio-locked-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #a06ea2, #62d6bd);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(160, 110, 162, 0.3);
    margin-top: 5px;
}

.post-audio-locked-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 110, 162, 0.4);
}

.post-audio-player audio {
    display: none;
}

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a06ea2, #8cb374);
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    position: relative;
}

.custom-audio-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.custom-audio-play-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.custom-audio-play-btn:active {
    transform: scale(0.95);
}

.custom-audio-play-btn i {
    color: #333;
    font-size: 14px;
}

.custom-audio-play-btn i.fa-play {
    margin-left: 2px;
}

.custom-audio-play-btn.playing i.fa-play {
    display: none;
}

.custom-audio-play-btn.playing i.fa-pause {
    display: inline-block !important;
}

.custom-audio-play-btn:not(.playing) i.fa-pause {
    display: none !important;
}

.custom-audio-loading {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.custom-audio-loading i {
    color: #333;
    font-size: 16px;
    animation: spin 1s linear infinite;
}

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

.custom-audio-time,
.custom-audio-duration {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
    flex-shrink: 0;
}

.custom-audio-progress-wrapper {
    flex: 1;
    position: relative;
    height: 6px;
    cursor: pointer;
}

.custom-audio-progress-track {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    overflow: visible;
}

.custom-audio-progress-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.custom-audio-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.custom-audio-progress-wrapper:hover .custom-audio-progress-thumb {
    opacity: 1;
}

.custom-audio-progress-wrapper.dragging .custom-audio-progress-thumb {
    opacity: 1;
}

.custom-audio-volume-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 10;
}

.custom-audio-volume-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.custom-audio-volume-btn:active {
    transform: scale(0.95);
}

.custom-audio-volume-btn i {
    color: #333;
    font-size: 14px;
}

.custom-audio-volume-control {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: rgba(36, 22, 40, 0.95);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.custom-audio-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.custom-audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.custom-audio-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Force remove any background boxes from webkit audio controls */
.post-audio-player audio::-webkit-media-controls-enclosure {
    background: linear-gradient(135deg, #a06ea2, #8cb374) !important;
    background-image: linear-gradient(135deg, #a06ea2, #8cb374) !important;
    border-radius: 12px;
}

.post-audio-player audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, #a06ea2, #8cb374) !important;
    background-image: linear-gradient(135deg, #a06ea2, #8cb374) !important;
}

/* Custom audio player styling */
.post-audio-player audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, #a06ea2, #8cb374);
    border-radius: 12px;
}

.post-audio-player audio::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.post-audio-player audio::-webkit-media-controls-current-time-display,
.post-audio-player audio::-webkit-media-controls-time-remaining-display {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Remove stripes and light box from progress bar */
.post-audio-player audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3) !important;
    background-image: none !important;
    border: none !important;
    outline: none !important;
    border-radius: 2px;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.post-audio-player audio::-webkit-media-controls-timeline-container {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none;
    opacity: 1 !important;
    /* Force remove any background box */
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    /* Try to blend with parent */
    mix-blend-mode: normal !important;
    /* Remove backdrop filter that might create the box */
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    /* Try to hide the box using clip-path */
    clip-path: inset(0) !important;
    -webkit-clip-path: inset(0) !important;
}

/* Target the actual element that creates the box */
.post-audio-player audio::-webkit-media-controls-timeline-container::-webkit-slider-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Try targeting the actual slider input element */
.post-audio-player audio::-webkit-media-controls-timeline {
    -webkit-appearance: slider-horizontal;
}

.post-audio-player audio::-webkit-media-controls-timeline::-webkit-slider-container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Try to remove the box by targeting the wrapper that creates it */
.post-audio-player audio::-webkit-media-controls-timeline-container::-webkit-slider-container {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Remove the light box background around progress bar - target all possible containers */
.post-audio-player audio::-webkit-media-controls-timeline::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.3) !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    background-image: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 2px;
    -webkit-appearance: none;
}

.post-audio-player audio::-webkit-media-controls-timeline::-webkit-slider-thumb {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
}

/* Aggressively remove any background from timeline wrapper and all children */
.post-audio-player audio::-webkit-media-controls-timeline-container *,
.post-audio-player audio::-webkit-media-controls-timeline-container::before,
.post-audio-player audio::-webkit-media-controls-timeline-container::after {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Specifically target any wrapper elements */
.post-audio-player audio::-webkit-media-controls-timeline-container > * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Target the actual slider track more specifically */
.post-audio-player audio::-webkit-media-controls-timeline::-webkit-slider-container {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove stripes from volume control */
.post-audio-player audio::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.3) !important;
    background-image: none !important;
    border-radius: 2px;
    -webkit-appearance: none;
}

.post-audio-player audio::-webkit-media-controls-volume-control-container {
    background: transparent !important;
    background-image: none !important;
}

.post-audio-player audio::-webkit-media-controls-mute-button {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
}

.post-preview-cta {
    padding: 30px 25px;
    text-align: center;
    margin: 0 25px 20px;
}

.post-preview-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #a06ea2, #8cb374);
    color: #fff;
    padding: 18px 50px;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(160, 110, 162, 0.3);
    width: 100%;
    max-width: 400px;
}

.post-preview-cta-button i {
    font-size: 16px;
}

.post-preview-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(160, 110, 162, 0.4);
    background: linear-gradient(135deg, #8d5d8f, #7ba066);
}

.post-preview-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(160, 110, 162, 0.3);
}

@media (min-width: 768px) {
    .post-preview-cta {
        max-width: 600px;
        margin: 0 auto 20px;
        padding: 35px 40px;
    }

    .post-preview-cta-button {
        padding: 20px 60px;
        font-size: 19px;
        max-width: 450px;
    }
}

@media (min-width: 1024px) {
    .post-preview-cta {
        max-width: 700px;
        padding: 40px 60px;
    }

    .post-preview-cta-button {
        padding: 22px 70px;
        font-size: 20px;
        max-width: 500px;
    }
}

.post-header {
    padding: 0 25px 20px;
    width: 100%;
    box-sizing: border-box;
}

.post-badge-wrap {
    padding: 0 25px 12px;
}

.post-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(160, 110, 162, 0.15);
    color: #A06EA2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.post-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .post-title {
        font-size: 22px;
    }
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.post-meta i {
    margin-right: 5px;
}

.post-actions-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.post-like-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-like-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(160, 110, 162, 0.14);
    color: #8a4f99;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(160, 110, 162, 0.15);
}

.post-like-button i {
    transition: transform 0.2s ease;
}

.post-like-button:hover {
    background: rgba(160, 110, 162, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(160, 110, 162, 0.25);
}

.post-like-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.post-like-button.is-liked {
    background: #8a4f99;
    color: #fff;
    box-shadow: 0 10px 24px rgba(138, 79, 153, 0.35);
}

.post-like-button.is-liked i {
    transform: scale(1.05);
}

.post-favorite-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: none;
    background: rgba(140, 179, 116, 0.14);
    color: #6a8a5a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(140, 179, 116, 0.15);
}

.post-favorite-button i {
    transition: transform 0.2s ease;
}

.post-favorite-button:hover {
    background: rgba(140, 179, 116, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(140, 179, 116, 0.25);
}

.post-favorite-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.post-favorite-button.is-favorited {
    background: rgba(140, 179, 116, 0.25);
    color: #5a7a4a;
}

.post-favorite-button.is-favorited:hover {
    background: rgba(140, 179, 116, 0.35);
}

.post-favorite-button.is-favorited i {
    transform: scale(1.05);
}

.post-favorite-button--guest {
    background: rgba(160, 110, 162, 0.14);
    color: #8a4f99;
}

.post-favorite-button--guest:hover {
    background: rgba(160, 110, 162, 0.24);
}

.post-like-count {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.post-like-count.only {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a4f99;
}

.post-like-count.only i {
    color: inherit;
}

.post-content {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
}

.post-related-separator {
    margin: 70px 0 0;
    padding-top: 55px;
    position: relative;
}

.post-related-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background-image: linear-gradient(135deg, rgba(160,110,162,0.15) 25%, transparent 25%),
                      linear-gradient(225deg, rgba(160,110,162,0.15) 25%, transparent 25%),
                      linear-gradient(315deg, rgba(160,110,162,0.15) 25%, transparent 25%),
                      linear-gradient(45deg, rgba(160,110,162,0.15) 25%, transparent 25%);
    background-size: 36px 36px;
    background-position: 0 0, 0 18px, 18px -18px, -18px 0px;
}

.post-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.post-text:last-child {
    margin-bottom: 0;
}

.post-text p {
    margin: 0 0 16px 0;
    line-height: 1.7;
    font-size: 18px;
    color: #333;
}

.post-text p:last-child {
    margin-bottom: 0;
}

.post-text strong {
    font-weight: 600;
    color: #2f2340;
}

.post-text em {
    font-style: italic;
}

.post-text a {
    color: #a06ea2;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.post-text a:hover {
    color: #8d5d8f;
}

.guest-card {
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border-radius: 20px;
    padding: 20px;
    margin: 0 25px 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.guest-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    flex-shrink: 0;
}

.guest-info h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.guest-info .guest-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.guest-info .guest-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}

.guest-info .secondary-btn {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #151515;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
    text-decoration: none;
}

.guest-info .secondary-btn:hover {
    text-decoration: none;
    background: #f5f5f5;
}

.post-comments {
    width: 100%;
    padding: 0 25px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    margin: 0 auto;
}

.post-comments-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.post-comments-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.post-comments-count {
    font-size: 14px;
    font-weight: 600;
    color: #A06EA2;
    background: rgba(160, 110, 162, 0.12);
    border-radius: 999px;
    padding: 4px 12px;
}

.comment-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.5;
}

.comment-alert i {
    font-size: 18px;
    margin-top: 2px;
}

.comment-alert--success {
    background: rgba(140, 179, 116, 0.18);
    color: #315025;
}

.comment-alert--success i {
    color: #3D5E4B;
}

.comment-alert--error {
    background: rgba(255, 200, 200, 0.2);
    color: #6A1E1E;
}

.comment-alert--error i {
    color: #B04141;
}

.comment-alert ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.comment-form {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comment-form textarea {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    resize: vertical;
    min-height: 120px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    background: white;
}

.comment-form textarea:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(160, 110, 162, 0.35);
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.comment-hint {
    font-size: 13px;
    color: #888;
}

.comment-submit {
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(160, 110, 162, 0.25);
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-item {
    display: flex;
    gap: 16px;
    background: #f8f8f8;
    border-radius: 18px;
    padding: 18px;
}

.comment-item--pending {
    border: 1px dashed rgba(160, 110, 162, 0.45);
    background: rgba(160, 110, 162, 0.08);
}

.comment-item--reply {
    margin-left: 12px;
    padding-left: 8px;
    position: relative;
    background: rgba(160, 110, 162, 0.03);
}

.comment-item--reply::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border-radius: 0 3px 3px 0;
}

.comment-reply-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
    margin-top: 18px;
}

.comment-reply-indicator i {
    color: white;
    font-size: 10px;
    transform: rotate(180deg);
}

.comment-reply-label {
    font-size: 11px;
    font-weight: 600;
    color: #A06EA2;
    background: rgba(160, 110, 162, 0.12);
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-replies {
    margin-top: 8px;
    margin-left: 12px;
    padding-left: 8px;
    position: relative;
}

.comment-replies::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(160, 110, 162, 0.15);
}

.comment-reply-btn {
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(160, 110, 162, 0.1);
    border: none;
    border-radius: 8px;
    color: #A06EA2;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.comment-reply-btn:hover {
    background: rgba(160, 110, 162, 0.2);
    color: #8a4f99;
}

.comment-reply-btn i {
    font-size: 11px;
}

.comment-reply-form-wrapper {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(160, 110, 162, 0.15);
}

.comment-reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-reply-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s ease;
}

.comment-reply-form textarea:focus {
    outline: none;
    border-color: #A06EA2;
}

.comment-reply-form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.comment-reply-cancel {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comment-reply-cancel:hover {
    background: #e8e8e8;
}

.comment-reply-submit {
    padding: 8px 18px;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-reply-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(160, 110, 162, 0.3);
}

.comment-reply-submit i {
    font-size: 12px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.comment-author {
    font-weight: 600;
    color: #333;
}

.comment-dot {
    color: rgba(0, 0, 0, 0.2);
}

.comment-status {
    font-size: 12px;
    font-weight: 600;
    color: #A06EA2;
    background: rgba(160, 110, 162, 0.15);
    border-radius: 999px;
    padding: 2px 10px;
}

.comment-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.comment-empty,
.comment-guest {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.comment-empty {
    margin-top: 24px;
}

.comment-empty i {
    font-size: 28px;
    color: #A06EA2;
    margin-bottom: 12px;
}

.comment-guest a {
    color: #A06EA2;
    font-weight: 600;
    text-decoration: none;
}

.comment-guest a:hover {
    text-decoration: underline;
}

/* Profile page */
.profile-header {
    padding: 30px 25px;
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    border: 5px solid #A06EA2;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-overlay {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(38, 20, 44, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.profile-avatar.profile-avatar--open .profile-avatar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.profile-avatar-btn {
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #2d1f33;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}

.profile-avatar-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.98);
}

.profile-avatar-btn--danger {
    background: rgba(204, 59, 74, 0.18);
    color: #fff;
}

.profile-avatar-btn--danger:hover {
    background: rgba(204, 59, 74, 0.35);
}

.profile-status {
    margin: 0 auto 16px;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 280px;
    font-size: 13px;
}

.profile-status--success {
    background: rgba(58, 147, 105, 0.15);
    color: #2e6f4c;
}

.profile-status--info {
    background: rgba(36, 22, 40, 0.1);
    color: #2d1f33;
}

.profile-status--error {
    background: rgba(204, 59, 74, 0.18);
    color: #7d1b27;
}

.profile-status--error ul {
    margin: 0;
    padding-left: 18px;
}

.profile-name {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.profile-email {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.profile-subscription-box {
    margin: 20px auto 0;
    max-width: 320px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.12), rgba(140, 179, 116, 0.12));
    border: 2px solid rgba(160, 110, 162, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(160, 110, 162, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-subscription-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 110, 162, 0.15);
}

.profile-subscription-box:active {
    transform: translateY(0);
}

.profile-subscription-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.profile-subscription-icon--trial {
    background: linear-gradient(135deg, #8CB374, #A06EA2);
}

.profile-subscription-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-subscription-title {
    font-size: 16px;
    font-weight: 600;
    color: #2f2340;
    line-height: 1.3;
}

.profile-subscription-date {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.premium-card {
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border-radius: 20px;
    padding: 25px;
    margin: 0 25px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.premium-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.premium-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.premium-renew-btn {
    background: white;
    color: #A06EA2;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.premium-renew-btn:hover {
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 25px 25px;
}

.stat-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #A06EA2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

.profile-menu {
    padding: 0 25px 25px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    padding: 18px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.menu-item:hover {
    transform: translateX(5px);
    border-color: #A06EA2;
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-icon i {
    color: white;
    font-size: 18px;
}

.menu-item-text {
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.menu-item-subtitle {
    font-size: 13px;
    color: #999;
}

.menu-item-arrow {
    color: #999;
    font-size: 14px;
}

.auth-form {
    padding: 0 25px 30px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    font-size: 16px;
    color: #333;
    background: #f5f5f5;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #A06EA2;
    background: white;
}

.form-input::placeholder {
    color: #999;
}

.password-toggle {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.password-toggle-btn:hover {
    color: #A06EA2;
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #A06EA2;
}

.remember-me span {
    font-size: 14px;
    color: #666;
}

.forgot-password a {
    color: #A06EA2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #8CB374;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s ease;
}

.submit-btn--danger {
    background: linear-gradient(135deg, #CC3B4A, #B8323F) !important;
    color: white !important;
}

.submit-btn--danger:hover {
    background: linear-gradient(135deg, #B8323F, #A02A35) !important;
    color: white !important;
}

.submit-btn--secondary {
    background: #f5f5f5 !important;
    color: #666 !important;
}

.submit-btn--secondary:hover {
    background: #e8e8e8 !important;
    color: #333 !important;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

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

.register-link {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(160, 110, 162, 0.15);
}

.register-link p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.register-link a,
.register-link a:visited {
    color: #A06EA2;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: none;
}

.info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
}

.onboarding-hero p {
    max-width: 320px;
    margin: 0 auto;
}

.onboarding-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 25px 25px;
}

.onboarding-progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(160, 110, 162, 0.15);
    color: #A06EA2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.onboarding-progress-step.is-active {
    background: #A06EA2;
    color: #fff;
    box-shadow: 0 6px 16px rgba(160, 110, 162, 0.3);
}

.onboarding-progress-step.is-done {
    background: rgba(140, 179, 116, 0.25);
    color: #3D5E4B;
}

.onboarding-form {
    padding: 0 25px 40px;
}

.onboarding-hero {
    padding-top: 30px;
}

.onboarding-hero p {
    margin-bottom: 25px;
}

.onboarding-description {
    font-size: 16px;
    font-weight: 600;
    color: #4a2b4f;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.form-group-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.form-input-with-unit {
    position: relative;
}

.form-input-with-unit .form-input {
    padding-right: 60px;
}

.form-unit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #888;
}

.onboarding-checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: #f8f8f8;
    border-radius: 20px;
    border: 1px solid rgba(160, 110, 162, 0.12);
    font-size: 15px;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-card span {
    color: #444;
    font-weight: 500;
}

.checkbox-card-emoji {
    font-size: 20px;
}

.checkbox-card-text {
    color: #444;
    font-weight: 500;
    flex: 1;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-card-emoji,
.checkbox-card input[type="checkbox"]:checked ~ .checkbox-card-text {
    color: #A06EA2;
    font-weight: 600;
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-card-toggle {
    background: #A06EA2;
    border-color: #A06EA2;
    transform: scale(1.05);
}

.checkbox-card input[type="checkbox"]:checked ~ .checkbox-card-toggle i {
    color: #fff;
}

.checkbox-card:hover {
    border-color: rgba(160, 110, 162, 0.35);
    box-shadow: 0 10px 20px rgba(160, 110, 162, 0.12);
    transform: translateY(-1px);
}

.checkbox-card-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(160, 110, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #A06EA2;
    background: rgba(160, 110, 162, 0.15);
    transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
    margin-left: auto;
}

.checkbox-card-toggle i {
    pointer-events: none;
}

.onboarding-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
}

.onboarding-actions .submit-btn {
    margin-bottom: 0;
    width: auto;
    min-width: 200px;
    text-align: center;
}

.secondary-link {
    color: #A06EA2;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.secondary-link:hover {
    text-decoration: underline;
}

.picker-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f8f8;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(160, 110, 162, 0.15);
    width: auto;
    min-width: 220px;
    align-self: center;
}

.picker-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    appearance: none;
    text-align: center;
    text-align-last: center;
    padding: 6px 8px;
}

.picker-select:focus {
    outline: none;
}

.picker-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(160, 110, 162, 0.15);
    color: #A06EA2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.picker-nav i {
    pointer-events: none;
}

.picker-nav:hover {
    background: rgba(160, 110, 162, 0.3);
}

.picker-nav:active {
    transform: scale(0.92);
}

.success-message {
    text-align: center;
    padding: 30px 25px;
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #8CB374;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-message h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.success-message p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* Notifications page */
.notifications-container {
    padding: 0 25px 30px;
}

.notifications-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.saved-container {
    padding: 0 25px 30px;
}

.saved-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.notification-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(160, 110, 162, 0.05);
}

.notification-thumbnail {
    width: 120px;
    height: 75px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.notification-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.notification-item.new .notification-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(84, 44, 69, 0.4);
    z-index: 2;
}

.notification-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(160, 110, 162, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    z-index: 3;
}

.notification-content .notification-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(160, 110, 162, 0.9);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
}

.notification-item.new .notification-thumbnail::before {
    content: 'Novinka';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8CB374;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    z-index: 4;
    white-space: nowrap;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.notification-content-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.notification-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.notification-meta i {
    font-size: 10px;
}

.notification-date {
    font-size: 11px;
    color: #999;
}

.form-errors {
    background: rgba(160, 110, 162, 0.12);
    border: 1px solid rgba(160, 110, 162, 0.25);
    color: #542C45;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.form-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.form-errors li {
    margin-bottom: 6px;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.terms-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.6;
}

.terms-checkbox a,
.terms-checkbox a:visited {
    color: #A06EA2;
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.terms-checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(160, 110, 162, 0.4);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: white;
}

.terms-checkbox input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #A06EA2, #8CB374);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(160, 110, 162, 0.25);
}

.terms-checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.terms-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(160, 110, 162, 0.2);
}

.stories-empty {
    margin: 0 25px 25px;
    background: #f8f8f8;
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
}

.stories-empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(160, 110, 162, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A06EA2;
    font-size: 20px;
}

.stories-empty-text {
    max-width: 260px;
    line-height: 1.5;
}

        .calendar-posts-empty {
            margin: 25px 25px 0;
        }

        .upcoming-section {
            padding-top: 10px;
        }

        .upcoming-cards {
            display: grid;
            gap: 15px;
        }

        .upcoming-card {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            min-height: 210px;
            background: #333;
        }

        .upcoming-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .upcoming-card-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(160,110,162,0.18), rgba(140,179,116,0.18));
            color: rgba(84,44,69,0.5);
            font-size: 40px;
        }

        .upcoming-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(21,16,24,0.05) 20%, rgba(21,16,24,0.9) 100%);
        }

        .upcoming-card-info {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            color: white;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .upcoming-card-format {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 16px;
            background: rgba(160,110,162,0.9);
            font-size: 12px;
            font-weight: 600;
            width: fit-content;
        }

        .upcoming-card-title {
            font-size: 18px;
            line-height: 1.4;
            margin: 0;
        }

        .upcoming-card-date {
            font-size: 14px;
            opacity: 0.9;
            color: rgba(255,255,255,0.9);
        }

.trending-card-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 110, 162, 0.15), rgba(140, 179, 116, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(84, 44, 69, 0.45);
    font-size: 42px;
}
    
.format-description-extra {
    padding: 0 25px 20px;
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 16px; */
    text-align: center;
    line-height: 1.6;
}

.format-description-extra p {
    font-size: 16px;
    color: #555;
    text-align: center;
}

.list-posts-section {
    padding-top: 30px;
}

.list-format-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.list-format-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #A06EA2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.list-format-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.list-format-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.list-format-description p {
    margin: 0 0 12px 0;
}

.list-format-description p:last-child {
    margin-bottom: 0;
}

.profile-section {
    margin: 35px 25px;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(160, 110, 162, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-section .section-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 6px;
}

.profile-section .profile-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 18px 0 6px;
}

.profile-section .onboarding-description {
    text-align: center;
}

.profile-personal-wrapper {
    padding: 0 25px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-account-form .form-group {
    margin-bottom: 24px;
}

.profile-account-form .submit-btn {
    margin-bottom: 0;
}

.onboarding-radio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #f8f8f8;
    border-radius: 20px;
    border: 1px solid rgba(160, 110, 162, 0.12);
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.radio-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #A06EA2;
}

.radio-card-content {
    flex: 1;
}

.radio-card-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
}

.radio-card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.radio-card-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(160, 110, 162, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A06EA2;
    transition: background 0.2s ease, color 0.2s ease;
}

.radio-card input[type="radio"]:checked ~ .radio-card-content .radio-card-title {
    color: #A06EA2;
}

.radio-card input[type="radio"]:checked ~ .radio-card-indicator {
    background: #A06EA2;
    color: #fff;
}

.radio-card:hover {
    border-color: rgba(160, 110, 162, 0.35);
    box-shadow: 0 8px 18px rgba(160, 110, 162, 0.12);
    transform: translateY(-1px);
}
    
.welcome-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.welcome-modal .modal {
    max-width: 420px;
    padding: 36px 32px 30px;
    background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
    color: #fff;
    box-shadow: 0 26px 70px rgba(46, 20, 54, 0.4);
    border-radius: 28px;
}

.welcome-modal .modal-close {
    background: rgba(255, 255, 255, 0.12);
}

.welcome-modal .modal-close i {
    color: #ffffff;
}

.welcome-modal-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.welcome-modal-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffecfc;
}

.welcome-modal-icon-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
}

.welcome-modal-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.welcome-modal-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.welcome-modal-offer {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.welcome-modal-offer-main {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.welcome-modal-offer-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
}

.welcome-modal-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-size: 15px;
}

.welcome-modal-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.welcome-modal-benefits i {
    color: #7ee3d8;
    font-size: 15px;
}

.welcome-modal-btn {
    border: none;
    border-radius: 28px;
    background: linear-gradient(135deg, #8cb374, #62d6bd);
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding: 18px 26px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
}


.welcome-modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
}


/* Welcome modal compact overrides */
body .welcome-modal .modal {
    max-width: 420px !important;
    padding: 36px 32px 30px !important;
    border-radius: 28px !important;
    box-shadow: 0 26px 70px rgba(46, 20, 54, 0.4) !important;
}

body .welcome-modal-content {
    gap: 16px !important;
}

body .welcome-modal-icon {
    width: 68px !important;
    height: 68px !important;
    font-size: 28px !important;
}

body .welcome-modal-title {
    font-size: 26px !important;
}

body .welcome-modal-lead {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

body .welcome-modal-offer {
    padding: 14px 16px !important;
    gap: 4px !important;
}

body .welcome-modal-offer-main {
    font-size: 17px !important;
}

body .welcome-modal-offer-sub {
    font-size: 15px !important;
}

body .welcome-modal-benefits {
    gap: 8px !important;
    font-size: 15px !important;
}

body .welcome-modal-benefits li {
    gap: 8px !important;
}

body .welcome-modal-btn {
    color: #ffffff !important;
    font-size: 18px !important;
    padding: 18px 26px !important;
    border-radius: 28px !important;
    min-height: 58px !important;
}

@media (max-width: 480px) {
    body .welcome-modal .modal {
        width: 92% !important;
        padding: 28px 24px 24px !important;
        border-radius: 22px !important;
    }

    body .welcome-modal-icon {
        width: 58px !important;
        height: 58px !important;
        font-size: 24px !important;
    }

    body .welcome-modal-title {
        font-size: 24px !important;
    }

    body .welcome-modal-lead,
    body .welcome-modal-offer-sub {
        font-size: 14px !important;
    }

    body .welcome-modal-offer-main {
        font-size: 16px !important;
    }

    body .welcome-modal-benefits li {
        font-size: 14px !important;
    }

    body .welcome-modal-btn {
        color: #ffffff !important;
        font-size: 17px !important;
        padding: 16px 22px !important;
        min-height: 52px !important;
        border-radius: 26px !important;
    }
}

@media (max-width: 480px) {
    .welcome-modal .modal {
        width: 92%;
        padding: 28px 24px 24px;
        border-radius: 22px;
    }

    .welcome-modal-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .welcome-modal-title {
        font-size: 24px;
    }

    .welcome-modal-lead,
    .welcome-modal-offer-sub {
        font-size: 14px;
    }

    .welcome-modal-offer-main {
        font-size: 16px;
    }

    .welcome-modal-benefits li {
        font-size: 14px;
    }

    .welcome-modal-btn {
        border: none;
        border-radius: 26px;
        background: linear-gradient(135deg, #8cb374, #62d6bd);
        color: #ffffff;
        font-weight: 700;
        font-size: 17px;
        line-height: 1;
        padding: 16px 22px;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
            justify-content: center;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 18px 38px rgba(11, 39, 28, 0.26);
    }

}

.modal-text {
    font-size: 16px;
    color: #666;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow-y: auto;
    padding-right: 10px;
    flex: 1 1 auto;
}

.modal-text .terms,
.modal-text .privacy-policy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #43354d;
}

.modal-text .terms h1,
.modal-text .privacy-policy h1 {
    font-size: 24px;
    font-weight: 700;
    color: #3a214d;
    margin: 0;
}

.modal-text .terms h2,
.modal-text .terms h3,
.modal-text .privacy-policy h2,
.modal-text .privacy-policy h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #4f2e65;
}

.modal-text .terms h4,
.modal-text .privacy-policy h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #63387b;
}

.modal-text .terms h5,
.modal-text .privacy-policy h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    color: #6b4c7d;
}

.modal-text .terms p,
.modal-text .privacy-policy p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.7;
}

.modal-text .terms p + p,
.modal-text .privacy-policy p + p {
    margin-top: 6px;
}

.modal-text .terms ul,
.modal-text .privacy-policy ul {
    margin: 0;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4a4a4a;
}

.modal-text .terms li,
.modal-text .privacy-policy li {
    position: relative;
    line-height: 1.6;
}

.modal-text .terms a,
.modal-text .privacy-policy a {
    color: #8a4f99;
    font-weight: 600;
    text-decoration: underline;
}

.modal-text strong {
    color: #3f2255;
}

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .welcome-modal-offer-main {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .welcome-modal-offer-sub {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.92);
        }

        .welcome-modal-benefits {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-align: left;
        }

        .welcome-modal-benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .welcome-modal-benefits i {
            color: #7ee3d8;
            font-size: 16px;
        }

        .welcome-modal-btn {
            border: none;
            border-radius: 28px;
            background: linear-gradient(135deg, #8cb374, #62d6bd);
            color: #17342b;
            font-weight: 700;
            font-size: 18px;
            line-height: 1;
            padding: 18px 26px;
            min-height: 58px;
            display: inline-flex;
            align-items: center;
                    justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 20px 44px rgba(11, 39, 28, 0.28);
        }


        .welcome-modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 52px rgba(11, 39, 28, 0.32);
        }


        .modal-text {
            font-size: 16px;
            color: #666;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 20px;
            overflow-y: auto;
            padding-right: 10px;
            flex: 1 1 auto;
        }

        .modal-text .terms,
        .modal-text .privacy-policy {
            display: flex;
            flex-direction: column;
            gap: 18px;
            color: #43354d;
        }

        .modal-text .terms h1,
        .modal-text .privacy-policy h1 {
            font-size: 24px;
            font-weight: 700;
            color: #3a214d;
            margin: 0;
        }

        .modal-text .terms h2,
        .modal-text .terms h3,
        .modal-text .privacy-policy h2,
        .modal-text .privacy-policy h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #4f2e65;
        }

        .modal-text .terms h4,
        .modal-text .privacy-policy h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #63387b;
        }

        .modal-text .terms h5,
        .modal-text .privacy-policy h5 {
            font-size: 15px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            color: #6b4c7d;
        }

        .modal-text .terms p,
        .modal-text .privacy-policy p {
            margin: 0;
            color: #4a4a4a;
            line-height: 1.7;
        }

        .modal-text .terms p + p,
        .modal-text .privacy-policy p + p {
            margin-top: 6px;
        }

        .modal-text .terms ul,
        .modal-text .privacy-policy ul {
            margin: 0;
            padding-left: 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: #4a4a4a;
        }

        .modal-text .terms li,
        .modal-text .privacy-policy li {
            position: relative;
            line-height: 1.6;
        }

        .modal-text .terms a,
        .modal-text .privacy-policy a {
            color: #8a4f99;
            font-weight: 600;
            text-decoration: underline;
        }

        .modal-text strong {
            color: #3f2255;
        }

        .modal-users .unlock-badge i {
            font-size: 12px;
            color: white;
        }

        .welcome-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .welcome-modal .modal {
            max-width: 520px;
            padding: 48px 44px;
            background: radial-gradient(circle at top left, rgba(160, 110, 162, 0.95), rgba(83, 46, 94, 0.95)), #542C45;
            color: #fff;
            box-shadow: 0 30px 80px rgba(46, 20, 54, 0.45);
            border-radius: 32px;
        }

        .welcome-modal .modal-close {
            background: rgba(255, 255, 255, 0.12);
        }

        .welcome-modal .modal-close i {
            color: #ffffff;
        }

        .welcome-modal-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .welcome-modal-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #ffecfc;
        }

        .welcome-modal-title {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            color: #ffffff;
            margin: 0;
        }

        .welcome-modal-lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            line-height: 1.7;
        }

        .welcome-modal-offer {
            background: rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

/* Welcome modal final overrides */
.welcome-modal-icon-text {
    font-size: 40px !important;
    line-height: 1 !important;
}

.welcome-modal-title,
body .welcome-modal-title {
    font-size: 26px !important;
}

.welcome-modal-lead,
body .welcome-modal-lead {
    font-size: 16px !important;
}

.welcome-modal-offer-main,
body .welcome-modal-offer-main {
    font-size: 17px !important;
}

.welcome-modal-offer-sub,
body .welcome-modal-offer-sub {
    font-size: 15px !important;
}

.welcome-modal-benefits,
body .welcome-modal-benefits,
.welcome-modal-benefits li,
body .welcome-modal-benefits li {
    font-size: 15px !important;
}

.welcome-modal-btn,
body .welcome-modal-btn {
    color: #ffffff !important;
    font-size: 19px !important;
}

@media (max-width: 480px) {
    .welcome-modal-icon-text {
        font-size: 34px !important;
    }

    .welcome-modal-title,
    body .welcome-modal-title {
        font-size: 24px !important;
    }

    .welcome-modal-lead,
    body .welcome-modal-lead,
    .welcome-modal-offer-sub,
    body .welcome-modal-offer-sub {
        font-size: 14px !important;
    }

    .welcome-modal-offer-main,
    body .welcome-modal-offer-main {
        font-size: 16px !important;
    }

    .welcome-modal-benefits,
    body .welcome-modal-benefits,
    .welcome-modal-benefits li,
    body .welcome-modal-benefits li {
        font-size: 14px !important;
    }

    .welcome-modal-btn,
    body .welcome-modal-btn {
        font-size: 17px !important;
    }
}

/* About Us Page */
.about-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #2f2340;
    margin-bottom: 20px;
    padding-top: 20px;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.team-member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 24px;
    font-weight: 600;
    color: #2f2340;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 16px;
    font-weight: 500;
    color: #A06EA2;
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.team-social-link:hover {
    background: #A06EA2;
    color: white;
    transform: scale(1.1);
}

.team-social-link i {
    font-size: 18px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .about-intro-text {
        font-size: 20px;
    }
}
