body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #4b79a1, #283e51);
    color: white;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.center-box {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.glow-btn {
    padding: 14px 32px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    color: #283e51;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    transition: 0.25s ease;
    margin-bottom: 25px;
}

.glow-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 25px rgba(255,255,255,0.7);
}

/* NEW — Haeish Sheli image */
.haeish-img {
    width: 250px;
    height: auto;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    opacity: 0.95;
    transition: 0.3s ease;
}

.haeish-img:hover {
    transform: scale(1.05);
    opacity: 1;
}
