/**
 * Stripe Subscription Styles
 * VAST Design System - Web Frontend
 * 
 * Color Palette:
 * - Primary: #FFD700 (VAST Gold)
 * - Background: #1a1a1a (Dark)
 * - Card: #2a2a2a
 * - Text: #ffffff, #cccccc
 * - Accent: #00C851 (Success), #ff4444 (Error)
 */

/* =========================================
   HEADER BAR
   ========================================= */
#vast_header_bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    pointer-events: none;
}

#vast_header_bar > * {
    pointer-events: auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 28px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.header-logo:hover {
    opacity: 1;
}

.header-channel-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================================
   SUBSCRIBE BUTTON (Header)
   ========================================= */
#subscribe-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

#subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

#subscribe-btn:active {
    transform: translateY(0);
}

#subscribe-btn.subscribed {
    background: linear-gradient(135deg, #00C851 0%, #007E33 100%);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 200, 81, 0.3);
}

#subscribe-btn.subscribed:hover {
    box-shadow: 0 6px 20px rgba(0, 200, 81, 0.5);
}

/* =========================================
   LOGIN BUTTON OVERRIDE (Header)
   ========================================= */
#header_login_wrap {
    position: static !important;
    z-index: auto !important;
}

#header_login_wrap .login_btn {
    padding: 0 !important;
}

#header_login_wrap .login_btn_inner {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    height: auto !important;
    padding: 8px 20px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#header_login_wrap .login_btn_inner:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

#header_login_wrap .login_btn span {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    margin: 0 !important;
    height: auto !important;
    line-height: 1.4 !important;
}

/* Logged in profile state */
#header_login_wrap .logout-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

#header_login_wrap .logout-wrap:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

#header_login_wrap .logout-wrap span {
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    padding: 0 !important;
}

#header_login_wrap .logout_img {
    width: 18px !important;
    height: 18px !important;
    opacity: 0.8;
}

/* =========================================
   TIER MODAL - PREMIUM DESIGN
   ========================================= */
#tier_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    overflow-y: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#tier_modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    animation: modalFadeIn 0.3s ease-out;
}

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

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

#tier_modal .tier-content {
    background: linear-gradient(180deg, #1c1c22 0%, #141418 100%);
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: modalSlideIn 0.4s ease-out;
}

/* Custom scrollbar for modal */
#tier_modal .tier-content::-webkit-scrollbar {
    width: 6px;
}

#tier_modal .tier-content::-webkit-scrollbar-track {
    background: transparent;
}

#tier_modal .tier-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 3px;
}

#tier_modal .tier-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* =========================================
   MODAL HEADER - PREMIUM
   ========================================= */
.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-channel-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tier-channel-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(#1a1a1a, #1a1a1a) padding-box,
                linear-gradient(135deg, #FFD700, #FF9500, #FFD700) border-box;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
}

.tier-channel-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
    letter-spacing: -0.3px;
}

.tier-header-subtitle {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.close-modal {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: rotate(90deg);
}

/* =========================================
   TIER CARDS CONTAINER - PREMIUM
   ========================================= */
.tier-cards-container {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.tier-cards-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card {
    flex: 0 0 100%;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   TIER CARD - PREMIUM DESIGN
   ========================================= */
.tier-card-inner {
    margin: 20px;
    background: linear-gradient(180deg, #252530 0%, #1e1e25 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tier-card-inner:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.tier-card .tier-cover {
    height: 140px;
    background: linear-gradient(135deg, #2a2a35 0%, #1a1a22 100%);
    position: relative;
    overflow: hidden;
}

.tier-card .tier-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.tier-card .tier-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tier-card-inner:hover .tier-cover img {
    transform: scale(1.05);
}

.tier-cover-placeholder {
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #FF4500 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-cover-placeholder::after {
    content: '★';
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Tier badge - floating on cover */
.tier-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-badge.popular {
    background: linear-gradient(135deg, #FFD700 0%, #FF9500 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.tier-badge.subscribed {
    background: linear-gradient(135deg, #00C851 0%, #00963D 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
}

.tier-current-badge {
    background: linear-gradient(135deg, #00C851 0%, #00963D 100%);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin: -18px 20px 0;
    position: relative;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
}

/* Tier info section */
.tier-info {
    padding: 24px;
    background: transparent;
}

.tier-name {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
    letter-spacing: -0.5px;
}

.tier-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.tier-description {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
    padding-left: 14px;
}

/* =========================================
   TIER BENEFITS - PREMIUM
   ========================================= */
.tier-benefits {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    margin-top: 4px;
}

.benefits-header {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-check {
    color: #FFD700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* =========================================
   TIER ACTION BUTTONS - PREMIUM
   ========================================= */
.tier-action {
    padding: 20px 24px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.03) 100%);
}

.tier-join-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FF9500 50%, #FF6B00 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
    box-shadow: 
        0 6px 20px rgba(255, 149, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.tier-join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tier-join-btn:hover::before {
    left: 100%;
}

.tier-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 149, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tier-join-btn:active {
    transform: translateY(-1px);
}

.tier-join-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tier-subscribed-label {
    text-align: center;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tier-subscribed-label .check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00C851 0%, #00963D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.tier-subscribed-label span {
    color: #00C851;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =========================================
   TIER NAVIGATION - PREMIUM
   ========================================= */
.tier-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tier-nav:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.tier-nav-prev {
    left: -22px;
}

.tier-nav-next {
    right: -22px;
}

.tier-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 8px;
}

.tier-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tier-dot:hover {
    background: rgba(255, 215, 0, 0.3);
}

.tier-dot.active {
    background: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

/* =========================================
   FOLLOW SECTION - PREMIUM
   ========================================= */
.tier-follow-section {
    padding: 16px 24px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.tier-follow-section .or-divider {
    color: #555;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tier-follow-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #999;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif;
}

.tier-follow-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
}

.tier-follow-btn.following {
    border-color: #00C851;
    color: #00C851;
    background: rgba(0, 200, 81, 0.08);
}

/* =========================================
   LOADING & ERROR STATES - PREMIUM
   ========================================= */
.tier-loading {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

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

.tier-loading p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.tier-error {
    text-align: center;
    padding: 60px 30px;
}

.tier-error-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tier-error p {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 14px;
}

.tier-error .retry-btn {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tier-error .retry-btn:hover {
    background: #ff6b6b;
    color: #1a1a1a;
}

.tier-empty {
    text-align: center;
    padding: 60px 30px;
}

.tier-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.tier-empty p {
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

/* =========================================
   LOCKED CONTENT OVERLAY - ENHANCED
   Override existing style.css rules
   ========================================= */

/* Override the fixed width/height from style.css */
#embedGridSlider .slide_div.members_only_content_inside .paying_member_only_unlock_content,
.mobile_slide .paying_member_only_unlock_content,
.paying_member_only_unlock_content {
    width: auto !important;
    height: auto !important;
    max-width: 320px !important;
    min-height: 180px !important;
    background: linear-gradient(180deg, rgba(15, 15, 20, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px 20px !important;
    text-align: center !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 999 !important;
}

/* Override anchor styles from style.css */
#embedGridSlider .slide_div.members_only_content_inside .paying_member_only_unlock_content a,
.mobile_slide .paying_member_only_unlock_content a,
.paying_member_only_unlock_content a {
    width: auto !important;
    height: auto !important;
    position: static !important;
    margin: 0 !important;
}

.paying_member_only_unlock_content .lock-svg-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 12px !important;
    opacity: 0.95;
    filter: drop-shadow(0 3px 8px rgba(255, 215, 0, 0.4));
    flex-shrink: 0;
}

.paying_member_only_unlock_content .lock-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(255, 215, 0, 0.25);
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif !important;
    line-height: 1.3 !important;
}

.paying_member_only_unlock_content .lock-subtitle {
    font-size: 12px !important;
    color: #a0a0a0 !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif !important;
}

.paying_member_only_unlock_content .unlock-subscribe-btn,
.paying_member_only_unlock_content .unlock-login-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #FFD700 0%, #FF9500 50%, #FF6B00 100%) !important;
    color: #1a1a1a !important;
    padding: 12px 24px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.45) !important;
    border: none !important;
    font-family: 'HelveticaNeueW15-45Ligh', Helvetica, Arial, sans-serif !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.paying_member_only_unlock_content .unlock-subscribe-btn:hover,
.paying_member_only_unlock_content .unlock-login-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 24px rgba(255, 149, 0, 0.55) !important;
    background: linear-gradient(135deg, #FFE034 0%, #FFA500 50%, #FF7B00 100%) !important;
}

.paying_member_only_unlock_content .unlock-subscribe-btn:active,
.paying_member_only_unlock_content .unlock-login-btn:active {
    transform: translateY(0) scale(1) !important;
}

/* Hide the old img-based button */
.paying_member_only_unlock_content a img {
    display: none !important;
}

/* Hide old top_box and bottom_box elements */
.paying_member_only_unlock_content .top_box,
.paying_member_only_unlock_content .bottom_box {
    display: none !important;
}

/* Mobile responsive for locked overlay */
@media only screen and (max-width: 767px) {
    #embedGridSlider .slide_div.members_only_content_inside .paying_member_only_unlock_content,
    .isMobile #embedGridSlider .slide_div.members_only_content_inside .paying_member_only_unlock_content,
    .mobile_slide .paying_member_only_unlock_content,
    .paying_member_only_unlock_content {
        max-width: 260px !important;
        min-height: 140px !important;
        padding: 18px 16px !important;
        border-radius: 10px !important;
    }
    
    .paying_member_only_unlock_content .lock-svg-icon {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 10px !important;
    }
    
    .paying_member_only_unlock_content .lock-title {
        font-size: 12px !important;
        letter-spacing: 1px !important;
        margin-bottom: 4px !important;
    }
    
    .paying_member_only_unlock_content .lock-subtitle {
        font-size: 10px !important;
        margin-bottom: 12px !important;
    }
    
    .paying_member_only_unlock_content .unlock-subscribe-btn,
    .paying_member_only_unlock_content .unlock-login-btn {
        padding: 10px 18px !important;
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
    }
}

/* Extra small screens */
@media only screen and (max-width: 480px) {
    #embedGridSlider .slide_div.members_only_content_inside .paying_member_only_unlock_content,
    .paying_member_only_unlock_content {
        max-width: 220px !important;
        min-height: 120px !important;
        padding: 14px 12px !important;
    }
    
    .paying_member_only_unlock_content .lock-svg-icon {
        width: 28px !important;
        height: 28px !important;
        margin-bottom: 8px !important;
    }
    
    .paying_member_only_unlock_content .lock-title {
        font-size: 11px !important;
    }
    
    .paying_member_only_unlock_content .lock-subtitle {
        font-size: 9px !important;
        margin-bottom: 10px !important;
    }
    
    .paying_member_only_unlock_content .unlock-subscribe-btn,
    .paying_member_only_unlock_content .unlock-login-btn {
        padding: 8px 14px !important;
        font-size: 9px !important;
    }
}

/* =========================================
   MOBILE RESPONSIVE - PREMIUM
   ========================================= */
@media only screen and (max-width: 767px) {
    /* Header mobile */
    #vast_header_bar {
        height: 50px;
        padding: 0 10px;
    }
    
    .header-channel-name {
        display: none;
    }
    
    .header-logo {
        height: 22px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    #subscribe-btn {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    #header_login_wrap .login_btn_inner {
        padding: 6px 12px !important;
    }
    
    #header_login_wrap .login_btn span {
        font-size: 11px !important;
    }
    
    #header_login_wrap .logout-wrap {
        padding: 5px 10px;
    }
    
    #header_login_wrap .logout-wrap span {
        font-size: 10px !important;
    }
    
    /* Tier modal mobile - Premium */
    #tier_modal.active {
        padding: 15px 12px;
        align-items: flex-start;
    }
    
    #tier_modal .tier-content {
        max-height: calc(100vh - 30px);
        border-radius: 16px;
    }
    
    .tier-header {
        padding: 18px 18px 16px;
    }
    
    .tier-channel-avatar {
        width: 42px;
        height: 42px;
    }
    
    .tier-channel-name {
        font-size: 17px;
    }
    
    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .tier-card-inner {
        margin: 16px;
        border-radius: 14px;
    }
    
    .tier-card .tier-cover {
        height: 110px;
    }
    
    .tier-info {
        padding: 18px;
    }
    
    .tier-name {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 34px;
    }
    
    .price-period {
        font-size: 13px;
    }
    
    .tier-description {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .tier-benefits {
        padding: 14px;
    }
    
    .benefit-item {
        font-size: 12px;
    }
    
    .tier-action {
        padding: 16px 18px 20px;
    }
    
    .tier-join-btn {
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .tier-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tier-nav-prev {
        left: -18px;
    }
    
    .tier-nav-next {
        right: -18px;
    }
    
    .tier-follow-section {
        padding: 14px 18px 20px;
    }
    
    .tier-follow-btn {
        padding: 12px 28px;
        font-size: 12px;
    }
}

/* Extra small devices */
@media only screen and (max-width: 480px) {
    #subscribe-btn {
        padding: 6px 10px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    #header_login_wrap .login_btn_inner {
        padding: 5px 10px !important;
    }
    
    #header_login_wrap .login_btn span {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }
}

