/**
 * Profile Tab Styles
 * ✅ Extracted from inline styles in profile.js
 * ✅ Consistent with MoviEase design system
 * ✅ Responsive design
 */

/* ==========================================================================
   Profile Container & Layout
   ========================================================================== */

.profile-scroll-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.profile-container {
    padding: 1.5rem 1rem 6rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Banner Ad
   ========================================================================== */

.profile-banner-ad {
    width: 100%;
    min-height: 60px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    border-radius: 0.5rem;
}

/* ==========================================================================
   Profile Section Cards
   ========================================================================== */

.profile-section {
    background: linear-gradient(135deg, rgba(166, 192, 221, 0.2), rgba(139, 163, 184, 0.2));
    border: 1px solid rgba(166, 192, 221, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.profile-section--centered {
    text-align: center;
}

.profile-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FDFAB0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.profile-section-title--left {
    justify-content: flex-start;
}

/* ==========================================================================
   Avatar Upload Section
   ========================================================================== */

/* Horizontal profile header row */
.profile-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-info-text {
    flex: 1;
    min-width: 0;
}

.avatar-container {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.avatar-container--compact {
    width: 56px;
    height: 56px;
    margin: 0;
    flex-shrink: 0;
}

.avatar-container:hover {
    transform: scale(1.05);
}

.avatar-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A6C0DD, #8ba3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #18183A;
    box-shadow: 0 4px 12px rgba(166, 192, 221, 0.3);
    overflow: hidden;
}

.avatar-image--compact {
    font-size: 1.25rem;
}

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

.avatar-camera-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: 2px solid #18183A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.avatar-camera-icon--compact {
    width: 22px;
    height: 22px;
    font-size: 0.6875rem;
}

.avatar-camera-icon:hover {
    transform: scale(1.1);
}

.profile-name {
    color: #FDFAB0;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.profile-name--left {
    text-align: left;
}

.profile-email {
    color: #A6C0DD;
    font-size: 0.6875rem;
    margin: 0.125rem 0 0 0;
    opacity: 0.7;
}

.profile-swipe-count {
    color: #F5C518;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

/* ==========================================================================
   Friend Code Section
   ========================================================================== */

.friend-code-box {
    background: rgba(166, 192, 221, 0.15);
    border: 1px solid rgba(166, 192, 221, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.friend-code-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #A6C0DD;
    text-transform: uppercase;
    margin: 0 0 0.75rem 0;
}

.friend-code-input-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.friend-code-input {
    flex: 1;
    padding: 0.875rem;
    background: rgba(166, 192, 221, 0.1);
    border: 1px solid rgba(166, 192, 221, 0.3);
    border-radius: 0.75rem;
    color: #FDFAB0;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}

.friend-code-input:focus {
    outline: none;
    border-color: #A6C0DD;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #A6C0DD, #8ba3b8);
    border: none;
    border-radius: 0.75rem;
    color: #18183A;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(166, 192, 221, 0.3);
}

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

.btn-secondary {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #A6C0DD, #8ba3b8);
    border: none;
    border-radius: 0.75rem;
    color: #18183A;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(166, 192, 221, 0.4);
}

.btn-outline {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(166, 192, 221, 0.3);
    border-radius: 0.5rem;
    color: #A6C0DD;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(166, 192, 221, 0.1);
}

.btn-danger {
    padding: 0.875rem;
    background: transparent;
    border: 2px solid #ef4444;
    border-radius: 0.75rem;
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(166, 192, 221, 0.2);
    border: none;
    color: #FDFAB0;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: rgba(166, 192, 221, 0.3);
}

/* ==========================================================================
   Friends List
   ========================================================================== */

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.friend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(166, 192, 221, 0.1);
    border: 1px solid rgba(166, 192, 221, 0.2);
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.friend-item:hover {
    background: rgba(166, 192, 221, 0.15);
}

.friend-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A6C0DD, #8ba3b8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #18183A;
    overflow: hidden;
    flex-shrink: 0;
}

.friend-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.friend-info {
    flex: 1;
    min-width: 0;
}

.friend-name {
    color: #FDFAB0;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.friend-status {
    color: #A6C0DD;
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.8;
}

.friend-actions {
    display: flex;
    gap: 0.5rem;
}

/* ==========================================================================
   Region & Platform Selection
   ========================================================================== */

.region-grid,
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.region-item,
.platform-item {
    padding: 0.75rem;
    background: rgba(166, 192, 221, 0.1);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    color: #A6C0DD;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.region-item:hover,
.platform-item:hover {
    background: rgba(166, 192, 221, 0.2);
}

.region-item--selected,
.platform-item--selected {
    background: rgba(166, 192, 221, 0.25);
    border-color: #A6C0DD;
    color: #FDFAB0;
}

.platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ==========================================================================
   Trigger Warnings Toggle
   ========================================================================== */

.trigger-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(166, 192, 221, 0.1);
}

.trigger-category:last-child {
    border-bottom: none;
}

.trigger-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #A6C0DD;
    font-size: 0.875rem;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    /* Background and knob handled by .toggle-slider in profile.js inline styles */
    cursor: pointer;
    flex-shrink: 0;
}

/* Hide the checkbox */
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* ✅ NEW: Small toggle switch for compact layouts (platforms, trigger warnings) */
.toggle-switch-small {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle-switch-small input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider-small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(166, 192, 221, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.toggle-slider-small::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch-small input:checked + .toggle-slider-small {
    background: linear-gradient(135deg, #DFDFB0, #F4E8C1);
}

.toggle-switch-small input:checked + .toggle-slider-small::before {
    transform: translateX(16px);
    background-color: #18183A;
}

/* ==========================================================================
   Account Section
   ========================================================================== */

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.account-info {
    padding: 0.75rem;
    background: rgba(166, 192, 221, 0.05);
    border-radius: 0.5rem;
    color: #A6C0DD;
    font-size: 0.75rem;
    text-align: center;
}

.account-link {
    color: #A6C0DD;
    text-decoration: underline;
    cursor: pointer;
}

.account-link:hover {
    color: #FDFAB0;
}

/* ==========================================================================
   Subscription Section
   ========================================================================== */

.subscription-card {
    background: linear-gradient(135deg, rgba(166, 192, 221, 0.25), rgba(139, 163, 184, 0.15));
    border: 2px solid rgba(166, 192, 221, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.subscription-card--premium {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.5);
}

.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(166, 192, 221, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FDFAB0;
    margin-bottom: 1rem;
}

.subscription-badge--premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #18183A;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.subscription-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #A6C0DD;
    font-size: 0.875rem;
}

.subscription-feature::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-overlay--visible {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #18183A 0%, #0f0f26 100%);
    border: 2px solid rgba(166, 192, 221, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FDFAB0;
    margin: 0;
}

/* ==========================================================================
   Status Messages
   ========================================================================== */

.status-message {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.status-message--success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.status-message--error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.status-message--info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(166, 192, 221, 0.3);
    border-radius: 50%;
    border-top-color: #A6C0DD;
    animation: spin 0.8s linear infinite;
}

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

.skeleton {
    background: linear-gradient(90deg, 
        rgba(166, 192, 221, 0.1) 25%, 
        rgba(166, 192, 221, 0.2) 50%, 
        rgba(166, 192, 221, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.5rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   Lazy Loading Styles
   ========================================================================== */

.lazy {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lazy-loaded {
    opacity: 1;
}

.lazy-loading {
    opacity: 0.7;
}

.lazy-error {
    opacity: 0.5;
}

/* ==========================================================================
   Virtual Scroll Styles
   ========================================================================== */

.virtual-scroll-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.virtual-scroll-content {
    position: relative;
    width: 100%;
}

.virtual-scroll-item {
    position: absolute;
    transition: transform 0.15s ease;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 480px) {
    .profile-container {
        padding: 1rem 0.75rem 5rem;
    }
    
    .profile-section {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .region-grid,
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .friend-code-input-group {
        flex-direction: column;
    }
    
    .friend-code-input {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .profile-container {
        padding: 2rem 1.5rem 4rem;
    }
    
    .profile-section {
        padding: 2rem;
    }
    
    .region-grid,
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Add Friend Modal - NEW STYLES
   ========================================================================== */

.add-friend-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.add-friend-modal-overlay--visible {
    display: flex;
}

.add-friend-modal-content {
    background: linear-gradient(180deg, #18183A 0%, #0f0f26 100%);
    border: 2px solid rgba(166, 192, 221, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.add-friend-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.add-friend-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FDFAB0;
    margin: 0;
}

.add-friend-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(166, 192, 221, 0.2);
    border: none;
    color: #FDFAB0;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.add-friend-modal-close:hover {
    background: rgba(166, 192, 221, 0.3);
}

/* ==========================================================================
   Subscription Section - PREMIUM STYLES
   ========================================================================== */

.subscription-section {
    background: linear-gradient(135deg, rgba(166, 192, 221, 0.2), rgba(139, 163, 184, 0.2));
    border: 1px solid rgba(176, 212, 227, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.subscription-section--premium {
    background: linear-gradient(135deg, rgba(176, 212, 227, 0.2), rgba(244, 232, 193, 0.2));
    border-color: rgba(176, 212, 227, 0.4);
    position: relative;
    overflow: hidden;
}

.subscription-premium-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #18183A;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 0.2rem 1rem 0.2rem 0.75rem;
    border-radius: 0 0 0 0.5rem;
    transform: none;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    letter-spacing: 0.05em;
    z-index: 2;
}

.subscription-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.subscription-icon {
    font-size: 2rem;
}

.subscription-info {
    flex: 1;
}

.subscription-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FDFAB0;
    margin: 0 0 0.125rem 0;
}

.subscription-description {
    color: rgba(176, 212, 227, 0.8);
    font-size: 0.75rem;
    margin: 0;
}

.subscription-benefits {
    background: rgba(176, 212, 227, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.subscription-benefits--premium {
    background: rgba(176, 212, 227, 0.15);
    margin-bottom: 0.75rem;
}

.subscription-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(176, 212, 227, 0.9);
}

.subscription-benefits-grid--compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 0.75rem;
    gap: 0.375rem;
}

.subscription-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.subscription-benefit-item--compact {
    gap: 0.375rem;
    align-items: center;
}

.subscription-benefit-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.subscription-benefit-icon--compact {
    font-size: 1rem;
}

.subscription-benefit-title {
    font-weight: 700;
    color: #FDFAB0;
    margin-bottom: 0.25rem;
}

.subscription-benefit-desc {
    font-size: 0.8125rem;
    color: rgba(176, 212, 227, 0.8);
}

.btn-upgrade {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-manage-subscription {
    width: 100%;
    padding: 0.6rem;
    background: rgba(176, 212, 227, 0.15);
    border: 1px solid rgba(176, 212, 227, 0.25);
    border-radius: 0.5rem;
    color: #b0d4e3;
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-manage-subscription:hover {
    background: rgba(176, 212, 227, 0.25);
    border-color: rgba(176, 212, 227, 0.4);
}

.subscription-footer {
    text-align: center;
    color: rgba(176, 212, 227, 0.5);
    font-size: 0.8125rem;
    margin: 1rem 0 0 0;
}

/* ==========================================================================
   Premium Modal - NEW STYLES
   ========================================================================== */

.premium-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.premium-modal-content {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(176, 212, 227, 0.2);
    position: relative;
}

.premium-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(176, 212, 227, 0.1);
    border: 1px solid rgba(176, 212, 227, 0.2);
    border-radius: 50%;
    color: rgba(176, 212, 227, 0.8);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.premium-modal-close:hover {
    background: rgba(176, 212, 227, 0.2);
}

.premium-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.premium-modal-title {
    color: #FDFAB0;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.premium-modal-subtitle {
    color: rgba(176, 212, 227, 0.8);
    font-size: 1rem;
    margin: 0;
}

.premium-modal-benefits {
    background: rgba(176, 212, 227, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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