* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0b10;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* এনিমেটেড ব্যাকগ্রাউন্ড */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #00ff88;
    top: -50px;
    left: -50px;
    animation: move 10s infinite alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #ff9900;
    bottom: -100px;
    right: -50px;
    animation: move 12s infinite alternate-reverse;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

/* গ্লাস কার্ড */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: cardEntry 1s ease-out;
}

@keyframes cardEntry {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.verified-badge {
    font-size: 60px;
    color: #00ff88;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

h1 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* প্রোগ্রেস বার */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00bd65);
    transition: width 1s linear;
}

.redirect-info {
    font-size: 13px;
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 600;
}

/* বাটন */
.btn-main {
    background: linear-gradient(45deg, #ff9900, #ffb700);
    border: none;
    padding: 15px 40px;
    border-radius: 15px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
}

/* মডাল */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center; align-items: center;
    z-index: 100;
}

.modal-content {
    background: #15161c;
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 85%;
    border-left: 5px solid #ff9900;
    position: relative;
}

.modal-content h3 { color: #ff9900; margin-bottom: 20px; }
.modal-content ul { list-style: none; margin-top: 20px; color: #ccc; font-size: 14px; }
.modal-content li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.modal-content li::before { content: "✔"; color: #00ff88; }

.close-btn { position: absolute; top: 15px; right: 20px; font-size: 20px; cursor: pointer; color: #ff4444; }