.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../../images/background.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease-out;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.server-status-card {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 320px;
}

.server-status-title {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.server-status-rows {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.server-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    text-align: center;
}

.server-status-row span {
    flex: 1;
}

.server-status-online {
    color: #4CAF50;
    font-weight: bold;
}

.server-status-offline {
    color: #f44336;
    font-weight: bold;
}
/*.server-status-card {*/
/*    position: absolute;*/
/*    right: 2rem;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    backdrop-filter: blur(10px);*/
/*    padding: 2rem;*/
/*    border-radius: 15px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*    animation: slideInRight 1s ease-out;*/
/*}*/

/*.server-status-card h3 {*/
/*    font-size: 1.4rem;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.status-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin: 0.5rem 0;*/
/*}*/

/*.status-dot {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    margin-right: 10px;*/
/*}*/

/*.status-dot.online {*/
/*    background-color: #4CAF50;*/
/*    box-shadow: 0 0 10px #4CAF50;*/
/*}*/