* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* ===============================
   PARTICLE BACKGROUND
================================= */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8c42, #ff5e62);
    z-index: -1;
}

/* ===============================
   CONTAINER
================================= */
.container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ===============================
   IMAGE
================================= */
.image-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.8);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   TEXT
================================= */
h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

h2 {
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.doa {
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ===============================
   COUNTDOWN
================================= */
.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown div {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 14px;
    width: 75px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.countdown span {
    font-size: 20px;
    font-weight: bold;
}

/* ===============================
   MUSIC BUTTON
================================= */
.music-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #ff5e62;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.music-btn:hover {
    transform: scale(1.15);
}

/* ===============================
   FLOAT ANIMATION
================================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ===============================
   RESPONSIVE MOBILE
================================= */
@media (max-width: 480px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 15px;
    }

    .image-wrapper {
        width: 130px;
        height: 130px;
    }

    .countdown div {
        width: 65px;
        padding: 10px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
