/* ============================================
   LicenShield Premium Dashboard
   ============================================ */

/* Reset & Base */
.ls-app {
    margin: -8px -20px 0 -20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.ls-app *, .ls-app *::before, .ls-app *::after {
    box-sizing: border-box;
}

/* Header */
.ls-header {
    background: linear-gradient(135deg, #1E40AF 0%, #0891b2 50%, #06B6D4 100%);
    padding: 32px 40px 60px;
    position: relative;
    overflow: hidden;
}

.ls-header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.ls-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ls-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ls-brand-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.ls-header-welcome h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

.ls-header-welcome p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 6px 0 0;
}

.ls-header-right {
    display: flex;
    gap: 12px;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.ls-btn-light {
    background: white;
    color: #1E40AF;
}

.ls-btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ls-btn-glass {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.ls-btn-glass:hover {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* Header Background Shapes */
.ls-header-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ls-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.ls-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.ls-shape-2 { width: 250px; height: 250px; bottom: -100px; left: 10%; }
.ls-shape-3 { width: 180px; height: 180px; top: 30%; left: 25%; }

/* Content */
.ls-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 40px 40px;
    position: relative;
    z-index: 3;
}

/* Banner */
.ls-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.ls-banner-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
}

.ls-banner-info {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
}

.ls-banner-info .ls-banner-icon {
    background: #10b981;
}

.ls-banner-info .ls-banner-content strong {
    color: #065f46;
}

.ls-banner-info .ls-banner-content p {
    color: #047857;
}

.ls-banner-icon {
    width: 48px;
    height: 48px;
    background: #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ls-banner-content {
    flex: 1;
}

.ls-banner-content strong {
    display: block;
    color: #92400e;
    font-size: 15px;
    margin-bottom: 2px;
}

.ls-banner-content p {
    color: #a16207;
    font-size: 14px;
    margin: 0;
}

.ls-btn-warning {
    background: #f59e0b;
    color: white;
}

.ls-btn-warning:hover {
    background: #d97706;
    color: white;
}

/* Plan Card */
.ls-plan-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ls-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ls-plan-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ls-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-plan-starter { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4338ca; }
.ls-plan-pro { background: linear-gradient(135deg, #1E40AF, #06B6D4); color: white; }
.ls-plan-agency { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; }
.ls-plan-free { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }

.ls-plan-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-btn-upgrade {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.ls-btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    color: white;
}

.ls-plan-meters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ls-meter-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 14px;
}

.ls-meter-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ls-meter-label {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.ls-meter-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.ls-meter-value span {
    font-weight: 400;
    color: #94a3b8;
}

.ls-meter-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.ls-meter-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-meter-blue { background: linear-gradient(90deg, #1E40AF, #3b82f6); }
.ls-meter-cyan { background: linear-gradient(90deg, #0891b2, #06B6D4); }
.ls-meter-green { background: linear-gradient(90deg, #059669, #10b981); }

/* Stats Grid */
.ls-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.ls-stat-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ls-stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ls-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-stat-revenue .ls-stat-icon { background: linear-gradient(135deg, #10b981, #34d399); }
.ls-stat-licenses .ls-stat-icon { background: linear-gradient(135deg, #1E40AF, #06B6D4); }
.ls-stat-orders .ls-stat-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.ls-stat-activations .ls-stat-icon { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

.ls-stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.ls-trend-up { background: #d1fae5; color: #059669; }
.ls-trend-down { background: #fee2e2; color: #dc2626; }

.ls-stat-badge {
    font-size: 11px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 50px;
}

.ls-badge-success { background: #d1fae5; color: #059669; }

.ls-stat-body {
    position: relative;
    z-index: 2;
}

.ls-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -1px;
}

.ls-stat-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.ls-stat-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
}

.ls-stat-revenue .ls-stat-glow { background: #10b981; }
.ls-stat-licenses .ls-stat-glow { background: #1E40AF; }
.ls-stat-orders .ls-stat-glow { background: #f59e0b; }
.ls-stat-activations .ls-stat-glow { background: #8b5cf6; }

/* Charts */
.ls-charts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.ls-chart-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}

.ls-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.ls-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ls-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-icon-revenue { background: linear-gradient(135deg, #1E40AF, #3b82f6); }
.ls-icon-licenses { background: linear-gradient(135deg, #0891b2, #06B6D4); }
.ls-icon-orders { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.ls-icon-actions { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.ls-icon-api { background: linear-gradient(135deg, #64748b, #94a3b8); }

.ls-card-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.ls-card-title p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #64748b;
}

.ls-card-body {
    padding: 20px 24px 24px;
    height: 280px;
}

/* Bottom Grid */
.ls-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Panels */
.ls-panel {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}

.ls-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ls-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ls-panel-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-panel-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.ls-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #1E40AF;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.ls-link:hover { color: #1e3a8a; }

.ls-panel-body {
    padding: 0;
}

/* Empty State */
.ls-empty {
    text-align: center;
    padding: 40px 24px;
}

.ls-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.ls-empty p {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: #475569;
}

.ls-empty span {
    font-size: 13px;
    color: #94a3b8;
}

/* List Items */
.ls-list {
    max-height: 350px;
    overflow-y: auto;
}

.ls-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.ls-list-item:last-child { border-bottom: none; }
.ls-list-item:hover { background: #f8fafc; }

.ls-list-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.ls-list-content {
    flex: 1;
    min-width: 0;
}

.ls-list-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.ls-list-meta {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.ls-list-end {
    text-align: right;
}

.ls-list-amount {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #10b981;
}

.ls-list-time {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* License List */
.ls-license-list {
    max-height: 350px;
    overflow-y: auto;
}

.ls-license-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.ls-license-item:last-child { border-bottom: none; }
.ls-license-item:hover { background: #f8fafc; }

.ls-license-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ls-key {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    font-family: 'SF Mono', Monaco, monospace;
}

.ls-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.ls-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
}

.ls-status-active { background: #d1fae5; color: #059669; }
.ls-status-active::before { background: #10b981; }
.ls-status-expired { background: #fee2e2; color: #dc2626; }
.ls-status-expired::before { background: #ef4444; }
.ls-status-suspended { background: #fef3c7; color: #d97706; }
.ls-status-suspended::before { background: #f59e0b; }

.ls-license-sub {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
}

/* Actions Grid */
.ls-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
}

.ls-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.ls-action-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.ls-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-action-primary { background: linear-gradient(135deg, #1E40AF, #3b82f6); }
.ls-action-cyan { background: linear-gradient(135deg, #0891b2, #06B6D4); }
.ls-action-gray { background: linear-gradient(135deg, #64748b, #94a3b8); }
.ls-action-green { background: linear-gradient(135deg, #059669, #10b981); }

.ls-action-item span {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

/* API */
.ls-api-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.ls-api-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 10px 14px;
    border-radius: 10px;
}

.ls-api-method {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: #1E40AF;
    color: white;
    flex-shrink: 0;
}

.ls-method-webhook {
    background: #f59e0b;
}

.ls-api-item code {
    flex: 1;
    background: none;
    padding: 0;
    font-size: 12px;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-copy {
    width: 28px;
    height: 28px;
    padding: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ls-copy:hover {
    background: #1E40AF;
    border-color: #1E40AF;
    color: white;
}

.ls-copy.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.ls-api-webhook {
    padding: 0 20px 20px;
}

.ls-api-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
}

/* Footer */
.ls-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.ls-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
}

.ls-footer-logo {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1E40AF, #06B6D4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-footer-links {
    display: flex;
    gap: 24px;
}

.ls-footer-links a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.ls-footer-links a:hover { color: #1E40AF; }

.ls-footer-badges {
    display: flex;
    gap: 12px;
}

.ls-badge-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 50px;
}

.ls-badge-trust svg {
    color: #10b981;
}

/* Piracy Detection Section */
.ls-piracy-section {
    margin-top: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ls-piracy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.ls-piracy-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ls-piracy-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-piracy-title h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
}

.ls-piracy-title p {
    margin: 0;
    font-size: 13px;
    opacity: 0.7;
}

.ls-piracy-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.ls-badge-alert {
    background: #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ls-piracy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
    background: #f8fafc;
}

.ls-piracy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ls-piracy-stat {
    background: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.ls-piracy-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.ls-piracy-stat-label {
    font-size: 12px;
    color: #64748b;
}

.ls-stat-warning .ls-piracy-stat-value {
    color: #f59e0b;
}

.ls-alert-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ls-alert-count {
    background: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #e2e8f0;
}

.ls-alert-count .ls-count {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ls-alert-count .ls-label {
    font-size: 12px;
    color: #64748b;
}

.ls-alert-critical {
    border-left-color: #dc2626;
}
.ls-alert-critical .ls-count { color: #dc2626; }

.ls-alert-high {
    border-left-color: #f59e0b;
}
.ls-alert-high .ls-count { color: #f59e0b; }

.ls-alert-new {
    border-left-color: #3b82f6;
}
.ls-alert-new .ls-count { color: #3b82f6; }

.ls-alert-resolved {
    border-left-color: #10b981;
}
.ls-alert-resolved .ls-count { color: #10b981; }

.ls-alerts-panel {
    border-top: 1px solid #e2e8f0;
}

.ls-alerts-list {
    display: flex;
    flex-direction: column;
}

.ls-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.ls-alert-item:hover {
    background: #f8fafc;
}

.ls-alert-item:last-child {
    border-bottom: none;
}

.ls-alert-indicator {
    width: 4px;
    height: 100%;
    min-height: 60px;
    border-radius: 4px;
    flex-shrink: 0;
}

.ls-severity-critical .ls-alert-indicator { background: #dc2626; }
.ls-severity-high .ls-alert-indicator { background: #f59e0b; }
.ls-severity-medium .ls-alert-indicator { background: #3b82f6; }
.ls-severity-low .ls-alert-indicator { background: #64748b; }

.ls-alert-content {
    flex: 1;
    min-width: 0;
}

.ls-alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ls-alert-type {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.ls-alert-severity {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.ls-badge-critical {
    background: #fef2f2;
    color: #dc2626;
}

.ls-badge-danger {
    background: #fffbeb;
    color: #f59e0b;
}

.ls-badge-warning {
    background: #eff6ff;
    color: #3b82f6;
}

.ls-badge-info {
    background: #f1f5f9;
    color: #64748b;
}

.ls-alert-title {
    margin: 0 0 8px;
    font-size: 14px;
    color: #1e293b;
    line-height: 1.4;
}

.ls-alert-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #64748b;
}

.ls-alert-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ls-alert-key {
    font-family: monospace;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
}

.ls-alert-actions {
    display: flex;
    gap: 8px;
}

.ls-btn-icon {
    width: 32px;
    height: 32px;
    padding: 0;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
}

.ls-btn-icon:hover {
    background: #10b981;
    color: white;
}

.ls-empty-success {
    text-align: center;
    padding: 40px 20px;
}

.ls-empty-success .ls-empty-icon {
    color: #10b981;
}

.ls-empty-success p {
    color: #10b981;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1400px) {
    .ls-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ls-piracy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
    .ls-charts-row,
    .ls-bottom-grid { grid-template-columns: 1fr; }
    .ls-plan-meters { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
    .ls-header { padding: 24px 20px 50px; }
    .ls-header-inner { flex-direction: column; align-items: flex-start; }
    .ls-content { padding: 0 20px 20px; margin-top: -30px; }
    .ls-stats-grid { grid-template-columns: 1fr; }
    .ls-footer { flex-direction: column; gap: 16px; text-align: center; }
}
