body {
    font-family: "Poppins", sans-serif;
    zoom: 1.1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.stock-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    border-radius: 10px;
}

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

.stock-card.favorited {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1), 0 8px 20px -4px rgba(251, 191, 36, 0.2);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.stock-card.positive-trend {
    border-left: 3px solid #10B981;
}

.stock-card.negative-trend {
    border-left: 3px solid #EF4444;
}

.sector-card {
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.sector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.favorite-btn {
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.15);
}

.profile-dropdown {
    display: none;
}

.profile-wrapper:hover .profile-dropdown {
    display: block;
}

.bg-success: {
    background: #10b981 !important;
}

.gauge-meter {
    position: relative;
    width: 100%;
    height: 100px;
}

.twitter-x {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="21" viewBox="0 0 512 512" fill="currentColor"><path d="M389.2 48h70.6L305.6 224.2L487 464H345L233.7 318.6L106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z"/></svg>')
}

.twitter-x-white {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 512 512" fill="white"><path d="M389.2 48h70.6L305.6 224.2L487 464H345L233.7 318.6L106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z"/></svg>')
}

/* Subscription */
.strike-row {
    transition: all 0.2s ease;
}

.strike-row:hover {
    background-color: #f1f5f9;
}

.blur-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.subscription-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
}

.subscription-overlay.active {
    display: block;
}

.subscription-panel {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: white;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
}

.subscription-panel.active {
    right: 0;
}

.plan-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.plan-card.selected {
    border-color: #2563EB;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.discount-badge {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 640px) {
    .subscription-panel {
        max-width: 100%;
    }
}

.strike-row {
    transition: all 0.2s ease;
}

.strike-row:hover {
    background-color: #f1f5f9;
}

.chart-container {
    position: relative;
    width: 100%;
}

.atm-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px dashed #94a3b8;
    z-index: 10;
    pointer-events: none;
}

.atm-label {
    position: absolute;
    right: 0;
    top: -10px;
    background: #f8fafc;
    padding: 0 4px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.subscription-badge {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.history-row {
    transition: all 0.2s ease;
}

.history-row:hover {
    background-color: #f1f5f9;
    transform: translateX(4px);
}

.feedback-category {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feedback-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feedback-category.selected {
    border-color: #2563EB;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}