* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #05052d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 420px;
    background: #07073d;
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    border: 3px solid gold;
    box-shadow: 0 0 25px gold;
    position: relative;
}

/* Logo Circle */
.logo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid gold;
    box-shadow: 0 0 25px gold;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    color: gold;
    font-size: 22px;
    margin-bottom: 15px;
}

.main-text {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.points {
    color: #00ffff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.points span {
    display: block;
}

/* Gradient Button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #ff9800, #ff00cc);
    box-shadow: 0 0 20px #ff00cc;
    transition: 0.3s ease;
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px #ff00cc;
}

.footer-text {
    margin-top: 30px;
    font-weight: bold;
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
}
/* Continuous Zoom Animation */
@keyframes pulseZoom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px #ff00cc;
    }
    50% {
        transform: scale(1.12);
        box-shadow: 0 0 35px #ff00cc;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px #ff00cc;
    }
}

/* Apply animation to button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #ff9800, #ff00cc);
    animation: pulseZoom 1.5s infinite ease-in-out;
}
/* Mobile Optimization */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    .logo {
        width: 140px;
        height: 140px;
    }
    h1 {
        font-size: 18px;
    }
    .main-text {
        font-size: 16px;
    }
    .points {
        font-size: 14px;
    }
}