body {
    margin: 0;
    font-family: Arial;
    text-align: center;
    color: white;

    background: url("sky.jpe.jpeg") no-repeat center center/cover;
    height: 100vh;
}

/* Overlay */
.container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Icons */
/* Icons */
.icons i {
    font-size: 40px;
    color: white;
    margin: 10px;
    transition: 0.3s;
}

.icons i:hover {
    transform: scale(1.2);
    background: none;
    color:#c51f1f; /* تأثير hover */
}

/* Button */
.btn {
    display: block;
    width: 220px;
    margin: 15px;
    padding: 12px;
    background: #272828;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.btn:hover {
    background: #e60000;
}

/* Footer */
.footer {
    margin-top: 20px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    /* للشاشات المتوسطة مثل التابلت */
    .icons i {
        font-size: 35px;
        margin: 8px;
    }

    .btn {
        width: 180px;
        font-size: 16px;
        padding: 10px;
    }

    .title {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    /* للشاشات الصغيرة مثل الموبايل */
    .icons i {
        font-size: 30px;
        margin: 6px;
    }

    .btn {
        width: 160px;
        font-size: 15px;
        padding: 8px;
    }

    .title {
        font-size: 25px;
    }
}
