body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.label_center {
    display: inline-block;
    text-align: center;
}

.fixed-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

/* ✅ Big branding banner */
.small-logo {
    max-width: 350px;   /* adjust size */
    height: auto;
    margin: 0 auto; /* reduced from 1.5rem */
    display: block;
}

/* ✅ Big branding banner */
.branding-banner {
    max-width: 80%;
    height: auto;
    margin: 1rem auto 0.5rem auto; /* tighter spacing */
    display: block;
}

.form-container {
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-title {
    color: #f8b500;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    white-space: nowrap;
    font-size: clamp(18px, 2.5vw, 28px);
}

@media (max-width: 576px) {
    .form-title {
        white-space: normal;
        font-size: 18px;
        line-height: 1.3;
    }
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-submit {
    background: linear-gradient(135deg, #f8b500, #f06d06);
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.popup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    color: black;
    width: 80%;
    height: 80%;
}

.popup iframe {
    width: 100%;
    height: calc(100% - 50px);
    border: none;
}

/* ✅ Winner text stays one line */
.winner-text {
    margin-top: 10px;
    font-weight: 600;
    color: #f8b500;
    font-size: 16px;
    white-space: normal;        /* ✅ allow wrapping */
    display: block;             /* ✅ let it expand full width */
    word-wrap: break-word;      /* ✅ breaks long words if needed */
    overflow-wrap: break-word;  /* ✅ modern equivalent */
    line-height: 1.4;           /* ✅ spacing between lines */
    text-align: center;         /* ✅ keeps it centered */
}

