/* Liquid Glass Theme CSS */

/* CSS Variables for Glass Effect */
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-backdrop: blur(8px);
    --glass-border-radius: 20px;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Liquid Glass Navbar */
.liquid-glass-navbar {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.liquid-glass-navbar .navbar-brand,
.liquid-glass-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.liquid-glass-navbar .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.liquid-glass-navbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

/* Liquid Glass Hero Section */
.liquid-glass-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.liquid-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge .badge-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Glass Buttons */
.btn-glass-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-glass-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-glass-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Monitor Card */
.monitor-card-container {
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white;
    margin-bottom: 2rem;
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.monitor-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.monitor-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #10b981;
}

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

.monitor-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.monitor-chart {
    height: 100px;
    position: relative;
}

/* Steps Animation */
.steps-animation {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    opacity: 0.5;
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step:last-child {
    border-bottom: none;
}

.step.active {
    opacity: 1;
    transform: translateX(10px);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .monitor-metrics {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-badges {
        flex-direction: column;
    }
    
    .hero-actions {
        text-align: center;
    }
    
    .btn-glass-primary,
    .btn-glass-outline {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Apply glass effect to existing sections */
.container .card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white;
}

.container .card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Update existing sections with glass theme */
.bg-blue-900 {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-primary-100 {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* Liquid Glass Sections */
.liquid-glass-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.liquid-glass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.liquid-glass-section .container {
    position: relative;
    z-index: 2;
}

/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
}

* {
    transition: all 0.3s ease;
}

/* Loading animation for real-time updates */
.monitor-card .metric-value {
    transition: all 0.3s ease;
}

.monitor-card .metric-value.updating {
    opacity: 0.7;
    transform: scale(1.05);
}

/* Update existing card styles for glass theme */
.liquid-glass-section .card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white;
    transition: all 0.3s ease;
}

.liquid-glass-section .card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.liquid-glass-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.liquid-glass-section .h5,
.liquid-glass-section .h6 {
    color: white !important;
}

.liquid-glass-section .small {
    color: rgba(255, 255, 255, 0.9) !important;
}

.liquid-glass-section .text-success {
    color: #10b981 !important;
}

.liquid-glass-section .text-primary {
    color: #60a5fa !important;
}

/* Animated Cards Container */
.animated-cards-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.animated-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.card-icon.heartbeat {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card-content h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Status Indicators */
.status-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #10b981;
}

.status-dot.warning {
    background: #f59e0b;
}

.status-dot.offline {
    background: #ef4444;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.metric-value.success {
    color: #10b981;
}

/* Heartbeat Animation */
.heartbeat-animation {
    position: relative;
    height: 60px;
    margin: 1rem 0;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Domain Flow Animation */
.domain-flow {
    position: relative;
    height: 40px;
    margin: 1rem 0;
}

.flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: flow 2s infinite;
}

.flow-line:nth-child(1) {
    top: 10px;
    width: 100%;
    animation-delay: 0s;
}

.flow-line:nth-child(2) {
    top: 20px;
    width: 80%;
    animation-delay: 0.5s;
}

.flow-line:nth-child(3) {
    top: 30px;
    width: 60%;
    animation-delay: 1s;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* DNS Animation */
.dns-animation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.dns-query, .dns-response {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.query-arrow, .response-arrow {
    width: 30px;
    height: 2px;
    background: #10b981;
    position: relative;
    animation: dns-arrow 2s infinite;
}

.query-arrow::after, .response-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 5px solid #10b981;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@keyframes dns-arrow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Feature Animated Cards */
.feature-animated-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-animated-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-animation {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.card-info {
    text-align: center;
}

/* Server Nodes Animation */
.server-nodes {
    position: relative;
    width: 200px;
    height: 100px;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    animation: node-pulse 2s infinite;
}

.node-1 { top: 20px; left: 20px; animation-delay: 0s; }
.node-2 { top: 20px; right: 20px; animation-delay: 0.5s; }
.node-3 { bottom: 20px; left: 50px; animation-delay: 1s; }
.node-4 { bottom: 20px; right: 50px; animation-delay: 1.5s; }

.connection-line {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: connection-flow 3s infinite;
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes connection-flow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Request Flow Animation */
.request-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.request-arrow {
    font-size: 1.5rem;
    color: #10b981;
    animation: arrow-move 2s infinite;
}

.request-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: dot-bounce 1.5s infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrow-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes dot-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Response Animation */
.response-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.response-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
}

.response-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wave-expand 2s infinite;
}

.wave:nth-child(2) { animation-delay: 0.5s; }
.wave:nth-child(3) { animation-delay: 1s; }

@keyframes wave-expand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Notification Animation */
.notification-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.notification-bell {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #10b981;
    animation: bell-ring 2s infinite;
}

.notification-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: notification-pulse 1.5s infinite;
}

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

@keyframes bell-ring {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-10deg); }
    75% { transform: translate(-50%, -50%) rotate(10deg); }
}

@keyframes notification-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Project Animation */
.project-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.project-folder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #10b981;
    animation: folder-bounce 2s infinite;
}

.project-lines {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
}

.project-line {
    height: 2px;
    background: #10b981;
    margin-bottom: 0.5rem;
    animation: line-draw 2s infinite;
}

.project-line:nth-child(1) { width: 100%; animation-delay: 0s; }
.project-line:nth-child(2) { width: 80%; animation-delay: 0.5s; }
.project-line:nth-child(3) { width: 60%; animation-delay: 1s; }

@keyframes folder-bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes line-draw {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Domain Animation */
.domain-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.domain-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #10b981;
    animation: globe-spin 3s infinite linear;
}

.domain-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.connection {
    position: absolute;
    width: 2px;
    background: #10b981;
    animation: connection-pulse 2s infinite;
}

.connection:nth-child(1) {
    height: 40px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.connection:nth-child(2) {
    height: 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.connection:nth-child(3) {
    width: 40px;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

@keyframes globe-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes connection-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Server Monitor Animation */
.server-monitor-animation {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.server-unit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.server-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: server-pulse 2s infinite;
}

.server-indicator.online {
    background: #10b981;
}

.server-indicator.warning {
    background: #f59e0b;
}

.server-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.server-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    animation: server-line-flow 2s infinite;
}

.server-line:nth-child(1) { width: 100%; animation-delay: 0s; }
.server-line:nth-child(2) { width: 80%; animation-delay: 0.3s; }
.server-line:nth-child(3) { width: 60%; animation-delay: 0.6s; }
.server-line:nth-child(4) { width: 40%; animation-delay: 0.9s; }

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

@keyframes server-line-flow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Status Page Animation */
.status-page-animation {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.status-dashboard {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    color: white;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.status-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.status-indicator.overall-online {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: status-pulse 2s infinite;
}

.status-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-size: 0.9rem;
}

.service-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: service-pulse 2s infinite;
}

.service-status.online {
    background: #10b981;
}

.service-status.warning {
    background: #f59e0b;
}

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

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

/* Incidents Animation */
.incidents-animation {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.incident-timeline {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    color: white;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: timeline-pulse 2s infinite;
}

.timeline-dot.resolved {
    background: #10b981;
}

.timeline-dot.investigating {
    background: #f59e0b;
}

.timeline-dot.monitoring {
    background: #3b82f6;
}

.timeline-content {
    flex: 1;
}

.incident-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.incident-time {
    font-size: 0.8rem;
    opacity: 0.8;
}

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