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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.logo-area {
    margin-bottom: 3rem;
}

.company-name {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.8em;
    color: #dc2626;
    text-transform: uppercase;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.message {
    margin-bottom: 3rem;
    padding: 2rem;
    border-left: 4px solid #dc2626;
    background: rgba(220, 38, 38, 0.05);
    backdrop-filter: blur(10px);
}

.message h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.node-badge {
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    border-radius: 50px;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(220, 38, 38, 0.2);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
}

.footer {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }
    
    .company-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.5em;
    }
    
    .message h3 {
        font-size: 1.8rem;
    }
    
    .message p {
        font-size: 1rem;
    }
}
