/* Custom Floating Corner Bubble Element styling frameworks */
#s2w-bubble-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    z-index: 999998;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#s2w-bubble-launcher:hover {
    transform: scale(1.06) translateY(-2px);
}

/* Main Display Overlay Rules */
.s2w-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.s2w-inline-container {
    display: block;
    margin: 30px auto;
    max-width: 420px;
}

.s2w-card-body {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.s2w-card-body h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #1e293b;
}

.s2w-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #94a3b8;
}

.s2w-canvas-container {
    position: relative;
    width: 300px;
    height: 150px;
    margin: 0 auto;
    border: 3px dashed #cbd5e1;
    border-radius: 12px;
    overflow: hidden;
}

#s2w-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#s2w-prize-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 15px;
    box-sizing: border-box;
}

.s2w-prize-hidden {
    visibility: hidden;
}

.s2w-prize-wording {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

/* Copy Trigger Utility Element styling rules */
.s2w-coupon-code {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1px;
    background: #f0fdf4;
    color: #166534;
    padding: 8px 18px;
    border: 2px dashed #bbf7d0;
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    user-select: none;
}

.s2w-coupon-code:hover {
    transform: scale(1.03);
    border-color: #4ade80;
}

.s2w-expiry-note {
    font-size: 11px;
    color: #64748b;
}