/* ✅ Mirror blurry glass container */
#smileone-check-buy-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
}

/* ✅ Input fields with soft glow & glass look */
#smileone-check-buy-wrapper input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border: 1px solid rgba(0, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 8px;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
    transition: 0.2s ease-in-out;
}

/* ✅ Primary button with neon gradient and soft glow */
#ar2-check-btn {
    background: linear-gradient(135deg, #00ffff, #0077ff);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    font-weight: bold;
    transition: 0.2s ease-in-out;
    margin-top: 10px;
}

#ar2-check-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 119, 255, 0.3);
}

/* ✅ IGN result display */
#ar2-ign-result {
    margin-top: 15px;
    font-size: 1rem;
    color: #00f6ff;
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.5);
}

/* ✅ Alternate styled box with blur & soft edge */
.ar2-check-buy-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
    margin-top: 20px;
    text-align: center;
}

/* ✅ Input inside the alt box */
.ar2-check-buy-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
    outline: none;
}

/* ✅ Styled secondary button with modern tone */
.ar2-check-btn {
    background: linear-gradient(to right, #00d2ff, #3a47d5);
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

.ar2-check-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.4);
}
