/* Background Image */
body {
    margin: 0;
    padding: 0;
    background: url('neon-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    color: white;
}

/* Center Panel */
.glass-panel {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 40px 35px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 25px;

    /* GLASS SHADOW */
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
    text-align: center;
}

/* Title */
.title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Tagline */
.tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ffde6b; /* gold accent */
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Description */
.description {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #007bff, #0a84ff);
    color: white;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(0, 140, 255, 0.8);
    transition: 0.25s;
}

.cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 140, 255, 1);
}

/* QR Box */
.qr-box img {
    margin-top: 30px;
    width: 220px;
    border-radius: 22px;
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.9);
}

/* Footer */
.footer {
    margin-top: 35px;
    opacity: 0.8;
    font-size: 14px;
}
