/* סגנון כללי */
html, body {
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* כותרת */
header {
    width: 100%;
    text-align: center;
    background: #0d0d0d;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 3px solid #ffcc00;
    box-shadow: 0px 4px 8px rgba(255, 204, 0, 0.5);
}
/* כפתור התחברות לדשבורד */
.btn-dashboard {
    display: block;
    margin: 10px auto 0 auto;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-dashboard:hover {
    background: linear-gradient(45deg, #0056b3, #007bff);
    transform: scale(1.05);
}
/* אזור HERO */
.hero {
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('images/bg.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* אזור 'ברוכים הבאים' */
.server-welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffcc00;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(255, 204, 0, 0.8);
    width: fit-content;
    margin: 20px auto;
    max-width: 90%;
}

/* טקסט 'ברוכים הבאים' */
.server-welcome h1 {
    font-size: 22px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 2px 2px 8px rgba(255, 204, 0, 0.9);
    padding: 10px;
    margin: 0;
}

/* כרטיס מידע על השרת */
.server-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 8px rgba(255, 204, 0, 0.2);
    width: 90%;
    max-width: 500px;
    text-align: center;
    margin: 20px auto;
}

/* תמונת המפה */
.map-image img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(255, 204, 0, 0.4);
}

/* תוכן בתוך כרטיס השרת */
.server-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.server-details p {
    font-size: 16px;
    margin: 5px 0;
}

/* כפתור התחברות */
.btn-connect {
    background: linear-gradient(45deg, #28a745, #1e7e34);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-connect:hover {
    background: linear-gradient(45deg, #1e7e34, #28a745);
    transform: scale(1.05);
}

/* התאמה למובייל */
@media (max-width: 768px) {
    header h1 {
        font-size: 18px;
        padding: 10px;
    }

    .hero {
        padding: 15px;
    }

    .server-welcome {
        width: 90%;
        padding: 10px;
    }

    .server-welcome h1 {
        font-size: 18px;
    }

    .server-info {
        width: 95%;
        padding: 15px;
    }

    .map-image img {
        max-width: 120px;
    }

    .btn-connect {
        font-size: 14px;
        padding: 10px 15px;
    }
}
