* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111827;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-color: #b91010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #b91010;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #1eb910;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.theme-buttons {
    display: flex;
    gap: 0.5rem;
}

.theme-btn {
    background: none;
    border: none;
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.theme-btn:hover {
    color: white;
    background-color: #374151;
}

/* Main Content */
.main-content {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Status Header */
.status-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.status-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    color: #ff0000;
}

.status-description {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.status-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge.operational {
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #1eb910;
    border: 1px solid #1eb910;
}

.badge.undetected {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
    border: 1px solid #3b82f6;
    animation-delay: 1s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #1eb910;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Status Cards */
.status-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.status-card {
    background: rgba(31, 41, 55, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.status-card:nth-child(1) {
    animation: slideInUp 0.8s ease 0.6s forwards;
}

.status-card:nth-child(2) {
    animation: slideInUp 0.8s ease 0.8s forwards;
}

.status-card:nth-child(3) {
    animation: slideInUp 0.8s ease 1s forwards;
}

.status-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.status-card.green {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(4, 120, 87, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.status-card.blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(29, 78, 216, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.status-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.1));
    border-color: rgba(168, 85, 247, 0.3);
}

.card-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.status-value {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #1eb910, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-unit {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1eb910;
    margin-left: 0.25rem;
}

.status-label {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Status Indicators */
.status-indicator {
    margin-top: 1rem;
}

.indicator-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(75, 85, 99, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-fill {
    height: 100%;
    background: linear-gradient(90deg, #1eb910, #34d399);
    border-radius: 2px;
    animation: fillBar 2s ease-out 1.6s forwards;
    width: 0;
}

.monitoring-pulse {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.pulse-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.security-shield {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #a855f7;
    animation: shieldPulse 2s ease-in-out infinite;
}

/* Security Status */
.security-status {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    color: #1eb910;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid #1eb910;
    font-size: 1rem;
    animation: securityPulse 3s ease-in-out infinite;
}

.security-icon {
    font-size: 1.25rem;
    animation: lockRotate 4s ease-in-out infinite;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
}

.action-btn.discord {
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
}

.action-btn.store {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Status Feed */
.status-feed {
    opacity: 0;
    animation: fadeInUp 1s ease 1.6s forwards;
}

.feed-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.feed-container {
    background: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(75, 85, 99, 0.2);
}

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

.feed-time {
    color: #9ca3af;
    font-size: 0.75rem;
    min-width: 80px;
}

.feed-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1eb910;
    font-size: 0.875rem;
}

.feed-status i {
    width: 16px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

@keyframes fillBar {
    from { width: 0; }
    to { width: 99.9%; }
}

@keyframes pulseDot {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes shieldPulse {
    0%, 100% { 
        transform: scale(1);
        color: #a855f7;
    }
    50% { 
        transform: scale(1.1);
        color: #c084fc;
    }
}

@keyframes securityPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

@keyframes lockRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .status-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .status-title {
        font-size: 2.5rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
    }
    
    .status-title {
        font-size: 2rem;
    }
    
    .status-card {
        padding: 1.5rem;
    }
    
    .status-value {
        font-size: 2rem;
    }
}