/* Общие стили */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #121212;
    color: #e0e0e0;
}

header {
    background: #1e1e1e;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.left-column {
    flex: 2;
}

.right-column {
    flex: 1;
}

.status-block {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.status-block h2 {
    margin-top: 0;
    color: #ffffff;
}

.status-online {
    color: #4caf50;
}

.status-offline {
    color: #f44336;
}

.instructions {
    background: #1e1e1e;
    padding: 1rem;
    border-left: 4px solid #4caf50;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #1e1e1e;
    color: #e0e0e0;
    width: 100%;
    font-size: 0.9rem;
}

h1 {
    font-size: 3em;
    margin: 0;
}

.logo-container {
    position: absolute;
    top: 10px;
    left: 20px;
}

.logo {
    border: 3px solid #4caf50;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100px;
    height: auto;
}

footer a {
    color: #4caf50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

a {
    color: #4caf50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.connection-methods {
    margin-top: 1rem;
}

.connection-methods p {
    margin: 0.5rem 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        padding: 1rem;
    }
    
    .left-column, .right-column {
        flex: 1;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .logo-container {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo {
        max-width: 80px;
    }
}