/**
 * Restriction Modal Styles
 * Модальное окно для ограничения доступа
 */

.restriction-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.restriction-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.restriction-modal-content {
    position: relative;
    background: #040404;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    width: 520px;
    max-width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: restrictionModalIn 0.3s ease-out;
}

.restriction-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 123, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 140, 0, 0.03) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

@keyframes restrictionModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Header */
.restriction-modal-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.restriction-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.restriction-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 18px;
}

.restriction-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

/* Body */
.restriction-modal-body-wrapper {
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.restriction-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.restriction-video iframe,
.restriction-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Для видео которые нужно показать полностью (left tabs market scan) */
.restriction-video.video-contain {
    aspect-ratio: auto;
    max-height: 280px;
}

.restriction-video.video-contain video {
    object-fit: contain;
    max-height: 280px;
}

.restriction-modal-body {
    text-align: left;
    margin-bottom: 8px;
}

.restriction-modal-body .message-primary {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-align: center;
}

.restriction-modal-body .message-secondary,
.restriction-modal-body p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 12px 0;
    text-align: left;
}

/* Feature checklist in restriction modals */
.restriction-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.restriction-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 5px 0;
}

.restriction-features li::before {
    content: '\e5ca';
    font-family: 'Material Symbols Rounded';
    font-size: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.restriction-modal-body strong {
    color: #fff;
}

/* Footer / Actions */
.restriction-modal-actions {
    padding: 24px;
    position: relative;
    z-index: 1;
}

/* Trial Button - OLD STYLE (commented out)
.restriction-modal-actions .btn-trial-old {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #0061ff 0%, #2563eb 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.restriction-modal-actions .btn-trial-old .sparkle-icon {
    flex-shrink: 0;
}

.restriction-modal-actions .btn-trial-old:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.4);
}

.restriction-modal-actions .btn-trial-old:active {
    transform: translateY(0) scale(0.98);
}
*/

/* Trial Button - NEW ANIMATED STAR STYLE */
@keyframes btn-trial-border-glow-translate {
    0% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@keyframes btn-trial-border-glow-scale {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.5); }
}

@keyframes btn-trial-star-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes btn-trial-star-shine {
    0% { opacity: 0; }
    50% { opacity: 0.3; }
    100% { opacity: 0; }
}

.restriction-modal-actions .btn-trial {
    position: relative;
    width: 100%;
    background: #262626;
    border-radius: 9999px;
    padding: 1px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.restriction-modal-actions .btn-trial .glow-static {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    overflow: hidden;
    pointer-events: none;
}

.restriction-modal-actions .btn-trial .glow-static span {
    display: block;
    width: 96px;
    height: 96px;
    transform: translate(-50%, -33%);
    filter: blur(24px);
    background: linear-gradient(135deg, rgb(122, 105, 249), rgb(242, 99, 120), rgb(245, 131, 63));
}

.restriction-modal-actions .btn-trial .glow-animated {
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: btn-trial-border-glow-translate 10s ease-in-out infinite alternate;
}

.restriction-modal-actions .btn-trial .glow-animated span {
    display: block;
    height: 100%;
    width: 48px;
    filter: blur(24px);
    transform: translateX(-50%);
    border-radius: 9999px;
    background: linear-gradient(135deg, rgb(122, 105, 249), rgb(242, 99, 120), rgb(245, 131, 63));
    animation: btn-trial-border-glow-scale 10s ease-in-out infinite alternate;
}

.restriction-modal-actions .btn-trial .btn-trial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 9999px;
    padding: 12px 20px;
    width: 100%;
}

.restriction-modal-actions .btn-trial .star-container {
    position: relative;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restriction-modal-actions .btn-trial:hover .star-container {
    transform: scale(1.1);
}

.restriction-modal-actions .btn-trial .sparkle-icon {
    width: 20px;
    height: 20px;
}

.restriction-modal-actions .btn-trial .sparkle-icon .sparkle-path {
    transform-origin: center;
}

/* Sparkle animation on hover */
.restriction-modal-actions .btn-trial:hover .sparkle-icon .sparkle-path {
    animation: sparkle-path 1.5s linear infinite;
}

.restriction-modal-actions .btn-trial .sparkle-icon .sparkle-path:nth-child(2) {
    --scale_path_1: 1.2;
}

.restriction-modal-actions .btn-trial .sparkle-icon .sparkle-path:nth-child(3) {
    --scale_path_2: 1.2;
}

.restriction-modal-actions .btn-trial .sparkle-icon .sparkle-path:nth-child(4) {
    --scale_path_3: 1.2;
}

@keyframes sparkle-path {
    0%, 34%, 71%, 100% {
        transform: scale(1);
    }
    17% {
        transform: scale(var(--scale_path_1, 1));
    }
    49% {
        transform: scale(var(--scale_path_2, 1));
    }
    83% {
        transform: scale(var(--scale_path_3, 1));
    }
}


.restriction-modal-actions .btn-trial .btn-trial-text {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}


.restriction-modal-actions .btn-trial:hover .btn-trial-text {
    transform: scale(1.05);
}

/* Simple Divider */
.restriction-modal-actions .simple-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

/* Login Link */
.restriction-modal-actions .login-link {
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}


.restriction-modal-actions .login-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.restriction-modal-actions .login-link a:hover {
    color: #fff;
    text-decoration: none;
}

/* Upgrade Button (Primary) */
.restriction-modal-actions .btn-primary {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #0061ff 0%, #2563eb 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.restriction-modal-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.4);
}

.restriction-modal-actions .btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Divider */
.restriction-modal-actions .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.restriction-modal-actions .divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.restriction-modal-actions .divider-text {
    padding: 0 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Auth Buttons Row */
.restriction-modal-actions .auth-buttons {
    display: flex;
    gap: 12px;
}

.restriction-modal-actions .btn-auth {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.restriction-modal-actions .btn-auth:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.restriction-modal-actions .btn-auth svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Legacy button styles for backward compatibility */
.restriction-modal-actions .btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.restriction-modal-actions .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.restriction-modal-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Premium badge styles */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f7931a, #ffc107);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.premium-badge svg {
    width: 12px;
    height: 12px;
}

/* Locked feature indicator */
.feature-locked {
    position: relative;
    cursor: not-allowed;
}

.feature-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-locked .lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f7931a;
    font-size: 24px;
    z-index: 1;
}

/* Tab locked state */
.tab-locked {
    position: relative;
    opacity: 0.6;
}

.tab-locked .lock-indicator {
    font-size: 14px;
    margin-left: 4px;
    color: rgba(150, 150, 150, 0.7);
}

.tab-locked:hover {
    opacity: 0.8;
}

/* Category tab lock indicator */
.category-tab .lock-indicator {
    font-size: 12px !important;
    color: rgba(150, 150, 150, 0.7);
    margin-left: -2px;
}

/* Неактивные вкладки с замочком - убираем отступ справа */
.category-tab.tab-locked:not(.active) {
    padding-right: 0;
}

/* Blur tags for non-premium users on Majors/Alts tabs */
.blur-tags .tags-container {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.blur-tags .tags-container:hover {
    filter: blur(4px);
}

/* Filter locked state */
.filter-locked {
    pointer-events: none;
    opacity: 0.5;
}

.filter-locked::before {
    content: 'Premium';
    position: absolute;
    top: -8px;
    right: 5px;
    font-size: 9px;
    background: linear-gradient(135deg, #f7931a, #ffc107);
    color: #000;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .restriction-modal-content {
        margin: 10px;
        width: auto;
        max-width: calc(100% - 20px);
    }
    
    .restriction-modal-header {
        padding: 20px 20px 12px;
    }
    
    .restriction-modal-title {
        font-size: 18px;
    }
    
    .restriction-modal-body-wrapper {
        padding: 0 20px;
    }
    
    .restriction-modal-body .message-primary {
        font-size: 16px;
    }
    
    .restriction-modal-body .message-secondary {
        font-size: 13px;
    }
    
    .restriction-modal-actions {
        padding: 20px;
    }
    
    .restriction-modal-actions .auth-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .restriction-modal-actions .btn-auth {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .restriction-modal-actions .btn-auth svg {
        width: 16px;
        height: 16px;
    }
    
    .restriction-modal-actions .btn-trial {
        padding: 1px;
    }
    
    .restriction-modal-actions .btn-trial .btn-trial-content {
        padding: 10px 16px;
    }
    
    .restriction-modal-actions .btn-trial .btn-trial-text {
        font-size: 13px;
    }
    
    .restriction-modal-actions .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Trial banner */
.trial-banner {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.trial-banner-text {
    color: #f7931a;
    font-size: 14px;
}

.trial-banner-text strong {
    color: #ffc107;
}

.trial-banner .btn-start-trial {
    background: linear-gradient(135deg, #f7931a, #ffc107);
    color: #000;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.trial-banner .btn-start-trial:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
}

/* Days left indicator */
.days-left-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: #f7931a;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.days-left-indicator.warning {
    background: rgba(255, 87, 34, 0.1);
    border-color: rgba(255, 87, 34, 0.3);
    color: #ff5722;
}

.days-left-indicator.expired {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* User Status Banner */
.user-status-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: linear-gradient(to right, #473b5c, #372f47, #383554, #2f3355, #172030, #2f3355, #383554, #372f47, #473b5c);
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    z-index: 99;
}

.user-status-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.user-status-banner::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Banner container - not needed anymore but keep for compatibility */
#user-status-banner-container {
    display: block;
}

.user-status-banner .banner-icon {
    font-size: 18px;
}

.user-status-banner .banner-text {
    color: #f3f4f6;
}

.user-status-banner .banner-text strong {
    color: #fff;
    font-weight: 600;
}

.user-status-banner .btn-start-trial,
.user-status-banner .btn-upgrade {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 9999px;
    background: #262626;
    padding: 1px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

/* Inner content area */
.user-status-banner .btn-start-trial span,
.user-status-banner .btn-upgrade span {
    display: block;
    background: #14141f;
    border-radius: 9999px;
    padding: 5px 13px;
    position: relative;
    z-index: 2;
}

/* Static gradient glow - top and sides, fades to transparent at bottom */
.user-status-banner .btn-start-trial::before,
.user-status-banner .btn-upgrade::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: 
        linear-gradient(to bottom, 
            transparent 0%,
            transparent 50%,
            #262626 50%,
            #262626 100%
        ),
        linear-gradient(135deg, 
            rgb(140, 120, 255) 0%, 
            rgb(255, 100, 130) 50%, 
            rgb(255, 150, 80) 100%
        );
    background-blend-mode: normal;
    -webkit-mask: linear-gradient(to bottom, white 0%, white 40%, transparent 100%);
    mask: linear-gradient(to bottom, white 0%, white 40%, transparent 100%);
    pointer-events: none;
}

/* Animated glow that moves */
.user-status-banner .btn-start-trial::after,
.user-status-banner .btn-upgrade::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 100%;
    filter: blur(12px);
    border-radius: 9999px;
    background: linear-gradient(135deg, rgb(140, 120, 255), rgb(255, 100, 130), rgb(255, 150, 80));
    animation: banner-glow-move 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes banner-glow-move {
    0% { 
        left: -20%;
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 1;
    }
}

.user-status-banner .btn-start-trial:hover,
.user-status-banner .btn-upgrade:hover {
    transform: translateY(-1px);
}

.user-status-banner .banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #f3f4f6;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: opacity 0.2s;
}

.user-status-banner .banner-close:hover {
    opacity: 0.7;
}

.user-status-banner.warning {
    background: linear-gradient(to right, #473b5c, #372f47, #383554, #2f3355, #172030, #2f3355, #383554, #372f47, #473b5c);
}

.user-status-banner.warning .banner-text strong {
    color: #ff8a80;
}

/* Premium badge for locked features */
.premium-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f7931a, #ffc107);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 6px;
    text-transform: uppercase;
}

/* Locked button style */
.btn-telegram-connect.locked {
    opacity: 0.8;
    cursor: pointer;
}

.btn-telegram-connect.locked:hover {
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    /* Баннер не должен перекрывать мобильное меню */
    #status-banner-wrapper {
        z-index: 99 !important;
    }
    
    .user-status-banner {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }
    
    .user-status-banner .banner-icon {
        font-size: 16px;
    }
    
    .user-status-banner .btn-start-trial,
    .user-status-banner .btn-upgrade {
        padding: 1px;
        font-size: 12px;
    }
    
    .user-status-banner .btn-start-trial span,
    .user-status-banner .btn-upgrade span {
        padding: 4px 10px;
    }
    
    .user-status-banner .hide-mobile {
        display: none;
    }
}

/* ==========================================
   TOP SETUPS BLURRED ROWS & AUTH BUTTONS
   ========================================== */

/* Blurred row for Top Setups restricted view */
.blurred-row {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
}

.blurred-row td {
    position: relative;
}

/* Table scroll container needs relative positioning for overlay */
.table-scroll {
    position: relative;
}

/* Auth overlay positioned over blurred rows */
.top-setups-auth-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.top-setups-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    pointer-events: auto;
}

.btn-auth-signin,
.btn-auth-signup,
.btn-trial-overlay {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: -1450px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-auth-signin {
    background: #fff;
    color: #000;
}

.btn-auth-signin:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-auth-signup {
    background: #fff;
    color: #000;
}

.btn-auth-signup:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Trial overlay button */
.btn-trial-overlay {
    background: #fff;
    color: #000;
}

.btn-trial-overlay:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* Mobile adjustments for auth buttons */
@media (max-width: 768px) {
    .top-setups-auth-buttons {
        gap: 8px;
    }
    
    .btn-auth-signin,
    .btn-auth-signup,
    .btn-trial-overlay {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .top-setups-auth-overlay {
        bottom: 60px;
    }
}

/* AI Report Modal Styles */
.ai-promo-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.ai-promo-icon .material-symbols-rounded {
    font-size: 64px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ai-icon-pulse 2s ease-in-out infinite;
}

.ai-promo-icon.limit .material-symbols-rounded {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

@keyframes ai-icon-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.5));
    }
}

.ai-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.ai-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.ai-feature-list li:last-child {
    border-bottom: none;
}

.ai-feature-list li .material-symbols-rounded {
    font-size: 20px;
    color: #10b981;
    flex-shrink: 0;
}
