﻿:root {
    --primary-color: #FF7629;
    --secondary-color: #141A20;
    --text-color: #ffffff;
    --disabled-color: #555555;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.logo-container {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-container{
    margin-top: 4rem;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.service-card {
    background-color: rgba(59, 252, 0, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.service-card:not(.disabled):hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card.disabled {
    background-color: rgba(255, 0, 0, 0.05);
    cursor: not-allowed;
    opacity: 0.7;
}

.service-info {
    display: flex;
    align-items: center;
}

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

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 1rem;
}

.status-indicator.available {
    background-color: var(--success-color);
    box-shadow: 0 0 8px var(--success-color);
}

.status-indicator.starting {
    background-color: var(--warning-color);
    box-shadow: 0 0 8px var(--warning-color);
    animation: pulse 1.5s infinite;
}

.status-indicator.unavailable {
    background-color: var(--error-color);
    box-shadow: 0 0 8px var(--error-color);
}

.services-status {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
