

/* ===== FORM CONTAINER (Glass + Golden VIP) ===== */
#afr-golden-ticket-wrapper {
    max-width: 700px;
    margin: 60px auto;
    padding: 45px 50px;
    background: rgba(20, 14, 5, 0.55);
    backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 215, 0, 0.55);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.28);
    position: relative;
    z-index: 10;
    text-align: center;
}

/* ===== TITLE ===== */
#afr-golden-ticket-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffda6d;
    margin-bottom: 35px;
    text-shadow: 0 0 10px rgba(255, 223, 0, 0.7);
}

/* ===== LABELS ===== */
.afr-gt-field label {
    display: block;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #ffda6d;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* ===== INPUTS ===== */
.afr-gt-field input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 2px solid #c49a28;
    background: rgba(255, 230, 140, 0.08);
    color: #ffe9b8;
    font-size: 18px;
    transition: all 0.22s;
}
.afr-gt-field input:focus {
    border-color: #ffda6d;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.55);
}

/* ===== SPACING ===== */
.afr-gt-field {
    margin-bottom: 28px;
}

/* ===== BUTTON ===== */
#afr_gt_submit,
#afr_select_lot_btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    color: #312000;
    background: linear-gradient(135deg, #ffd97a, #d6a314);
    box-shadow: 0 0 15px rgba(255, 223, 0, 0.45);
    transition: 0.25s;
}
#afr_gt_submit:hover,
#afr_select_lot_btn:hover {
    background: linear-gradient(135deg, #ffe9a5, #c8920f);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.6);
}

/* ===== SELECT LOT MENU ===== */
#afr_lot_select {
    width: 100%;
    /*padding: 13px 16px;*/
    margin-bottom: 18px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #c49a28;
    background: rgba(255, 230, 140, 0.08);
    color: #ffe9b8;
    transition: all 0.2s;
}

/* ===== SUCCESS & ERROR ===== */
.afr-success, .afr-error {
    margin-top: 25px;
    font-size: 20px;
    padding: 18px;
    border-radius: 12px;
}

.afr-success {
    background: rgba(255, 223, 0, 0.18);
    border: 2px solid #ffda6d;
    color: #ffda6d;
    text-shadow: 0 0 8px rgba(255, 223, 0, 0.4);
}

.afr-error {
    background: rgba(160, 21, 21, 0.2);
    border: 2px solid #d65b5b;
    color: #ff9696;
}

/* ===== GLOBAL PAGE BACKGROUND (Golden + Dark) ===== */
/*body.has-golden-ticket {
    background: radial-gradient(circle at top, #3e2f00 0%, #120d05 65%, #000000 100%);
    font-family: "Antonio", sans-serif;
}*/


/* === SNOW BACKGROUND ANIMATION ON FULL PAGE ================================= */
/*
#afr-snow-bg {
    pointer-events: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
     background-image: url("https://gallery.yopriceville.com/var/resizes/Free-Clipart-Pictures/Decorative-Elements-PNG/Transparent_Snow_with_Shining_Effect.png?m=1629830811");
    background-size: 600px;
    background-repeat: repeat;
    animation: snowFall 12s linear infinite, snowDrift 6s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes snowFall {
    0%   { background-position-y: -100%; }
    100% { background-position-y: 200%; }
}

@keyframes snowDrift {
    0%   { background-position-x: 0px; }
    50%  { background-position-x: -60px; }
    100% { background-position-x: 0px; }
}

#afr-golden-ticket-wrapper {
    position: relative;
    z-index: 10;
}

body.has-golden-ticket {
    background-color: #000000 !important; 
}

*/
