/* VRGoo Header Buttons v2.1 */

/* Wrapper */
.vrgoo-hdr-btns {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 10px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* Upgrade VIP Button - Golden */
.vrgoo-btn-vip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 6px rgba(243, 156, 18, 0.3) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.vrgoo-btn-vip:hover {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.5) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.vrgoo-btn-vip:visited, .vrgoo-btn-vip:active { color: #fff !important; text-decoration: none !important; }
.vrgoo-btn-vip svg { width: 12px !important; height: 12px !important; fill: #fff !important; }

/* VRGoo Assistant Button - Glass */
.vrgoo-btn-app {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.vrgoo-btn-app:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.vrgoo-btn-app:visited, .vrgoo-btn-app:active { color: #fff !important; text-decoration: none !important; }
.vrgoo-btn-app svg { width: 12px !important; height: 12px !important; fill: #fff !important; }

/* User Agreement Button - Glass */
.vrgoo-btn-agree {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border-radius: 14px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.vrgoo-btn-agree:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.vrgoo-btn-agree:visited, .vrgoo-btn-agree:active { color: #fff !important; text-decoration: none !important; }
.vrgoo-btn-agree svg { width: 12px !important; height: 12px !important; fill: #fff !important; }

/* ===== DESKTOP - hide text on smaller screens ===== */
@media (max-width: 1200px) {
    .vrgoo-btn-agree {
        display: none !important;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .vrgoo-hdr-btns {
        gap: 6px !important;
        margin-left: 6px !important;
    }
    .vrgoo-btn-vip {
        padding: 5px 9px !important;
        font-size: 10px !important;
    }
    .vrgoo-btn-app {
        padding: 5px 9px !important;
        font-size: 10px !important;
    }
    .vrgoo-btn-agree {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .vrgoo-btn-app {
        display: none !important;
    }
    .vrgoo-btn-vip {
        padding: 5px 8px !important;
        font-size: 10px !important;
        gap: 3px !important;
    }
    .vrgoo-btn-vip svg {
        width: 10px !important;
        height: 10px !important;
    }
}
