body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 100vh;
    overflow: hidden;
}

.app-layout {
    display: flex;
    height: 100vh;
}

.dual-sidebar {
    display: flex;
    flex-shrink: 0;
    border-right: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.history-sidebar {
    width: 300px;
    background-color: #ffffff;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.target-sidebar {
    width: 250px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar Header Styles */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.sidebar-header h3 {
    margin: 0;
    color: #3b82f6;
    font-size: 1.1em;
    font-weight: 600;
}

.main-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    margin-bottom: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.battle-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1.1em;
    color: #475569;
    font-weight: 500;
}

.battle-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.end-battle-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.end-battle-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.end-battle-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.player-rankings {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
    border: 1px solid #e2e8f0;
}

.ranking-header {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 15px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9em;
    color: #475569;
}

.ranking-header > div:last-child {
    text-align: right;
}

.player-bar {
    margin-bottom: 12px;
    position: relative;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: visible;
    height: 56px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.player-bar-content {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 8px;
}

.player-bar:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.rank-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.rank-number {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.rank-1 { 
    background: linear-gradient(135deg, #fbbf24, #f59e0b); 
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}
.rank-2 { 
    background: linear-gradient(135deg, #94a3b8, #64748b); 
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.4);
}
.rank-3 { 
    background: linear-gradient(135deg, #fb7185, #e11d48); 
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.4);
}

.player-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.5s ease;
    border-radius: 12px;
    z-index: 1;
}

.player-bar-fill.top-player {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.player-bar-fill.high-dps {
    background: linear-gradient(90deg, #10b981, #059669);
}

.player-bar-fill.crit-master {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.player-name {
    font-weight: 600;
    font-size: 1em;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 16px;
    display: flex;
    align-items: center;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 600;
    font-size: 0.95em;
    text-align: right;
    padding: 0 8px;
    color: #475569;
}

.damage-value {
    color: #1e293b !important;
}

.dps-value {
    color: #475569;
}

.percentage-value {
    color: #f59e0b;
}

.connection-status {
    position: fixed;
    top: 64px;
    right: 64px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.connected {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.disconnected {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.no-data {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2em;
    margin: 50px 0;
    font-weight: 500;
}

.updating {
    /* No animation - removed flashing effect */
}

.player-details {
    font-size: 0.8em;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-bar {
    cursor: pointer;
}

.player-bar:active {
    transform: translateX(2px);
}

.skill-breakdown {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    margin-top: 12px;
    padding: 20px;
    border-left: 4px solid #3b82f6;
    border: 1px solid #e2e8f0;
    display: none;
}

.skill-breakdown.show {
    display: block;
}

.skill-breakdown.show.animate {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.skill-breakdown-header {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 16px;
    color: #3b82f6;
}

.skill-item {
    margin-bottom: 10px;
    position: relative;
    background-color: #f1f5f9;
    border-radius: 8px;
    overflow: visible;
    height: 36px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.skill-item-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.skill-item-fill.crit-heavy {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.skill-item-fill.top-skill {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.skill-item-info {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85em;
    font-weight: 600;
    z-index: 2;
    color: #ffffff;
    white-space: nowrap;
    max-width: calc(100% - 200px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.skill-item-stats {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85em;
    font-weight: 600;
    color: #ffffff;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.clear-filter-btn,
.clear-history-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.download-history-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}


.clear-filter-btn:hover,
.clear-history-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.target-list,
.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow: visible;
    padding: 20px;
    padding-right: 12px;
    min-height: 0;
}

.target-list.scrollable,
.history-list {
    overflow-y: auto;
    overflow-x: hidden;
}

.target-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.target-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.target-item.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.target-name {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 6px;
    word-wrap: break-word;
    line-height: 1.3;
}

.target-damage {
    font-size: 0.8em;
    color: #f59e0b;
    font-weight: 700;
}

.target-item.selected .target-damage {
    color: #ffffff;
}

.no-targets,
.no-history {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9em;
    padding: 40px 20px;
    font-style: italic;
    font-weight: 500;
}

.filter-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar,
.target-list::-webkit-scrollbar,
.history-list::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track,
.target-list::-webkit-scrollbar-track,
.history-list::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb,
.target-list::-webkit-scrollbar-thumb,
.history-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.target-list::-webkit-scrollbar-thumb:hover,
.history-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Battle History Styles */
.history-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.history-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.history-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.history-time {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9em;
    white-space: nowrap;
    min-width: 0;
}

.history-duration {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(100, 116, 139, 0.3);
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.history-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #64748b;
    font-size: 0.8em;
    font-weight: 500;
}

.stat-value {
    color: #f59e0b;
    font-weight: 700;
    font-size: 0.8em;
}

.history-top-player {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 10px;
    color: #d97706;
    font-size: 0.8em;
    font-weight: 700;
    text-align: center;
}

/* Historical View Indicator Styles */
.historical-indicator {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.historical-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.back-to-live-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-live-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Current Battle Item Styles */
.current-battle {
    border-color: #ef4444 !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1)) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2) !important;
}

.current-battle:hover {
    border-color: #dc2626 !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15)) !important;
    transform: translateX(6px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3) !important;
}

.current-battle-indicator {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}


.download-history-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.target-list,
.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow: visible;
    padding: 20px;
    padding-right: 12px;
    min-height: 0;
}

.target-list.scrollable,
.history-list {
    overflow-y: auto;
    overflow-x: hidden;
}

.target-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.target-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.target-item.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.target-name {
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 6px;
    word-wrap: break-word;
    line-height: 1.3;
}

.target-damage {
    font-size: 0.8em;
    color: #f59e0b;
    font-weight: 700;
}

.target-item.selected .target-damage {
    color: #ffffff;
}

.no-targets,
.no-history {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9em;
    padding: 40px 20px;
    font-style: italic;
    font-weight: 500;
}

.filter-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar,
.target-list::-webkit-scrollbar,
.history-list::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track,
.target-list::-webkit-scrollbar-track,
.history-list::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb,
.target-list::-webkit-scrollbar-thumb,
.history-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.target-list::-webkit-scrollbar-thumb:hover,
.history-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Battle History Styles */
.history-item {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.history-item:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-color: #3b82f6;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.history-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.history-time {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9em;
    white-space: nowrap;
    min-width: 0;
}

.history-duration {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(100, 116, 139, 0.3);
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.history-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #64748b;
    font-size: 0.8em;
    font-weight: 500;
}

.stat-value {
    color: #f59e0b;
    font-weight: 700;
    font-size: 0.8em;
}

.history-top-player {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 10px;
    color: #d97706;
    font-size: 0.8em;
    font-weight: 700;
    text-align: center;
}

/* Historical View Indicator Styles */
.historical-indicator {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.historical-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.back-to-live-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-live-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Current Battle Item Styles */
.current-battle {
    border-color: #ef4444 !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1)) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2) !important;
}

.current-battle:hover {
    border-color: #dc2626 !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15)) !important;
    transform: translateX(6px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.3) !important;
}

.current-battle-indicator {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}