/* =========================
   GLOBAL
========================= */

.gsc-container {
    font-family: Arial, sans-serif;
}


/* =========================
   BUTTONS
========================= */

.gsc-btn {
    background: #0a58ca;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gsc-btn:hover {
    background: #084298;
}

.gsc-secondary {
    background: #6c757d;
}


/* =========================
   POPUP (BOTTOM RIGHT)
========================= */

#gsc-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    padding: 18px;
    z-index: 9999;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;

    pointer-events: none;
}

#gsc-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* =========================
   TOP HOVER ZONE
========================= */

#gsc-hover-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 9997;
}


/* =========================
   PREMIUM TOP BANNER
========================= */

#gsc-top-banner {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;

    background: linear-gradient(135deg, rgba(10,88,202,0.95), rgba(25,135,84,0.95));
    backdrop-filter: blur(10px);

    color: #fff;
    padding: 15px 20px;
    text-align: center;

    z-index: 9998;

    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);

    pointer-events: none;
    will-change: transform, opacity;
}

#gsc-top-banner.show {
    top: 0;
    pointer-events: auto;
}


/* =========================
   CONTENT STYLE
========================= */

#gsc-top-banner strong {
    font-size: 16px;
}

#gsc-top-banner span {
    font-size: 14px;
    opacity: 0.95;
}


/* =========================
   BUTTON
========================= */

#gsc-top-banner button {
    background: #fff;
    color: #0a58ca;
    border: none;
    padding: 8px 16px;
    margin-left: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#gsc-top-banner button:hover {
    transform: scale(1.05);
}


/* =========================
   CLOSE BUTTON
========================= */

#gsc-top-banner .gsc-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
    opacity: 0.8;
}

#gsc-top-banner .gsc-close:hover {
    opacity: 1;
}


/* =========================
   TOAST
========================= */

#gsc-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0a58ca;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;

    display: none;
    z-index: 10000;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    animation: gsc-fade-in 0.3s ease;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes gsc-fade-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 768px) {

    #gsc-popup {
        width: 90%;
        right: 5%;
        bottom: 15px;
    }

    #gsc-top-banner {
        font-size: 13px;
        padding: 12px;
    }

    #gsc-top-banner button {
        margin-top: 10px;
        display: block;
        width: 100%;
    }
}