* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;

    /* FUNDAL PRINCIPAL */
    background-image: url("images/background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #fff;
}

/* STRAT NEGRU PESTE FUNDAL */
.overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.40);

    z-index: 0;
    pointer-events: none;
}

/* CONTINUT */
.container {
    position: relative;
    z-index: 1;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

/* LOGO / TITLU */
.logo {
    text-align: center;
    margin-bottom: 50px;
}

.logo h1 {
    font-size: 60px;
    letter-spacing: 8px;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.4);
}

.logo p {
    margin-top: 10px;

    font-size: 15px;
    letter-spacing: 5px;

    opacity: 0.7;
}

/* SERVERELE */
.servers {
    display: flex;
    gap: 30px;

    width: 100%;
    max-width: 1000px;

    justify-content: center;
}

/* CARD SERVER */
.server-card {
    width: 450px;

    background: rgba(15, 15, 15, 0.90);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.server-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(255, 255, 255, 0.5);
}

/* IMAGINE SERVER */
.server-image {
    height: 230px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* SERVER 1 */
.server1 {
    background-image: url("images/server1.jpg");
}

/* SERVER 2 */
.server2 {
    background-image: url("images/server2.jpg");
}

/* CONTINUT CARD */
.server-content {
    text-align: center;

    padding: 30px;
}

.server-content h2 {
    font-size: 30px;
    letter-spacing: 3px;
}

.server-content p {
    margin-top: 8px;

    color: #aaa;
}

/* STATUS */
.status {
    margin: 20px 0;

    font-size: 13px;
    letter-spacing: 2px;
}

/* BULINA ONLINE */
.online {
    display: inline-block;

    width: 9px;
    height: 9px;

    background: #36d15c;

    border-radius: 50%;

    margin-right: 7px;

    box-shadow:
        0 0 10px #36d15c;
}

/* BUTON PLAY */
.play-button {
    display: inline-block;

    padding: 14px 35px;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.4);

    transition:
        0.3s ease;
}

.play-button:hover {
    background: #fff;

    color: #000;
}

/* FOOTER */
.footer {
    margin-top: 50px;

    color: #777;

    font-size: 12px;
}

/* TELEFON / TABLETĂ */
@media (max-width: 900px) {

    .servers {
        flex-direction: column;
        align-items: center;
    }

    .server-card {
        width: 100%;
        max-width: 450px;
    }

    .logo h1 {
        font-size: 40px;
    }
}

/* TELEFOANE MICI */
@media (max-width: 500px) {

    .container {
        padding: 30px 15px;
    }

    .logo {
        margin-bottom: 30px;
    }

    .logo h1 {
        font-size: 30px;
        letter-spacing: 5px;
    }

    .logo p {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .server-image {
        height: 180px;
    }

    .server-content {
        padding: 25px 15px;
    }

    .server-content h2 {
        font-size: 24px;
    }
}